aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSean Dague2008-04-03 21:07:03 +0000
committerSean Dague2008-04-03 21:07:03 +0000
commit5e32d86b87478eb90a6fe4d4d9f701f4d102116a (patch)
tree1db49a1c4e537bcc7d097e2b775a8222bc484a6d
parentremove the old MonoSqlite directory once and for all (diff)
downloadopensim-SC_OLD-5e32d86b87478eb90a6fe4d4d9f701f4d102116a.zip
opensim-SC_OLD-5e32d86b87478eb90a6fe4d4d9f701f4d102116a.tar.gz
opensim-SC_OLD-5e32d86b87478eb90a6fe4d4d9f701f4d102116a.tar.bz2
opensim-SC_OLD-5e32d86b87478eb90a6fe4d4d9f701f4d102116a.tar.xz
move NullStorage => OpenSim.Data.Null to be consistant with
where other data storage assemblies are.
-rw-r--r--OpenSim/Data/Null/NullDataStore.cs (renamed from OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs)2
-rw-r--r--OpenSim/Data/Null/Properties/AssemblyInfo.cs (renamed from OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/Properties/AssemblyInfo.cs)4
-rw-r--r--bin/OpenSim.ini.example2
-rw-r--r--prebuild.xml8
4 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs b/OpenSim/Data/Null/NullDataStore.cs
index ac451d0..096171c 100644
--- a/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs
+++ b/OpenSim/Data/Null/NullDataStore.cs
@@ -31,7 +31,7 @@ using OpenSim.Framework;
31using OpenSim.Region.Environment.Interfaces; 31using OpenSim.Region.Environment.Interfaces;
32using OpenSim.Region.Environment.Scenes; 32using OpenSim.Region.Environment.Scenes;
33 33
34namespace OpenSim.DataStore.NullStorage 34namespace OpenSim.Data.Null
35{ 35{
36 public class NullDataStore : IRegionDataStore 36 public class NullDataStore : IRegionDataStore
37 { 37 {
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/Properties/AssemblyInfo.cs b/OpenSim/Data/Null/Properties/AssemblyInfo.cs
index 0744f8b..5db915c 100644
--- a/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/Properties/AssemblyInfo.cs
+++ b/OpenSim/Data/Null/Properties/AssemblyInfo.cs
@@ -32,11 +32,11 @@ using System.Runtime.InteropServices;
32// set of attributes. Change these attribute values to modify the information 32// set of attributes. Change these attribute values to modify the information
33// associated with an assembly. 33// associated with an assembly.
34 34
35[assembly : AssemblyTitle("OpenSim.DataStore.NullStorage")] 35[assembly : AssemblyTitle("OpenSim.Data.Null")]
36[assembly : AssemblyDescription("")] 36[assembly : AssemblyDescription("")]
37[assembly : AssemblyConfiguration("")] 37[assembly : AssemblyConfiguration("")]
38[assembly : AssemblyCompany("")] 38[assembly : AssemblyCompany("")]
39[assembly : AssemblyProduct("OpenSim.DataStore.NullStorage")] 39[assembly : AssemblyProduct("OpenSim.Data.Null")]
40[assembly : AssemblyCopyright("Copyright (c) OpenSimulator.org Developers 2007-2008")] 40[assembly : AssemblyCopyright("Copyright (c) OpenSimulator.org Developers 2007-2008")]
41[assembly : AssemblyTrademark("")] 41[assembly : AssemblyTrademark("")]
42[assembly : AssemblyCulture("")] 42[assembly : AssemblyCulture("")]
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index bf8a48f..9a49359 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -7,7 +7,7 @@ gridmode = false
7 7
8; *** Prim Storage - only leave one storage_plugin uncommented *** 8; *** Prim Storage - only leave one storage_plugin uncommented ***
9; --- The NullStorage stores nothing - effectively disabling persistence: 9; --- The NullStorage stores nothing - effectively disabling persistence:
10storage_plugin = "OpenSim.DataStore.NullStorage.dll" 10storage_plugin = "OpenSim.Data.Null.dll"
11 11
12; --- To use sqlite as region storage: 12; --- To use sqlite as region storage:
13;storage_plugin = "OpenSim.Data.SQLite.dll" 13;storage_plugin = "OpenSim.Data.SQLite.dll"
diff --git a/prebuild.xml b/prebuild.xml
index 479a271..40ad5a7 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -852,19 +852,19 @@
852 </Project> 852 </Project>
853 853
854 <!-- Datastore Plugins --> 854 <!-- Datastore Plugins -->
855 <Project name="OpenSim.DataStore.NullStorage" path="OpenSim/Region/Storage/OpenSim.DataStore.NullStorage" type="Library"> 855 <Project name="OpenSim.Data.Null" path="OpenSim/Data/Null" type="Library">
856 <Configuration name="Debug"> 856 <Configuration name="Debug">
857 <Options> 857 <Options>
858 <OutputPath>../../../../bin/</OutputPath> 858 <OutputPath>../../../bin/</OutputPath>
859 </Options> 859 </Options>
860 </Configuration> 860 </Configuration>
861 <Configuration name="Release"> 861 <Configuration name="Release">
862 <Options> 862 <Options>
863 <OutputPath>../../../../bin/</OutputPath> 863 <OutputPath>../../../bin/</OutputPath>
864 </Options> 864 </Options>
865 </Configuration> 865 </Configuration>
866 866
867 <ReferencePath>../../../../bin/</ReferencePath> 867 <ReferencePath>../../../bin/</ReferencePath>
868 <Reference name="System" localCopy="false"/> 868 <Reference name="System" localCopy="false"/>
869 <Reference name="System.Xml"/> 869 <Reference name="System.Xml"/>
870 <Reference name="libsecondlife.dll"/> 870 <Reference name="libsecondlife.dll"/>