]> gitweb.factorcode.org Git - factor.git/blob - contrib/httpd/load.factor
Furnace tools overhaul
[factor.git] / contrib / httpd / load.factor
1 USING: io ;
2
3 REQUIRES: contrib/calendar contrib/http contrib/xml ;
4
5 PROVIDE: contrib/httpd { 
6     "mime.factor"
7     "html-tags.factor"
8     "responder.factor"
9     "httpd.factor"
10     "callback-responder.factor"
11     "cont-responder.factor"
12     "prototype-js.factor"
13     "html.factor"
14     "embedded.factor"
15     "file-responder.factor"
16     "default-responders.factor"
17 } {
18     "test/html.factor"
19     "test/http-client.factor"
20     "test/httpd.factor"
21     "test/url-encoding.factor"
22 } ;
23
24 "To start the HTTP server, issue the following command in the listener:" print
25 "  USE: httpd" print
26 "  [ 8888 httpd ] in-thread" print
27 "Replacing '8888' with whatever port number you desire." print