mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
narrange to do basic cleanup of the CMS module
This commit is contained in:
@@ -1,130 +1,142 @@
|
||||
#region Header
|
||||
|
||||
// GitDatabase.cs
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
#endregion Header
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Slash = System.IO.Path;
|
||||
using System.Reflection;
|
||||
using System.Xml;
|
||||
|
||||
using libsecondlife;
|
||||
|
||||
using Nini.Config;
|
||||
|
||||
using OpenSim.Framework;
|
||||
using OpenSim.Region.Environment.Interfaces;
|
||||
using OpenSim.Region.Environment.Modules.World.Serialiser;
|
||||
using OpenSim.Region.Environment.Modules.World.Terrain;
|
||||
using OpenSim.Region.Environment.Scenes;
|
||||
using log4net;
|
||||
using OpenSim.Region.Physics.Manager;
|
||||
|
||||
using log4net;
|
||||
|
||||
using Axiom.Math;
|
||||
using Slash=System.IO.Path;
|
||||
|
||||
namespace OpenSim.Region.Environment.Modules.ContentManagement
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Just a stub :-(
|
||||
/// </summary>
|
||||
public class GitDatabase : IContentDatabase
|
||||
{
|
||||
|
||||
public GitDatabase()
|
||||
{
|
||||
}
|
||||
/// <summary>
|
||||
/// Just a stub :-(
|
||||
/// </summary>
|
||||
public class GitDatabase : IContentDatabase
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
public void Initialise(Scene scene, String dir)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void PostInitialise()
|
||||
{
|
||||
|
||||
}
|
||||
public GitDatabase()
|
||||
{
|
||||
}
|
||||
|
||||
public int NumOfObjectRev(LLUUID id)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endregion Constructors
|
||||
|
||||
public int NumOfRegionRev(LLUUID regionid)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#region Public Methods
|
||||
|
||||
public bool InRepository(LLUUID id)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
public SceneObjectGroup GetMostRecentObjectRevision(LLUUID id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public void SaveRegion(LLUUID regionid, string regionName, string logMessage)
|
||||
{
|
||||
|
||||
}
|
||||
public int GetMostRecentRevision(LLUUID regionid)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
public SceneObjectGroup GetObjectRevision(LLUUID id, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetRegionObjectXML(LLUUID regionid)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetRegionObjectXML(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetRegionObjectHeightMap(LLUUID regionid)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetRegionObjectHeightMap(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.ArrayList GetObjectsFromRegion(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.Generic.SortedDictionary<string, string> ListOfRegionRevisions(LLUUID id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
public System.Collections.ArrayList GetObjectsFromRegion(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public void SaveObject(SceneObjectGroup entity)
|
||||
{
|
||||
}
|
||||
|
||||
public SceneObjectGroup GetMostRecentObjectRevision(LLUUID id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public SceneObjectGroup GetObjectRevision(LLUUID id, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.Generic.SortedDictionary<string, string> ListOfObjectRevisions(LLUUID id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public int GetMostRecentRevision(LLUUID regionid)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
public string GetRegionObjectHeightMap(LLUUID regionid)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetRegionObjectHeightMap(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetRegionObjectXML(LLUUID regionid)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetRegionObjectXML(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid, int revision)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public bool InRepository(LLUUID id)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public void Initialise(Scene scene, String dir)
|
||||
{
|
||||
}
|
||||
|
||||
public System.Collections.Generic.SortedDictionary<string, string> ListOfObjectRevisions(LLUUID id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public System.Collections.Generic.SortedDictionary<string, string> ListOfRegionRevisions(LLUUID id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public int NumOfObjectRev(LLUUID id)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public int NumOfRegionRev(LLUUID regionid)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public void PostInitialise()
|
||||
{
|
||||
}
|
||||
|
||||
public void SaveObject(SceneObjectGroup entity)
|
||||
{
|
||||
}
|
||||
|
||||
public void SaveRegion(LLUUID regionid, string regionName, string logMessage)
|
||||
{
|
||||
}
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user