diff options
Diffstat (limited to 'http-cgi.scm')
-rw-r--r-- | http-cgi.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/http-cgi.scm b/http-cgi.scm index 517e312..1dd1c07 100644 --- a/http-cgi.scm +++ b/http-cgi.scm @@ -125,7 +125,7 @@ *http:byline* (sprintf #f - "<A HREF=http://swissnet.ai.mit.edu/~jaffer/SLIB.html>SLIB</A> %s server" + "<A HREF=http://swiss.csail.mit.edu/~jaffer/SLIB.html>SLIB</A> %s server" (if (getenv "SERVER_PROTOCOL") "CGI/1.1" "HTTP/1.1")))) (string-append (http:status-line status-code reason-phrase) (http:content @@ -143,9 +143,9 @@ ;;@3 after @2 seconds. The returned page (string) contains any @4 ;;@dots{} followed by a manual link to @3, in case the browser does not ;;forward automatically. -(define (http:forwarding-page title delay uri . html-strings) +(define (http:forwarding-page title dly uri . html-strings) (string-append - (html:head title #f (html:meta-refresh delay uri)) + (html:head title #f (html:meta-refresh dly uri)) (apply html:body (append html-strings (list (sprintf #f "\\n\\n<HR>\\nReturn to %s.\\n" |