diff options
author | Sean Dague | 2008-09-03 18:04:37 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-03 18:04:37 +0000 |
commit | 12beaccec79319186ae2a7bf3663510584117a63 (patch) | |
tree | 0dadf7a61269ae5215d1c007a2c8b7749e84e434 /OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-12beaccec79319186ae2a7bf3663510584117a63.zip opensim-SC_OLD-12beaccec79319186ae2a7bf3663510584117a63.tar.gz opensim-SC_OLD-12beaccec79319186ae2a7bf3663510584117a63.tar.bz2 opensim-SC_OLD-12beaccec79319186ae2a7bf3663510584117a63.tar.xz |
Merge branch 'cms' of http://pokgsa.ibm.com/~jbongio/public/opensim
Diffstat (limited to 'OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs b/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs new file mode 100644 index 0000000..e337482 --- /dev/null +++ b/OpenSim/Region/Environment/Modules/ContentManagementSystem/GitDatabase.cs | |||
@@ -0,0 +1,130 @@ | |||
1 | // GitDatabase.cs | ||
2 | // | ||
3 | // | ||
4 | // | ||
5 | |||
6 | using System; | ||
7 | using System.Collections.Generic; | ||
8 | using System.IO; | ||
9 | using System.Reflection; | ||
10 | using System.Xml; | ||
11 | using libsecondlife; | ||
12 | using Nini.Config; | ||
13 | using OpenSim.Framework; | ||
14 | using OpenSim.Region.Environment.Interfaces; | ||
15 | using OpenSim.Region.Environment.Modules.World.Serialiser; | ||
16 | using OpenSim.Region.Environment.Modules.World.Terrain; | ||
17 | using OpenSim.Region.Environment.Scenes; | ||
18 | using log4net; | ||
19 | using OpenSim.Region.Physics.Manager; | ||
20 | using Axiom.Math; | ||
21 | using Slash=System.IO.Path; | ||
22 | |||
23 | namespace OpenSim.Region.Environment.Modules.ContentManagement | ||
24 | { | ||
25 | |||
26 | /// <summary> | ||
27 | /// Just a stub :-( | ||
28 | /// </summary> | ||
29 | public class GitDatabase : IContentDatabase | ||
30 | { | ||
31 | |||
32 | public GitDatabase() | ||
33 | { | ||
34 | } | ||
35 | |||
36 | public void Initialise(Scene scene, String dir) | ||
37 | { | ||
38 | |||
39 | } | ||
40 | |||
41 | public void PostInitialise() | ||
42 | { | ||
43 | |||
44 | } | ||
45 | |||
46 | public int NumOfObjectRev(LLUUID id) | ||
47 | { | ||
48 | return 0; | ||
49 | } | ||
50 | |||
51 | public int NumOfRegionRev(LLUUID regionid) | ||
52 | { | ||
53 | return 0; | ||
54 | } | ||
55 | |||
56 | public bool InRepository(LLUUID id) | ||
57 | { | ||
58 | return false; | ||
59 | } | ||
60 | |||
61 | public void SaveRegion(LLUUID regionid, string regionName, string logMessage) | ||
62 | { | ||
63 | |||
64 | } | ||
65 | |||
66 | public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid) | ||
67 | { | ||
68 | return null; | ||
69 | } | ||
70 | |||
71 | public System.Collections.ArrayList GetRegionObjectXMLList(LLUUID regionid, int revision) | ||
72 | { | ||
73 | return null; | ||
74 | } | ||
75 | |||
76 | public string GetRegionObjectXML(LLUUID regionid) | ||
77 | { | ||
78 | return null; | ||
79 | } | ||
80 | |||
81 | public string GetRegionObjectXML(LLUUID regionid, int revision) | ||
82 | { | ||
83 | return null; | ||
84 | } | ||
85 | |||
86 | public string GetRegionObjectHeightMap(LLUUID regionid) | ||
87 | { | ||
88 | return null; | ||
89 | } | ||
90 | |||
91 | public string GetRegionObjectHeightMap(LLUUID regionid, int revision) | ||
92 | { | ||
93 | return null; | ||
94 | } | ||
95 | |||
96 | public System.Collections.ArrayList GetObjectsFromRegion(LLUUID regionid, int revision) | ||
97 | { | ||
98 | return null; | ||
99 | } | ||
100 | |||
101 | public System.Collections.Generic.SortedDictionary<string, string> ListOfRegionRevisions(LLUUID id) | ||
102 | { | ||
103 | return null; | ||
104 | } | ||
105 | |||
106 | public void SaveObject(SceneObjectGroup entity) | ||
107 | { | ||
108 | } | ||
109 | |||
110 | public SceneObjectGroup GetMostRecentObjectRevision(LLUUID id) | ||
111 | { | ||
112 | return null; | ||
113 | } | ||
114 | |||
115 | public SceneObjectGroup GetObjectRevision(LLUUID id, int revision) | ||
116 | { | ||
117 | return null; | ||
118 | } | ||
119 | |||
120 | public System.Collections.Generic.SortedDictionary<string, string> ListOfObjectRevisions(LLUUID id) | ||
121 | { | ||
122 | return null; | ||
123 | } | ||
124 | |||
125 | public int GetMostRecentRevision(LLUUID regionid) | ||
126 | { | ||
127 | return 0; | ||
128 | } | ||
129 | } | ||
130 | } | ||