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

[REBOL] Re: ";" semi-colons in urls

From: holger:rebol at: 11-Jan-2001 14:54

On Thu, Jan 11, 2001 at 03:11:40PM -0600, Ryan C. Christiansen wrote:
> Either I didn't understand your solution or it doesn't work with > REBOL/Core 2.3.0.3.1 for Windows. > > ** User Error: URL error: http://ad2.doubleclick.net/jump/sonar.bebits/default;s > z=468x60;ord=979190170. > ** Where: read http://ad2.doubleclick.net/jump/sonar.bebits/default%3Bsz=468x60% > 3Bord=979190170 > > Using the ASCII code gives a "User Error" error
Ok, looks like the version of REBOL you use still has the old URL parser, which does not support ";". Here is a workaround: http://ad2.doubleclick.net/jump/sonar.bebits/default%253Bsz=468x60%253Bord=979190170 This double-escapes the ";". The server should still be able to handle it. -- Holger Kruse [holger--rebol--com]