Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Rebol's reading of URLs

From: petr:krenzelok:trz:cz at: 23-Aug-2003 11:18

Hallvard Ystad wrote:
>Hello list. > >This irritates me: > >>>http://www.testurl.com/cgi/something.php?css=something.css&somethingelse=17 >>> >>> >== http://www.testurl.com/cgi/something.php?css=something.css&amp > >Seems rebol's url scanner stops at semicolons. I tried url-encoding the url, but with no more success: > >>>http://www.testurl.com/cgi/something.php%3Fcss=something.css%26amp;somethingelse=17 >>> >>> >== http://www.testurl.com/cgi/something.php?css=something.css&amp > >Is this ment to be so? Holger? >
Holger is not here for ages AFAIK :-) ->> to-url http://www.testurl.com/cgi/something.php?css=something.css&somethingelse=17 == http://www.testurl.com/cgi/something.php?css=something.css&amp%3Bsomethingelse=17 I think that what happened has nothing to do with non allowed chars in url parser etc. - imo console took the text right after semicolon as a comment ;-) cheers, -pekr-