svn: r7609
This commit is contained in:
Jay McCarthy 2007-11-01 12:39:06 +00:00
parent 96117cc86d
commit 2a91979a4b
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@
[struct responders
([servlet (url? any/c . -> . response?)]
[servlet-loading (url? any/c . -> . response?)]
[authentication (url? (cons/c symbol? string?) . -> . response?)]
[authentication (url? header? . -> . response?)]
[servlets-refreshed (-> response?)]
[passwords-refreshed (-> response?)]
[file-not-found (request? . -> . response?)]

View File

@ -122,5 +122,5 @@
conn
(authentication-responder
uri
`(WWW-Authenticate . ,(format " Basic realm=\"~a\"" realm)))
(make-header #"WWW-Authenticate" (string->bytes/utf-8 (format " Basic realm=\"~a\"" realm))))
method)))