mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* 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.
This commit is contained in:
@@ -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
|
||||
{
|
||||
/// <summary>
|
||||
@@ -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<string, string> ListOfObjectRevisions(LLUUID id)
|
||||
public System.Collections.Generic.SortedDictionary<string, string> ListOfObjectRevisions(UUID id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.Generic.SortedDictionary<string, string> ListOfRegionRevisions(LLUUID id)
|
||||
public System.Collections.Generic.SortedDictionary<string, string> 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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user