diff --git a/trunk/Helpers/HTTPRequest.cs b/trunk/Helpers/HTTPRequest.cs index ca1568b..8fde113 100644 --- a/trunk/Helpers/HTTPRequest.cs +++ b/trunk/Helpers/HTTPRequest.cs @@ -42,6 +42,8 @@ // ******** // */ using System; +using System.IO; +using System.IO.Compression; using System.Net; using System.Text; @@ -63,7 +65,7 @@ namespace LSLEditor public static void Request(WebProxy proxy, SecondLife secondlife, string strUrl, SecondLife.list parameters, string postData, SecondLife.key key) { string strMethod = "GET"; - string strContentType = "text/plain;charset=utf-8"; + string strContentType = "text/plain; charset=utf-8"; for (int intI = 0; intI < parameters.Count; intI += 2) { @@ -94,7 +96,7 @@ namespace LSLEditor wc.Headers.Add("Content-Type", strContentType); wc.Headers.Add("Accept", "text/*"); - wc.Headers.Add("Accept-Charset", "utf-8;q=1.0, *;q=0.5"); + wc.Headers.Add("Accept-Charset", "utf-8; q=1.0, *; q=0.5"); wc.Headers.Add("Accept-Encoding", "deflate, gzip"); wc.Headers.Add("User-Agent", "Second Life LSL/1.19.0(12345) (http://secondlife.com)"); @@ -172,7 +174,9 @@ namespace LSLEditor else { if (e.Result != null) - strResult = Encoding.ASCII.GetString(e.Result); + { + strResult = Encoding.UTF8.GetString(e.Result); + } } userState.secondlife.host.ExecuteSecondLife("http_response", userState.httpkey, (SecondLife.integer)intStatusCode, new SecondLife.list(), (SecondLife.String)strResult); } @@ -194,10 +198,22 @@ namespace LSLEditor else { if (e.Result != null) - strResult = Encoding.ASCII.GetString(e.Result); + { + string strEncoding = ((System.Net.WebClient)sender).ResponseHeaders["Content-Encoding"]; + if (strEncoding == "gzip") + { + GZipStream tempE = new GZipStream(new System.IO.MemoryStream(e.Result), CompressionMode.Decompress); + + var sr = new StreamReader(tempE); + strResult = sr.ReadToEnd(); + } + else + { + strResult = Encoding.UTF8.GetString(e.Result); + } + } } userState.secondlife.host.ExecuteSecondLife("http_response", userState.httpkey, (SecondLife.integer)intStatusCode, new SecondLife.list(), (SecondLife.String)strResult); } - } } diff --git a/trunk/LSLEditor.RES b/trunk/LSLEditor.RES index 34647d4..6af5849 100644 Binary files a/trunk/LSLEditor.RES and b/trunk/LSLEditor.RES differ diff --git a/trunk/Properties/AssemblyInfo.cs b/trunk/Properties/AssemblyInfo.cs index 105a890..0674a78 100644 --- a/trunk/Properties/AssemblyInfo.cs +++ b/trunk/Properties/AssemblyInfo.cs @@ -70,7 +70,7 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.45.1.*")] +[assembly: AssemblyVersion("2.46.0.*")] // // In order to sign your assembly you must specify a key to use. Refer to the @@ -100,4 +100,4 @@ using System.Runtime.InteropServices; [assembly: AssemblyDelaySign(false)] //[assembly: AssemblyKeyName("")] [assembly: ComVisibleAttribute(false)] -[assembly: AssemblyFileVersionAttribute("2.45.1.0")] +[assembly: AssemblyFileVersionAttribute("2.46.0.0")] diff --git a/trunk/Properties/Settings.Designer.cs b/trunk/Properties/Settings.Designer.cs index e6192fd..f1b8481 100644 --- a/trunk/Properties/Settings.Designer.cs +++ b/trunk/Properties/Settings.Designer.cs @@ -1204,7 +1204,7 @@ namespace LSLEditor.Properties { [global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("http://lsleditor.sourceforge.net/check4update.php")] + [global::System.Configuration.DefaultSettingValueAttribute("http://a-w-d.dyndns.org:8080/lsleditor/check4update.php")] public string Update { get { return ((string)(this["Update"])); @@ -1213,7 +1213,7 @@ namespace LSLEditor.Properties { [global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("http://lsleditor.sourceforge.net/update.php")] + [global::System.Configuration.DefaultSettingValueAttribute("http://a-w-d.dyndns.org:8080/lsleditor/update.php")] public string UpdateManifest { get { return ((string)(this["UpdateManifest"])); diff --git a/trunk/Resource/ConfLSL.xml b/trunk/Resource/ConfLSL.xml index 02e7fcf..5195f74 100644 --- a/trunk/Resource/ConfLSL.xml +++ b/trunk/Resource/ConfLSL.xml @@ -708,8 +708,13 @@ string llGetAgentLanguage( key avatar ); - Returns a string that is the language code of the preferred - interface language of the user avatar. + Returns a string that is the language code of the preferred interface language of the user avatar. + + + + list llGetAgentList( integer Scope, list Options ); + + Returns a list of agents from the specified scope (parcel, owner's parcel, region). @@ -4662,6 +4667,10 @@ Constants that do not fit into any of the previously defined categories. + + + + @@ -4959,6 +4968,7 @@ + diff --git a/trunk/Resource/ReleaseNotes.htm b/trunk/Resource/ReleaseNotes.htm index 734b2f2..e78e6ca 100644 --- a/trunk/Resource/ReleaseNotes.htm +++ b/trunk/Resource/ReleaseNotes.htm @@ -7,9 +7,35 @@
+
+

