diff options
author | Diva Canto | 2011-04-30 13:24:25 -0700 |
---|---|---|
committer | Diva Canto | 2011-04-30 13:24:25 -0700 |
commit | e3c27d852720ad8b743952ab4aac3b2648468a11 (patch) | |
tree | 451ee0a3a17423089dc3b5346ca17121ea38e656 | |
parent | Moved several cap-based-service-providing modules from where they were into a... (diff) | |
download | opensim-SC-e3c27d852720ad8b743952ab4aac3b2648468a11.zip opensim-SC-e3c27d852720ad8b743952ab4aac3b2648468a11.tar.gz opensim-SC-e3c27d852720ad8b743952ab4aac3b2648468a11.tar.bz2 opensim-SC-e3c27d852720ad8b743952ab4aac3b2648468a11.tar.xz |
Nope, that didn't feel right. Moving all those modules to Linden space.
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/CapabilitiesModule.cs (renamed from OpenSim/Region/CoreModules/Caps/CapabilitiesModule.cs) | 4 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs (renamed from OpenSim/Region/CoreModules/Caps/GetMeshModule.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs (renamed from OpenSim/Region/CoreModules/Caps/GetTextureModule.cs) | 4 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/NewFileAgentInventoryVariablePriceModule.cs (renamed from OpenSim/Region/CoreModules/Caps/NewFileAgentInventoryVariablePriceModule.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/ObjectAdd.cs (renamed from OpenSim/Region/CoreModules/Caps/ObjectCaps/ObjectAdd.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/UploadObjectAssetModule.cs (renamed from OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs) | 2 | ||||
-rw-r--r-- | prebuild.xml | 4 |
8 files changed, 15 insertions, 7 deletions
diff --git a/OpenSim/Region/CoreModules/Caps/CapabilitiesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/CapabilitiesModule.cs index ab388b9..b136555 100644 --- a/OpenSim/Region/CoreModules/Caps/CapabilitiesModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/CapabilitiesModule.cs | |||
@@ -31,6 +31,7 @@ using System.Collections.Generic; | |||
31 | using System.Reflection; | 31 | using System.Reflection; |
32 | using log4net; | 32 | using log4net; |
33 | using Nini.Config; | 33 | using Nini.Config; |
34 | using Mono.Addins; | ||
34 | using OpenMetaverse; | 35 | using OpenMetaverse; |
35 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
36 | using OpenSim.Framework.Console; | 37 | using OpenSim.Framework.Console; |
@@ -38,8 +39,9 @@ using OpenSim.Region.Framework.Interfaces; | |||
38 | using OpenSim.Region.Framework.Scenes; | 39 | using OpenSim.Region.Framework.Scenes; |
39 | using Caps=OpenSim.Framework.Capabilities.Caps; | 40 | using Caps=OpenSim.Framework.Capabilities.Caps; |
40 | 41 | ||
41 | namespace OpenSim.Region.CoreModules.Capabilities | 42 | namespace OpenSim.Region.ClientStack.Linden |
42 | { | 43 | { |
44 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | ||
43 | public class CapabilitiesModule : INonSharedRegionModule, ICapabilitiesModule | 45 | public class CapabilitiesModule : INonSharedRegionModule, ICapabilitiesModule |
44 | { | 46 | { |
45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 47 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs index fe97bf2..4827baa 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs | |||
@@ -33,6 +33,7 @@ using System.Reflection; | |||
33 | using System.Threading; | 33 | using System.Threading; |
34 | using log4net; | 34 | using log4net; |
35 | using Nini.Config; | 35 | using Nini.Config; |
36 | using Mono.Addins; | ||
36 | using OpenMetaverse; | 37 | using OpenMetaverse; |
37 | using OpenMetaverse.Messages.Linden; | 38 | using OpenMetaverse.Messages.Linden; |
38 | using OpenMetaverse.Packets; | 39 | using OpenMetaverse.Packets; |
@@ -53,6 +54,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
53 | public OSDMap body; | 54 | public OSDMap body; |
54 | } | 55 | } |
55 | 56 | ||
57 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | ||
56 | public class EventQueueGetModule : IEventQueue, IRegionModule | 58 | public class EventQueueGetModule : IEventQueue, IRegionModule |
57 | { | 59 | { |
58 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 60 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
diff --git a/OpenSim/Region/CoreModules/Caps/GetMeshModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs index 46b2378..1d57143 100644 --- a/OpenSim/Region/CoreModules/Caps/GetMeshModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs | |||
@@ -44,7 +44,7 @@ using OpenSim.Region.Framework.Scenes; | |||
44 | using OpenSim.Services.Interfaces; | 44 | using OpenSim.Services.Interfaces; |
45 | using Caps = OpenSim.Framework.Capabilities.Caps; | 45 | using Caps = OpenSim.Framework.Capabilities.Caps; |
46 | 46 | ||
47 | namespace OpenSim.Region.CoreModules.Capabilities | 47 | namespace OpenSim.Region.ClientStack.Linden |
48 | { | 48 | { |
49 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | 49 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] |
50 | public class GetMeshModule : INonSharedRegionModule | 50 | public class GetMeshModule : INonSharedRegionModule |
diff --git a/OpenSim/Region/CoreModules/Caps/GetTextureModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs index 34095a2..58dbc14 100644 --- a/OpenSim/Region/CoreModules/Caps/GetTextureModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs | |||
@@ -35,6 +35,7 @@ using System.IO; | |||
35 | using System.Web; | 35 | using System.Web; |
36 | using log4net; | 36 | using log4net; |
37 | using Nini.Config; | 37 | using Nini.Config; |
38 | using Mono.Addins; | ||
38 | using OpenMetaverse; | 39 | using OpenMetaverse; |
39 | using OpenMetaverse.StructuredData; | 40 | using OpenMetaverse.StructuredData; |
40 | using OpenMetaverse.Imaging; | 41 | using OpenMetaverse.Imaging; |
@@ -46,7 +47,7 @@ using OpenSim.Region.Framework.Scenes; | |||
46 | using OpenSim.Services.Interfaces; | 47 | using OpenSim.Services.Interfaces; |
47 | using Caps = OpenSim.Framework.Capabilities.Caps; | 48 | using Caps = OpenSim.Framework.Capabilities.Caps; |
48 | 49 | ||
49 | namespace OpenSim.Region.CoreModules.Capabilities | 50 | namespace OpenSim.Region.ClientStack.Linden |
50 | { | 51 | { |
51 | #region Stream Handler | 52 | #region Stream Handler |
52 | 53 | ||
@@ -70,6 +71,7 @@ namespace OpenSim.Region.CoreModules.Capabilities | |||
70 | 71 | ||
71 | #endregion Stream Handler | 72 | #endregion Stream Handler |
72 | 73 | ||
74 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | ||
73 | public class GetTextureModule : IRegionModule | 75 | public class GetTextureModule : IRegionModule |
74 | { | 76 | { |
75 | private static readonly ILog m_log = | 77 | private static readonly ILog m_log = |
diff --git a/OpenSim/Region/CoreModules/Caps/NewFileAgentInventoryVariablePriceModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/NewFileAgentInventoryVariablePriceModule.cs index 3ebaf1f..eddc288 100644 --- a/OpenSim/Region/CoreModules/Caps/NewFileAgentInventoryVariablePriceModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/NewFileAgentInventoryVariablePriceModule.cs | |||
@@ -45,7 +45,7 @@ using OpenSim.Services.Interfaces; | |||
45 | using Caps = OpenSim.Framework.Capabilities.Caps; | 45 | using Caps = OpenSim.Framework.Capabilities.Caps; |
46 | using OpenSim.Framework.Capabilities; | 46 | using OpenSim.Framework.Capabilities; |
47 | 47 | ||
48 | namespace OpenSim.Region.CoreModules.Capabilities | 48 | namespace OpenSim.Region.ClientStack.Linden |
49 | { | 49 | { |
50 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | 50 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] |
51 | public class NewFileAgentInventoryVariablePriceModule : INonSharedRegionModule | 51 | public class NewFileAgentInventoryVariablePriceModule : INonSharedRegionModule |
diff --git a/OpenSim/Region/CoreModules/Caps/ObjectCaps/ObjectAdd.cs b/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/ObjectAdd.cs index 5cd0fe7..15139a3 100644 --- a/OpenSim/Region/CoreModules/Caps/ObjectCaps/ObjectAdd.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/ObjectAdd.cs | |||
@@ -39,7 +39,7 @@ using OpenSim.Region.Framework.Interfaces; | |||
39 | using OpenSim.Region.Framework.Scenes; | 39 | using OpenSim.Region.Framework.Scenes; |
40 | using Caps=OpenSim.Framework.Capabilities.Caps; | 40 | using Caps=OpenSim.Framework.Capabilities.Caps; |
41 | 41 | ||
42 | namespace OpenSim.Region.CoreModules.Capabilities | 42 | namespace OpenSim.Region.ClientStack.Linden |
43 | { | 43 | { |
44 | public class ObjectAdd : IRegionModule | 44 | public class ObjectAdd : IRegionModule |
45 | { | 45 | { |
diff --git a/OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/UploadObjectAssetModule.cs index 33bffeb..3809f84 100644 --- a/OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/UploadObjectAssetModule.cs | |||
@@ -49,7 +49,7 @@ using OSDMap = OpenMetaverse.StructuredData.OSDMap; | |||
49 | using OpenSim.Framework.Capabilities; | 49 | using OpenSim.Framework.Capabilities; |
50 | using ExtraParamType = OpenMetaverse.ExtraParamType; | 50 | using ExtraParamType = OpenMetaverse.ExtraParamType; |
51 | 51 | ||
52 | namespace OpenSim.Region.CoreModules.Capabilities | 52 | namespace OpenSim.Region.ClientStack.Linden |
53 | { | 53 | { |
54 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | 54 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] |
55 | public class UploadObjectAssetModule : INonSharedRegionModule | 55 | public class UploadObjectAssetModule : INonSharedRegionModule |
diff --git a/prebuild.xml b/prebuild.xml index 90ee1eb..6a0b07a 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1524,7 +1524,9 @@ | |||
1524 | <ReferencePath>../../../../bin/</ReferencePath> | 1524 | <ReferencePath>../../../../bin/</ReferencePath> |
1525 | <Reference name="System"/> | 1525 | <Reference name="System"/> |
1526 | <Reference name="System.Core"/> | 1526 | <Reference name="System.Core"/> |
1527 | <Reference name="System.Drawing"/> | ||
1527 | <Reference name="System.Xml"/> | 1528 | <Reference name="System.Xml"/> |
1529 | <Reference name="System.Web"/> | ||
1528 | <Reference name="OpenMetaverseTypes" path="../../../../bin/"/> | 1530 | <Reference name="OpenMetaverseTypes" path="../../../../bin/"/> |
1529 | <Reference name="OpenMetaverse.StructuredData" path="../../../../bin/"/> | 1531 | <Reference name="OpenMetaverse.StructuredData" path="../../../../bin/"/> |
1530 | <Reference name="OpenMetaverse" path="../../../../bin/"/> | 1532 | <Reference name="OpenMetaverse" path="../../../../bin/"/> |
@@ -1540,7 +1542,7 @@ | |||
1540 | <Reference name="OpenSim.Region.ClientStack"/> | 1542 | <Reference name="OpenSim.Region.ClientStack"/> |
1541 | <Reference name="OpenSim.Region.Physics.Manager"/> | 1543 | <Reference name="OpenSim.Region.Physics.Manager"/> |
1542 | <Reference name="OpenSim.Services.Interfaces"/> | 1544 | <Reference name="OpenSim.Services.Interfaces"/> |
1543 | <Reference name="XMLRPC" path="../../../../bin/"/> | 1545 | <Reference name="Mono.Addins" path="../../../bin/"/> |
1544 | <Reference name="Nini" path="../../../../bin/"/> | 1546 | <Reference name="Nini" path="../../../../bin/"/> |
1545 | <Reference name="log4net" path="../../../../bin/"/> | 1547 | <Reference name="log4net" path="../../../../bin/"/> |
1546 | <Reference name="C5" path="../../../../bin/"/> | 1548 | <Reference name="C5" path="../../../../bin/"/> |