Update of /cvsroot/webware/Webware/bin
In directory usw-pr-cvs1:/tmp/cvs-serv24691
Modified Files:
MakeAppWorkDir.py
Log Message:
removing reference to HTTPServer in MakeAppWorkDir.py
Index: MakeAppWorkDir.py
===================================================================
RCS file: /cvsroot/webware/Webware/bin/MakeAppWorkDir.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** MakeAppWorkDir.py 2001/09/21 19:27:32 1.6
--- MakeAppWorkDir.py 2001/11/24 13:50:46 1.7
***************
*** 123,128 ****
("AppServer", 1),
("AppServer.bat", 1),
- ("HTTPServer", 1),
- ("HTTPServer.bat",1),
("OneShot.cgi", 0),
("WebKit.cgi", 0),
--- 123,126 ----
***************
*** 206,223 ****
print """\n\n
Congratulations, you've just created a runtime working directory for
! Webware. To get started quickly you can run these commands:
cd %(WORKDIR)s
! HTTPServer
! and then point your browser to http://localhost:8086/. The page you
see is generated from the code in the %(DEFAULT)s directory and is
there for you to play with and to build upon.
! For a more robust solution, run the AppServer script and then copy
! WebKit.cgi to your web server's cgi-bin directory, or anywhere else
! that it will execute CGIs from. There are also several adapters in
! the Webware/WebKit directory that allow you to connect from the web
! server to the WebKit AppServer without using CGI.
Have fun!
--- 204,225 ----
print """\n\n
Congratulations, you've just created a runtime working directory for
! Webware. To start the app server you can run these commands:
cd %(WORKDIR)s
! ./AppServer
! Copy WebKit.cgi to your web server's cgi-bin directory, or
! anywhere else that it will execute CGIs from. Then point your browser
! to http://localhost/cgi-bin/WebKit.cgi/ . The page you
see is generated from the code in the %(DEFAULT)s directory and is
there for you to play with and to build upon.
! If you see import errors, then you may need to modify the permissions
! on your Webware directory so that the WebKit.cgi script can
! access it.
!
! There are also several adapters in the Webware/WebKit directory that
! allow you to connect from the web server to the WebKit AppServer
! without using CGI.
Have fun!
|