diff options
author | Justin Clark-Casey (justincc) | 2010-03-05 00:54:46 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-03-05 00:54:46 +0000 |
commit | e39fc95659a405a8500c9014d2ac31c5d85741d7 (patch) | |
tree | 19cf14d99216d77ce5855aa75fc58f2f004c09fa /OpenSim/Framework | |
parent | Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-e39fc95659a405a8500c9014d2ac31c5d85741d7.zip opensim-SC-e39fc95659a405a8500c9014d2ac31c5d85741d7.tar.gz opensim-SC-e39fc95659a405a8500c9014d2ac31c5d85741d7.tar.bz2 opensim-SC-e39fc95659a405a8500c9014d2ac31c5d85741d7.tar.xz |
Fix LocalPresenceServiceConnector test now that the hardcoded test data has been removed from Data.Null.NullPresenceData
Unfortunately, this meant publicly exposing the underlying service for the connector.
The other solution would be to create alternative initializers for services and connectors where objects could be given directly rather than loaded indirectly through config.
Unfortunately, this would require a lot of work in this case but might be the better way forward.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/SLUtil.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Framework/SLUtil.cs b/OpenSim/Framework/SLUtil.cs index ff5f8b9..81d82be 100644 --- a/OpenSim/Framework/SLUtil.cs +++ b/OpenSim/Framework/SLUtil.cs | |||
@@ -1,11 +1,15 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Reflection; | ||
4 | using log4net; | ||
3 | using OpenMetaverse; | 5 | using OpenMetaverse; |
4 | 6 | ||
5 | namespace OpenSim.Framework | 7 | namespace OpenSim.Framework |
6 | { | 8 | { |
7 | public static class SLUtil | 9 | public static class SLUtil |
8 | { | 10 | { |
11 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
12 | |||
9 | #region SL / file extension / content-type conversions | 13 | #region SL / file extension / content-type conversions |
10 | 14 | ||
11 | public static string SLAssetTypeToContentType(int assetType) | 15 | public static string SLAssetTypeToContentType(int assetType) |
@@ -190,7 +194,12 @@ namespace OpenSim.Framework | |||
190 | /// <returns></returns> | 194 | /// <returns></returns> |
191 | public static string ParseNotecardToString(string rawInput) | 195 | public static string ParseNotecardToString(string rawInput) |
192 | { | 196 | { |
193 | return string.Join("\n", ParseNotecardToList(rawInput).ToArray()); | 197 | string[] output = ParseNotecardToList(rawInput).ToArray(); |
198 | |||
199 | // foreach (string line in output) | ||
200 | // m_log.DebugFormat("[PARSE NOTECARD]: ParseNotecardToString got line {0}", line); | ||
201 | |||
202 | return string.Join("\n", output); | ||
194 | } | 203 | } |
195 | 204 | ||
196 | /// <summary> | 205 | /// <summary> |
@@ -254,6 +263,7 @@ namespace OpenSim.Framework | |||
254 | if (ln.Length > need) | 263 | if (ln.Length > need) |
255 | ln = ln.Substring(0, need); | 264 | ln = ln.Substring(0, need); |
256 | 265 | ||
266 | // m_log.DebugFormat("[PARSE NOTECARD]: Adding line {0}", ln); | ||
257 | output.Add(ln); | 267 | output.Add(ln); |
258 | count += ln.Length + 1; | 268 | count += ln.Length + 1; |
259 | idx++; | 269 | idx++; |