From: Jos v.d.V. <jo...@us...> - 2007-07-07 18:12:17
|
Update of /cvsroot/win32forth/win32forth/apps/Internet/WebServer In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15236 Modified Files: WebServer.F Log Message: Jos: Added some user notes. Index: WebServer.F =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Internet/WebServer/WebServer.F,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** WebServer.F 13 Jun 2007 17:38:15 -0000 1.2 --- WebServer.F 7 Jul 2007 18:12:13 -0000 1.3 *************** *** 2,5 **** --- 2,10 ---- \ Tom Dixon + \ *D doc\ + \ *! WebServer + \ *T WebServer -- Webserver + \ *S Glossary + anew -WebServer.f *************** *** 48,53 **** then ; ! : www-server ! \ *G main server-set-title --- 53,66 ---- then ; ! : www-server ( -- ) ! \ *G Starts the server. ! \ ** Tell your firewall that Win32Forth is allowed to use port 80. \n ! \ ** Then you should able to see the server in your browser by using: \n ! \ ** http://localhost/p-index.htm \n ! \ ** Assuming that the file p-index.htm is in your webpath. \n ! \ ** When you would like to use the websever over the internet. \n ! \ ** you must replace "localhost" by your IP-adres. \n ! \ ** The IP-adres can be seen at http://checkip.dyndns.org \n ! server-set-title *************** *** 70,74 **** : www-server-hello ( -- ) \ startup stuff - \ default initialization (needed for all turnkey apps) init-console --- 83,86 ---- |