Difference between revisions of "Talk:LlEscapeURL"
Jump to navigation
Jump to search
(New page: As of 1.19, the following characters are not escaped: ! # $ & ' ( ) * + , - . / : ; = ? @ _ ~ . See [http://jira.secondlife.com/browse/SVC-1405 SVC-1405] for details. --~~~~) |
m (→PHP Example) |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
As of 1.19, the following characters are not escaped: ! # $ & ' ( ) * + , - . / : ; = ? @ _ ~ . | As of 1.19, the following characters are not escaped: ! # $ & ' ( ) * + , - . / : ; = ? @ _ ~ . | ||
See [http://jira.secondlife.com/browse/SVC-1405 SVC-1405] for details. --[[User:Dedric Mauriac|Dedric Mauriac]] 18:53, 1 February 2008 (PST) | See [http://jira.secondlife.com/browse/SVC-1405 SVC-1405] for details. --[[User:Dedric Mauriac|Dedric Mauriac]] 18:53, 1 February 2008 (PST) | ||
SVC-1405 has been fixed and the 255 byte limit has also been removed - so the length of the string is now only limited with the available script memory. --[[User:MSo Lambert|MSo Lambert]] 12:38, 4 July 2008 (PDT) | |||
:omg that totally rocks, how did i miss this? no more insane limit. -- [[User:Strife Onizuka|Strife Onizuka]] 15:42, 4 July 2008 (PDT) | |||
== a != llUnescapeURL(llEscapeURL(a)) example == | |||
Could you provide an example for the addition of the [https://wiki.secondlife.com/w/index.php?title=LlEscapeURL&curid=3014&diff=1173804&oldid=1172156 tip]? -- '''[[User:Strife_Onizuka|Strife]]''' <sup><small>([[User talk:Strife_Onizuka|talk]]|[[Special:Contributions/Strife_Onizuka|contribs]])</small></sup> 14:28, 22 October 2012 (PDT) | |||
:Hm, I can't find it right now... I'll have to check again. It didn't work for me a while back -- [[User:Kireji Haiku|Kireji Haiku]] 10:28, 25 October 2012 (PDT) | |||
== PHP Example == | |||
Similar to urlencode found in other languages...goes on to list urlencode() from PHP. | |||
Actually, it maps more appropriately to rawurlencode() from PHP. | |||
[[User:Dwen Dooley|Dwen Dooley]] 10:23, 4 June 2013 (PDT) | |||
:I've made the change. -- '''[[User:Strife_Onizuka|Strife]]''' <sup><small>([[User talk:Strife_Onizuka|talk]]|[[Special:Contributions/Strife_Onizuka|contribs]])</small></sup> 11:02, 5 June 2013 (PDT) |
Latest revision as of 10:02, 5 June 2013
As of 1.19, the following characters are not escaped: ! # $ & ' ( ) * + , - . / : ; = ? @ _ ~ . See SVC-1405 for details. --Dedric Mauriac 18:53, 1 February 2008 (PST)
SVC-1405 has been fixed and the 255 byte limit has also been removed - so the length of the string is now only limited with the available script memory. --MSo Lambert 12:38, 4 July 2008 (PDT)
- omg that totally rocks, how did i miss this? no more insane limit. -- Strife Onizuka 15:42, 4 July 2008 (PDT)
a != llUnescapeURL(llEscapeURL(a)) example
Could you provide an example for the addition of the tip? -- Strife (talk|contribs) 14:28, 22 October 2012 (PDT)
- Hm, I can't find it right now... I'll have to check again. It didn't work for me a while back -- Kireji Haiku 10:28, 25 October 2012 (PDT)
PHP Example
Similar to urlencode found in other languages...goes on to list urlencode() from PHP.
Actually, it maps more appropriately to rawurlencode() from PHP.
Dwen Dooley 10:23, 4 June 2013 (PDT)