diff options
6 files changed, 17 insertions, 17 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs index bc706f0..42266ce 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs | |||
@@ -65,9 +65,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
65 | 65 | ||
66 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) | 66 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) |
67 | { | 67 | { |
68 | Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId); | 68 | Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId); |
69 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); | 69 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); |
70 | Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix); | 70 | Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix); |
71 | } | 71 | } |
72 | 72 | ||
73 | // Register interface using the absolute URI. | 73 | // Register interface using the absolute URI. |
@@ -282,7 +282,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
282 | Rest.Log.WarnFormat("{0} Method {1} not supported for {2}", | 282 | Rest.Log.WarnFormat("{0} Method {1} not supported for {2}", |
283 | MsgId, rdata.method, rdata.path); | 283 | MsgId, rdata.method, rdata.path); |
284 | rdata.Fail(Rest.HttpStatusCodeMethodNotAllowed, | 284 | rdata.Fail(Rest.HttpStatusCodeMethodNotAllowed, |
285 | String.Format("{0} not supported", rdata.method)); | 285 | String.Format("{0} not supported", rdata.method)); |
286 | break; | 286 | break; |
287 | } | 287 | } |
288 | } | 288 | } |
@@ -669,7 +669,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
669 | case "VisualParameters" : | 669 | case "VisualParameters" : |
670 | { | 670 | { |
671 | xml.ReadContentAsBase64(rdata.userAppearance.VisualParams, | 671 | xml.ReadContentAsBase64(rdata.userAppearance.VisualParams, |
672 | 0,rdata.userAppearance.VisualParams.Length); | 672 | 0, rdata.userAppearance.VisualParams.Length); |
673 | indata = true; | 673 | indata = true; |
674 | } | 674 | } |
675 | break; | 675 | break; |
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs index 5fd8015..b67922f 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs | |||
@@ -57,9 +57,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
57 | 57 | ||
58 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) | 58 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) |
59 | { | 59 | { |
60 | Rest.Log.InfoFormat("{0} Prefixing domain name ({1})", MsgId, qPrefix); | 60 | Rest.Log.InfoFormat("{0} Prefixing domain name ({1})", MsgId, qPrefix); |
61 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); | 61 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); |
62 | Rest.Log.InfoFormat("{0} Fully qualified domain name is <{1}>", MsgId, qPrefix); | 62 | Rest.Log.InfoFormat("{0} Fully qualified domain name is <{1}>", MsgId, qPrefix); |
63 | } | 63 | } |
64 | 64 | ||
65 | // Register interface using the fully-qualified prefix | 65 | // Register interface using the fully-qualified prefix |
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs index 126b757..fd4c295 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs | |||
@@ -264,8 +264,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
264 | 264 | ||
265 | if (Rest.Prefix.Substring(0,1) != Rest.UrlPathSeparator) | 265 | if (Rest.Prefix.Substring(0,1) != Rest.UrlPathSeparator) |
266 | { | 266 | { |
267 | Rest.Log.WarnFormat("{0} Prefix <{1}> is not absolute and must be", MsgId, Rest.Prefix); | 267 | Rest.Log.WarnFormat("{0} Prefix <{1}> is not absolute and must be", MsgId, Rest.Prefix); |
268 | Rest.Log.InfoFormat("{0} Prefix changed to </{1}>", MsgId, Rest.Prefix); | 268 | Rest.Log.InfoFormat("{0} Prefix changed to </{1}>", MsgId, Rest.Prefix); |
269 | Rest.Prefix = String.Format("{0}{1}", Rest.UrlPathSeparator, Rest.Prefix); | 269 | Rest.Prefix = String.Format("{0}{1}", Rest.UrlPathSeparator, Rest.Prefix); |
270 | } | 270 | } |
271 | 271 | ||
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs index 6791cba..0aad058 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs | |||
@@ -66,9 +66,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
66 | 66 | ||
67 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) | 67 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) |
68 | { | 68 | { |
69 | Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId); | 69 | Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId); |
70 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); | 70 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); |
71 | Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix); | 71 | Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix); |
72 | } | 72 | } |
73 | 73 | ||
74 | // Register interface using the absolute URI. | 74 | // Register interface using the absolute URI. |
@@ -331,9 +331,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
331 | 331 | ||
332 | default : | 332 | default : |
333 | Rest.Log.WarnFormat("{0} Method {1} not supported for {2}", | 333 | Rest.Log.WarnFormat("{0} Method {1} not supported for {2}", |
334 | MsgId, rdata.method, rdata.path); | 334 | MsgId, rdata.method, rdata.path); |
335 | rdata.Fail(Rest.HttpStatusCodeMethodNotAllowed, | 335 | rdata.Fail(Rest.HttpStatusCodeMethodNotAllowed, |
336 | String.Format("{0} not supported", rdata.method)); | 336 | String.Format("{0} not supported", rdata.method)); |
337 | break; | 337 | break; |
338 | } | 338 | } |
339 | } | 339 | } |
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestTestServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestTestServices.cs index 8d28dd6..b24b5ed 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestTestServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestTestServices.cs | |||
@@ -58,9 +58,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
58 | 58 | ||
59 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) | 59 | if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) |
60 | { | 60 | { |
61 | Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId); | 61 | Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId); |
62 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); | 62 | qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); |
63 | Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix); | 63 | Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix); |
64 | } | 64 | } |
65 | 65 | ||
66 | // Load test cases | 66 | // Load test cases |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 3295a96..b77676c 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -2728,7 +2728,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2728 | client.OnScriptAnswer-=handleScriptAnswer; | 2728 | client.OnScriptAnswer-=handleScriptAnswer; |
2729 | m_waitingForScriptAnswer=false; | 2729 | m_waitingForScriptAnswer=false; |
2730 | 2730 | ||
2731 | if((answer & ScriptBaseClass.PERMISSION_TAKE_CONTROLS) == 0) | 2731 | if ((answer & ScriptBaseClass.PERMISSION_TAKE_CONTROLS) == 0) |
2732 | llReleaseControls(); | 2732 | llReleaseControls(); |
2733 | 2733 | ||
2734 | m_host.TaskInventory[invItemID].PermsMask=answer; | 2734 | m_host.TaskInventory[invItemID].PermsMask=answer; |
@@ -2815,7 +2815,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2815 | // byte uf = childPrim.RootPart.UpdateFlag; | 2815 | // byte uf = childPrim.RootPart.UpdateFlag; |
2816 | childPrim.RootPart.UpdateFlag = 0; | 2816 | childPrim.RootPart.UpdateFlag = 0; |
2817 | parentPrim.LinkToGroup(childPrim); | 2817 | parentPrim.LinkToGroup(childPrim); |
2818 | // if(uf != (Byte)0) | 2818 | // if (uf != (Byte)0) |
2819 | // parent.RootPart.UpdateFlag = uf; | 2819 | // parent.RootPart.UpdateFlag = uf; |
2820 | } | 2820 | } |
2821 | parentPrim.TriggerScriptChangedEvent(Changed.LINK); | 2821 | parentPrim.TriggerScriptChangedEvent(Changed.LINK); |
@@ -3742,7 +3742,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3742 | { | 3742 | { |
3743 | face = 0; | 3743 | face = 0; |
3744 | } | 3744 | } |
3745 | if(face >= 0 && face < GetNumberOfSides(part)) | 3745 | if (face >= 0 && face < GetNumberOfSides(part)) |
3746 | { | 3746 | { |
3747 | offset.x = tex.GetFace((uint)face).OffsetU; | 3747 | offset.x = tex.GetFace((uint)face).OffsetU; |
3748 | offset.y = tex.GetFace((uint)face).OffsetV; | 3748 | offset.y = tex.GetFace((uint)face).OffsetV; |