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

[REBOL] Re: URL Authentication

From: petr:krenzelok:trz:cz at: 25-Feb-2003 21:26

reboler wrote:
>Hi Rebolers!, > >Do you know how to authenticate this: > >page: read http://user:[pass--host--com]/ > >when the 'user' or 'pass' uses a "@" or as its value ? >
I am not sure it will help, but it could :-) I had similar problem using FTP. RT said such char is not officially allowed in URL to be used as part of name or pass IIRC, well, but I find it pretty common and I think official protocols should be adapted ... net-utils/url-parser/user-char: union net-utils/url-parser/user-char make bitset! #"@" net-utils/url-parser/path-char: union net-utils/url-parser/path-char make bitset! #"#" PS: I don't remember what is second line good for, but .... those are lines from my user.r :-) cheers, -pekr-