From af5c7e52b1163cf65f897e5c7ecf9ef2d9f6e88e Mon Sep 17 00:00:00 2001
From: Sean Dague
Date: Wed, 3 Sep 2008 18:11:44 +0000
Subject: narrange to do basic cleanup of the CMS module
---
.../Modules/ContentManagementSystem/GitDatabase.cs | 228 +++++++++++----------
1 file changed, 120 insertions(+), 108 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 e337482..5e85b2e 100644
--- a/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs
+++ b/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs
@@ -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
{
-
- ///
- /// Just a stub :-(
- ///
- public class GitDatabase : IContentDatabase
- {
-
- public GitDatabase()
- {
- }
-
- public void Initialise(Scene scene, String dir)
- {
-
- }
-
- public void PostInitialise()
- {
-
- }
-
- public int NumOfObjectRev(LLUUID id)
- {
- return 0;
- }
-
- public int NumOfRegionRev(LLUUID regionid)
- {
- return 0;
- }
-
- public bool InRepository(LLUUID id)
- {
- return false;
- }
-
- public void SaveRegion(LLUUID regionid, string regionName, string logMessage)
- {
-
- }
-
- public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid)
- {
- 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 ListOfRegionRevisions(LLUUID id)
- {
- 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 ListOfObjectRevisions(LLUUID id)
- {
- return null;
- }
-
- public int GetMostRecentRevision(LLUUID regionid)
- {
- return 0;
- }
- }
-}
+ ///
+ /// Just a stub :-(
+ ///
+ public class GitDatabase : IContentDatabase
+ {
+ #region Constructors
+
+ public GitDatabase()
+ {
+ }
+
+ #endregion Constructors
+
+ #region Public Methods
+
+ public SceneObjectGroup GetMostRecentObjectRevision(LLUUID id)
+ {
+ return null;
+ }
+
+ public int GetMostRecentRevision(LLUUID regionid)
+ {
+ return 0;
+ }
+
+ public SceneObjectGroup GetObjectRevision(LLUUID id, int revision)
+ {
+ return null;
+ }
+
+ public System.Collections.ArrayList GetObjectsFromRegion(LLUUID regionid, int revision)
+ {
+ return null;
+ }
+
+ 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 ListOfObjectRevisions(LLUUID id)
+ {
+ return null;
+ }
+
+ public System.Collections.Generic.SortedDictionary 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
+ }
+}
\ No newline at end of file
--
cgit v1.1