<2012-04-23 - Release 2.46.0

+ * Added constants/function currently on the Magnum RC. +
+ * Constants: +
    +
  • AGENT_LIST_PARCEL
  • +
  • AGENT_LIST_PARCEL_OWNER
  • +
  • AGENT_LIST_REGION
  • +
  • PRIM_SLICE
  • +
+
+
+ * Functions: +
    +
  • llGetAgentList
  • +
+
+
+ * Fixed: +
    +
  • SF ID: 3072580 - HTTP Request response returned gzip compressed string. (Thanks to Akkarin Dryke).
  • +
  • Also fixed HTTP Request response to return UTF-8 (instead of ASCII).
  • +
+
+

2012-03-18 - Release 2.45.1

-
- Fixed: Problem with updater. Our BZip2 decompression code did not work, which prevented the updater creating the new file.
+
* Fixed: Problem with updater. Our BZip2 decompression code did not work, which prevented the updater creating the new file.

2012-03-14 - Release 2.45.0

diff --git a/trunk/SecondLife/SecondLifeMain.cs b/trunk/SecondLife/SecondLifeMain.cs index 2506f50..b7f8e88 100644 --- a/trunk/SecondLife/SecondLifeMain.cs +++ b/trunk/SecondLife/SecondLifeMain.cs @@ -230,6 +230,10 @@ namespace LSLEditor public static readonly integer AGENT_BY_LEGACY_NAME = 0x1; public static readonly integer AGENT_BY_USERNAME = 0x10; + public static readonly integer AGENT_LIST_PARCEL = 0x01; + public static readonly integer AGENT_LIST_PARCEL_OWNER = 0x02; + public static readonly integer AGENT_LIST_REGION = 0x04; + public static readonly integer ATTACH_CHEST = 1; public static readonly integer ATTACH_HEAD = 2; public static readonly integer ATTACH_LSHOULDER = 3; @@ -602,6 +606,7 @@ namespace LSLEditor public static readonly integer PRIM_SHINY_MEDIUM = 2; public static readonly integer PRIM_SHINY_NONE = 0; public static readonly integer PRIM_SIZE = 7; + public static readonly integer PRIM_SLICE = 35; public static readonly integer PRIM_TEMP_ON_REZ = 4; public static readonly integer PRIM_TEXGEN = 22; public static readonly integer PRIM_TEXGEN_DEFAULT = 0; @@ -1761,6 +1766,12 @@ namespace LSLEditor return strLan; } + public list llGetAgentList(integer Scope, list Options) + { + Verbose("llGetAgentList({0}, [{1}])", Scope, Options); + return new list(); + } + public vector llGetAgentSize(key id) { Verbose("GetAgentSize(" + id + ")"); diff --git a/trunk/Web References/org.lsleditor.www/Reference.cs b/trunk/Web References/org.lsleditor.www/Reference.cs index e094393..64accb6 100644 --- a/trunk/Web References/org.lsleditor.www/Reference.cs +++ b/trunk/Web References/org.lsleditor.www/Reference.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.225 +// Runtime Version:4.0.30319.261 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -9,7 +9,7 @@ //------------------------------------------------------------------------------ // -// This source code was auto-generated by Microsoft.VSDesigner, Version 4.0.30319.225. +// This source code was auto-generated by Microsoft.VSDesigner, Version 4.0.30319.261. // #pragma warning disable 1591 diff --git a/trunk/app.config b/trunk/app.config index 835397a..c4a6b36 100644 --- a/trunk/app.config +++ b/trunk/app.config @@ -1,12 +1,11 @@ - - + -
+
-
+
@@ -18,7 +17,7 @@ False - + LSLEditor Island @@ -30,13 +29,13 @@ youraddress@yourdomain.ext - + - + - + 0, 0 @@ -123,10 +122,10 @@ True - + - + PLAIN @@ -138,13 +137,13 @@ False - + - + - + False @@ -177,19 +176,19 @@ False - + - + - + False - + Production @@ -316,8 +315,8 @@ http://metaversegames.net/questions/lsl - + - \ No newline at end of file + diff --git a/trunk/lsleditor.csproj b/trunk/lsleditor.csproj index 192d0b7..dfa082e 100644 --- a/trunk/lsleditor.csproj +++ b/trunk/lsleditor.csproj @@ -12,7 +12,7 @@ LSLEditor - testing.pfx + lsl-editor.pfx JScript Grid IE50 @@ -43,7 +43,8 @@ 1.0.0.%2a false true - v2.0 + v3.5 + ..\bin\Debug\ @@ -93,6 +94,12 @@ prompt AllRules.ruleset + + true + + + 5CBB20152EC70EC13542B336790AF2E7AB2E1DEB + System @@ -227,6 +234,8 @@ + + @@ -716,6 +725,8 @@ + +