factor/contrib/httpd/help-responder.factor

14 lines
387 B
Factor
Raw Normal View History

! Copyright (C) 2006 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
IN: help-responder
2006-06-15 01:21:16 -04:00
USING: hashtables help html httpd io kernel namespaces sequences ;
2006-06-15 01:21:16 -04:00
: help-topic
"topic" query-param dup empty? [ drop "handbook" ] when ;
: help-responder ( -- )
serving-html
2006-06-16 23:12:40 -04:00
help-topic dup article-title [
[ help ] with-html-stream
2006-06-15 01:21:16 -04:00
] html-document ;