From 7d89e122930be39e84a6d174548fa2d12ac0484a Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 6 Sep 2008 07:52:41 +0000 Subject: * This is the fabled LibOMV update with all of the libOMV types from JHurliman * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke. --- .../Modules/ContentManagementSystem/GitDatabase.cs | 38 ++++++++++------------ 1 file changed, 18 insertions(+), 20 deletions(-) (limited to 'OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs') diff --git a/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs b/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs index 6417a0f..9fd542c 100644 --- a/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs +++ b/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs @@ -41,7 +41,7 @@ using Slash = System.IO.Path; using System.Reflection; using System.Xml; -using libsecondlife; +using OpenMetaverse; using Nini.Config; @@ -54,8 +54,6 @@ using OpenSim.Region.Physics.Manager; using log4net; -using Axiom.Math; - namespace OpenSim.Region.Environment.Modules.ContentManagement { /// @@ -73,57 +71,57 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement #region Public Methods - public SceneObjectGroup GetMostRecentObjectRevision(LLUUID id) + public SceneObjectGroup GetMostRecentObjectRevision(UUID id) { return null; } - public int GetMostRecentRevision(LLUUID regionid) + public int GetMostRecentRevision(UUID regionid) { return 0; } - public SceneObjectGroup GetObjectRevision(LLUUID id, int revision) + public SceneObjectGroup GetObjectRevision(UUID id, int revision) { return null; } - public System.Collections.ArrayList GetObjectsFromRegion(LLUUID regionid, int revision) + public System.Collections.ArrayList GetObjectsFromRegion(UUID regionid, int revision) { return null; } - public string GetRegionObjectHeightMap(LLUUID regionid) + public string GetRegionObjectHeightMap(UUID regionid) { return null; } - public string GetRegionObjectHeightMap(LLUUID regionid, int revision) + public string GetRegionObjectHeightMap(UUID regionid, int revision) { return null; } - public string GetRegionObjectXML(LLUUID regionid) + public string GetRegionObjectXML(UUID regionid) { return null; } - public string GetRegionObjectXML(LLUUID regionid, int revision) + public string GetRegionObjectXML(UUID regionid, int revision) { return null; } - public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid) + public System.Collections.ArrayList GetRegionObjectXMLList(UUID regionid) { return null; } - public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid, int revision) + public System.Collections.ArrayList GetRegionObjectXMLList(UUID regionid, int revision) { return null; } - public bool InRepository(LLUUID id) + public bool InRepository(UUID id) { return false; } @@ -132,22 +130,22 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement { } - public System.Collections.Generic.SortedDictionary ListOfObjectRevisions(LLUUID id) + public System.Collections.Generic.SortedDictionary ListOfObjectRevisions(UUID id) { return null; } - public System.Collections.Generic.SortedDictionary ListOfRegionRevisions(LLUUID id) + public System.Collections.Generic.SortedDictionary ListOfRegionRevisions(UUID id) { return null; } - public int NumOfObjectRev(LLUUID id) + public int NumOfObjectRev(UUID id) { return 0; } - public int NumOfRegionRev(LLUUID regionid) + public int NumOfRegionRev(UUID regionid) { return 0; } @@ -160,10 +158,10 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement { } - public void SaveRegion(LLUUID regionid, string regionName, string logMessage) + public void SaveRegion(UUID regionid, string regionName, string logMessage) { } #endregion Public Methods } -} \ No newline at end of file +} -- cgit v1.1