From 4f174fbf57160acc05911e9e3b342e8da9eb3644 Mon Sep 17 00:00:00 2001
From: Jeff Ames
Date: Thu, 3 Apr 2008 18:25:01 +0000
Subject: Update svn properties.
---
.../Communications/Capabilities/CapsHandlers.cs | 288 ++++++++++-----------
.../Communications/Limit/TimeLimitStrategy.cs | 0
2 files changed, 144 insertions(+), 144 deletions(-)
mode change 100755 => 100644 OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs
mode change 100755 => 100644 OpenSim/Framework/Communications/Limit/TimeLimitStrategy.cs
(limited to 'OpenSim/Framework')
diff --git a/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs b/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs
old mode 100755
new mode 100644
index a3d6b71..3518e20
--- a/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs
+++ b/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs
@@ -1,144 +1,144 @@
-/*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSim Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using System.IO;
-using libsecondlife;
-using OpenSim.Framework;
-using OpenSim.Framework.Communications.Cache;
-using OpenSim.Framework.Console;
-using OpenSim.Framework.Servers;
-
-namespace OpenSim.Region.Capabilities
-{
- ///
- /// CapsHandlers is a cap handler container but also takes
- /// care of adding and removing cap handlers to and from the
- /// supplied BaseHttpServer.
- ///
- public class CapsHandlers
- {
- private Dictionary m_capsHandlers = new Dictionary();
- private BaseHttpServer m_httpListener;
- private string m_httpListenerHostName;
- private uint m_httpListenerPort;
-
- ///
- /// base HTTP server
- /// host name of the HTTP
- /// server
- /// HTTP port
- public CapsHandlers(BaseHttpServer httpListener, string httpListenerHostname, uint httpListenerPort)
- {
- m_httpListener = httpListener;
- m_httpListenerHostName = httpListenerHostname;
- m_httpListenerPort = httpListenerPort;
- }
-
- ///
- /// Remove the cap handler for a capability.
- ///
- /// name of the capability of the cap
- /// handler to be removed
- public void Remove(string capsName)
- {
- m_capsHandlers.Remove(capsName);
- }
-
- public bool ContainsCap(string cap)
- {
- return m_capsHandlers.ContainsKey(cap);
- }
-
- ///
- /// The indexer allows us to treat the CapsHandlers object
- /// in an intuitive dictionary like way.
- ///
- ///
- /// The indexer will throw an exception when you try to
- /// retrieve a cap handler for a cap that is not contained in
- /// CapsHandlers.
- ///
- public IRequestHandler this[string idx]
- {
- get
- {
- return m_capsHandlers[idx];
- }
-
- set
- {
- if (m_capsHandlers.ContainsKey(idx))
- {
- m_httpListener.RemoveStreamHandler("POST", m_capsHandlers[idx].Path);
- m_capsHandlers.Remove(idx);
- }
-
- if (null == value) return;
-
- m_capsHandlers[idx] = value;
- m_httpListener.AddStreamHandler(value);
- }
- }
-
- ///
- /// Return the list of cap names for which this CapsHandlers
- /// object contains cap handlers.
- ///
- public string[] Caps
- {
- get
- {
- string[] __keys = new string[m_capsHandlers.Keys.Count];
- m_capsHandlers.Keys.CopyTo(__keys, 0);
- return __keys;
- }
- }
-
- ///
- /// Return an LLSD-serializable Hashtable describing the
- /// capabilities and their handler details.
- ///
- public Hashtable CapsDetails
- {
- get
- {
- Hashtable caps = new Hashtable();
- string baseUrl = "http://" + m_httpListenerHostName + ":" + m_httpListenerPort.ToString();
- foreach (string capsName in m_capsHandlers.Keys)
- {
- // skip SEED cap
- if ("SEED" == capsName) continue;
- caps[capsName] = baseUrl + m_capsHandlers[capsName].Path;
- }
- return caps;
- }
- }
- }
-}
+/*
+ * Copyright (c) Contributors, http://opensimulator.org/
+ * See CONTRIBUTORS.TXT for a full list of copyright holders.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * * Neither the name of the OpenSim Project nor the
+ * names of its contributors may be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.IO;
+using libsecondlife;
+using OpenSim.Framework;
+using OpenSim.Framework.Communications.Cache;
+using OpenSim.Framework.Console;
+using OpenSim.Framework.Servers;
+
+namespace OpenSim.Region.Capabilities
+{
+ ///
+ /// CapsHandlers is a cap handler container but also takes
+ /// care of adding and removing cap handlers to and from the
+ /// supplied BaseHttpServer.
+ ///
+ public class CapsHandlers
+ {
+ private Dictionary m_capsHandlers = new Dictionary();
+ private BaseHttpServer m_httpListener;
+ private string m_httpListenerHostName;
+ private uint m_httpListenerPort;
+
+ ///
+ /// base HTTP server
+ /// host name of the HTTP
+ /// server
+ /// HTTP port
+ public CapsHandlers(BaseHttpServer httpListener, string httpListenerHostname, uint httpListenerPort)
+ {
+ m_httpListener = httpListener;
+ m_httpListenerHostName = httpListenerHostname;
+ m_httpListenerPort = httpListenerPort;
+ }
+
+ ///
+ /// Remove the cap handler for a capability.
+ ///
+ /// name of the capability of the cap
+ /// handler to be removed
+ public void Remove(string capsName)
+ {
+ m_capsHandlers.Remove(capsName);
+ }
+
+ public bool ContainsCap(string cap)
+ {
+ return m_capsHandlers.ContainsKey(cap);
+ }
+
+ ///
+ /// The indexer allows us to treat the CapsHandlers object
+ /// in an intuitive dictionary like way.
+ ///
+ ///
+ /// The indexer will throw an exception when you try to
+ /// retrieve a cap handler for a cap that is not contained in
+ /// CapsHandlers.
+ ///
+ public IRequestHandler this[string idx]
+ {
+ get
+ {
+ return m_capsHandlers[idx];
+ }
+
+ set
+ {
+ if (m_capsHandlers.ContainsKey(idx))
+ {
+ m_httpListener.RemoveStreamHandler("POST", m_capsHandlers[idx].Path);
+ m_capsHandlers.Remove(idx);
+ }
+
+ if (null == value) return;
+
+ m_capsHandlers[idx] = value;
+ m_httpListener.AddStreamHandler(value);
+ }
+ }
+
+ ///
+ /// Return the list of cap names for which this CapsHandlers
+ /// object contains cap handlers.
+ ///
+ public string[] Caps
+ {
+ get
+ {
+ string[] __keys = new string[m_capsHandlers.Keys.Count];
+ m_capsHandlers.Keys.CopyTo(__keys, 0);
+ return __keys;
+ }
+ }
+
+ ///
+ /// Return an LLSD-serializable Hashtable describing the
+ /// capabilities and their handler details.
+ ///
+ public Hashtable CapsDetails
+ {
+ get
+ {
+ Hashtable caps = new Hashtable();
+ string baseUrl = "http://" + m_httpListenerHostName + ":" + m_httpListenerPort.ToString();
+ foreach (string capsName in m_capsHandlers.Keys)
+ {
+ // skip SEED cap
+ if ("SEED" == capsName) continue;
+ caps[capsName] = baseUrl + m_capsHandlers[capsName].Path;
+ }
+ return caps;
+ }
+ }
+ }
+}
diff --git a/OpenSim/Framework/Communications/Limit/TimeLimitStrategy.cs b/OpenSim/Framework/Communications/Limit/TimeLimitStrategy.cs
old mode 100755
new mode 100644
--
cgit v1.1