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

[REBOL] Re: Problem reading url

From: antonr:lexicon at: 19-Apr-2004 2:08

Just having a look in net-utils/url-parser ... write clipboard:// mold net-utils/url-parser Just used this tool: http://www.w3schools.com/html/html_ref_urlencode.asp which encodes your url thus: http%3A%2F%2Fde%2Efinance%2Eyahoo%2Ecom%2Fd%2Fquotes%2Fcsv%3Fs%3D%5EGDAXI%26 f%3Dsl1t1d1c1pohgv%0D%0A Notice the %3D%5E, which looks like the encoding for ^ If I replace the ^ with %3D%5E, then I can read the url ok. Not sure what this means for rebol's url-parser. Anton.