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. --- .../ContentManagementSystem/IContentDatabase.cs | 23 ++++++++++------------ 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'OpenSim/Region/Environment/Modules/ContentManagementSystem/IContentDatabase.cs') diff --git a/OpenSim/Region/Environment/Modules/ContentManagementSystem/IContentDatabase.cs b/OpenSim/Region/Environment/Modules/ContentManagementSystem/IContentDatabase.cs index 6a940d3..638172b 100644 --- a/OpenSim/Region/Environment/Modules/ContentManagementSystem/IContentDatabase.cs +++ b/OpenSim/Region/Environment/Modules/ContentManagementSystem/IContentDatabase.cs @@ -36,11 +36,8 @@ #endregion Header using System; - -using libsecondlife; - +using OpenMetaverse; using OpenSim.Region.Environment.Scenes; - using Nini.Config; namespace OpenSim.Region.Environment.Modules.ContentManagement @@ -52,18 +49,18 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement /// /// Returns the most recent revision number of a region. /// - int GetMostRecentRevision(LLUUID regionid); + int GetMostRecentRevision(UUID regionid); - string GetRegionObjectHeightMap(LLUUID regionid); + string GetRegionObjectHeightMap(UUID regionid); - string GetRegionObjectHeightMap(LLUUID regionid, int revision); + string GetRegionObjectHeightMap(UUID regionid, int revision); /// /// Retrieves the xml that describes each individual object from the last revision or specific revision of the given region. /// - System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid); + System.Collections.ArrayList GetRegionObjectXMLList(UUID regionid); - System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid, int revision); + System.Collections.ArrayList GetRegionObjectXMLList(UUID regionid, int revision); /// /// Similar to the IRegionModule function. This is the function to be called before attempting to interface with the database. @@ -75,12 +72,12 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement /// /// Returns a list of the revision numbers and corresponding log messages for a given region. /// - System.Collections.Generic.SortedDictionary ListOfRegionRevisions(LLUUID id); + System.Collections.Generic.SortedDictionary ListOfRegionRevisions(UUID id); /// /// Returns the total number of revisions saved for a specific region. /// - int NumOfRegionRev(LLUUID regionid); + int NumOfRegionRev(UUID regionid); /// /// Should be called once after Initialise has been called. @@ -90,8 +87,8 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement /// /// Saves the Region terrain map and objects within the region as xml to the database. /// - void SaveRegion(LLUUID regionid, string regionName, string logMessage); + void SaveRegion(UUID regionid, string regionName, string logMessage); #endregion Methods } -} \ No newline at end of file +} -- cgit v1.1