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.

> Hi,
>
> I try to read an URL which contains an ^. But this always fails:
>
> >> URL: to-url {http://de.finance.yahoo.com/d/quotes/
> csv?s=^GDAXI&f=sl1t1d1c1pohgv}
> == http://de.finance.yahoo.com/d/quotes/csv?s=%07DAXI&f=sl1t1d1c1pohgv
> >> read URL
> ** User Error: URL error: http://de.finance.yahoo.com/d/quotes/
> csv?s=DAXI&f=sl1t1d1c1pohgv
> ** Near: read URL
> >>
>
> Omitting the "^" works but is obviously not the correct URL. Is
> this a bug or
> a feature?
>
> Raimund

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.

Reply via email to