|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(use-modules (web server) |
|
(web request) |
|
(web response) |
|
(sxml simple)) |
|
|
|
(define html5-doctype "<!DOCTYPE html>\n") |
|
(define default-title "Hello hello!") |
|
|
|
(define* (templatize #:key (title "No title") (body '((p "No body")))) |
|
`(html (head (title ,title)) |
|
(body ,@body))) |
|
|
|
(define* (respond #:optional body #:key |
|
(status 200) |
|
(title default-title) |
|
(doctype html5-doctype) |
|
(content-type-params '((charset . "utf-8"))) |
|
(content-type 'text/html) |
|
(extra-headers '()) |
|
(sxml (and body (templatize #:title title #:body body)))) |
|
(values (build-response |
|
#:code status |
|
#:headers `((content-type . (,content-type ,@content-type-params)) |
|
,@extra-headers)) |
|
(lambda (port) |
|
(if sxml |
|
(begin |
|
(if doctype (display doctype port)) |
|
(sxml->xml sxml port)))))) |
|
|
|
(define (debug-page request body) |
|
(respond `((h1 "hello world!") |
|
(table |
|
(tr (th "header") (th "value")) |
|
,@(map (lambda (pair) |
|
`(tr (td (tt ,(with-output-to-string |
|
(lambda () (display (car pair)))))) |
|
(td (tt ,(with-output-to-string |
|
(lambda () |
|
(write (cdr pair)))))))) |
|
(request-headers request)))))) |
|
|
|
(run-server debug-page) |
|
|