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

[REBOL] URL handling

From: hallvard::ystad::helpinhand::com at: 17-Aug-2003 0:13

Hi list, I was looking for a URL handler script. Didn't find any. (Didn't someone write a rebol web browser??) So I had to make one of my own: http://folk.uio.no/hallvary/rebol/url-handler.r Use it like this:
>> site: make url-handler [url: http://folk.uio.no/hallvary/rebol/] >> site/init
== http://folk.uio.no/hallvary/rebol/
>> site/move-to "url-handler.r"
== http://folk.uio.no/hallvary/rebol/url-handler.r And at any time:
>> site/url
== http://folk.uio.no/hallvary/rebol/url-handler.r Hope this can be useful for someone. Comments are welcome. Hallvard