diff options
author | Dr Scofield | 2008-05-29 13:55:01 +0000 |
---|---|---|
committer | Dr Scofield | 2008-05-29 13:55:01 +0000 |
commit | c2925dcd404312b1751a03045ddcd35a7c84cd58 (patch) | |
tree | d5d5adbb4b0cb83a4c2559a2cb548209b0c72d7e /OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs | |
parent | Mantis#852. Thank you kindly, cmickeyb for a patch that: (diff) | |
download | opensim-SC_OLD-c2925dcd404312b1751a03045ddcd35a7c84cd58.zip opensim-SC_OLD-c2925dcd404312b1751a03045ddcd35a7c84cd58.tar.gz opensim-SC_OLD-c2925dcd404312b1751a03045ddcd35a7c84cd58.tar.bz2 opensim-SC_OLD-c2925dcd404312b1751a03045ddcd35a7c84cd58.tar.xz |
cleaning up returned XML REST doclet (no more xsi, xsd)
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs b/OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs index 24bed99..fa5f117 100644 --- a/OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs +++ b/OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs | |||
@@ -56,6 +56,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Regions | |||
56 | [Extension("/OpenSim/Startup")] | 56 | [Extension("/OpenSim/Startup")] |
57 | public partial class RestRegionPlugin : RestPlugin | 57 | public partial class RestRegionPlugin : RestPlugin |
58 | { | 58 | { |
59 | private static XmlSerializerNamespaces _xmlNs; | ||
60 | |||
59 | #region overriding properties | 61 | #region overriding properties |
60 | public override string Name | 62 | public override string Name |
61 | { | 63 | { |
@@ -88,6 +90,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Regions | |||
88 | return; | 90 | return; |
89 | } | 91 | } |
90 | m_log.InfoFormat("{0} REST region plugin enabled", MsgID); | 92 | m_log.InfoFormat("{0} REST region plugin enabled", MsgID); |
93 | |||
94 | _xmlNs = new XmlSerializerNamespaces(); | ||
95 | _xmlNs.Add(String.Empty, String.Empty); | ||
91 | 96 | ||
92 | // add REST method handlers | 97 | // add REST method handlers |
93 | AddRestStreamHandler("GET", "/regions/", GetHandler); | 98 | AddRestStreamHandler("GET", "/regions/", GetHandler); |