2006-01-18 14:06:34 -05:00
|
|
|
IN: scratchpad
|
|
|
|
USING: words kernel parser sequences io compiler ;
|
|
|
|
|
2006-01-19 20:27:38 -05:00
|
|
|
{
|
2006-01-23 18:01:46 -05:00
|
|
|
"mime"
|
2006-01-20 01:26:50 -05:00
|
|
|
"xml"
|
2006-01-19 20:27:38 -05:00
|
|
|
"http-common"
|
|
|
|
"html-tags"
|
|
|
|
"responder"
|
|
|
|
"httpd"
|
2006-01-23 18:01:46 -05:00
|
|
|
"cont-responder"
|
2006-01-24 05:50:32 -05:00
|
|
|
"prototype-js"
|
2006-01-23 20:05:39 -05:00
|
|
|
"html"
|
2006-01-19 20:27:38 -05:00
|
|
|
"file-responder"
|
2006-01-20 01:26:50 -05:00
|
|
|
"help-responder"
|
2006-01-23 18:01:46 -05:00
|
|
|
"inspect-responder"
|
2006-01-19 20:27:38 -05:00
|
|
|
"browser-responder"
|
|
|
|
"default-responders"
|
|
|
|
"http-client"
|
|
|
|
|
|
|
|
"test/html"
|
|
|
|
"test/http-client"
|
|
|
|
"test/httpd"
|
|
|
|
"test/url-encoding"
|
2006-01-21 01:04:03 -05:00
|
|
|
} [ "/contrib/httpd/" swap ".factor" append3 run-resource ] each
|
2006-01-26 23:01:14 -05:00
|
|
|
|
|
|
|
"To start the HTTP server, issue the following command in the listener:" print
|
|
|
|
" USE: httpd" print
|
|
|
|
" [ 8888 httpd ] in-thread" print
|
|
|
|
"Replacing '8888' with whatever port number you desire." print
|