hyper-literate/collects/net/urls.ss
Robby Findler 9e5d391dfb ...
original commit: 66a62c2f50bd2b8c85867be3e415c6a0b3881f20
2000-05-25 15:55:50 +00:00

19 lines
630 B
Scheme

(require-library "macro.ss")
(require-library "files.ss")
(define-signature mzlib:url^
((struct url (scheme host port path params query fragment))
(struct mime-header (name value))
unixpath->path
get-pure-port ; url [x list (str)] -> in-port
get-impure-port ; url [x list (str)] -> in-port
display-pure-port ; in-port -> ()
purify-port ; in-port -> list (mime-header)
netscape/string->url ; (string -> url)
string->url ; str -> url
url->string
call/input-url ; url x (url -> in-port) x
; (in-port -> T)
; [x list (str)] -> T
combine-url/relative)) ; url x str -> url