quixote/server medusa_http.py,1.3,1.4
Andrew Kuchling <akuchlin-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]>
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/cvs/quixote/server
In directory hewson:/tmp/cvs-serv23894
Modified Files:
medusa_http.py
Log Message:
Add commented-out call to read_config()
Index: medusa_http.py
===================================================================
RCS file: /home/cvs/quixote/server/medusa_http.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- medusa_http.py 4 Nov 2002 17:51:57 -0000 1.3
+++ medusa_http.py 5 Nov 2002 14:13:31 -0000 1.4
@@ -102,6 +102,10 @@
print 'Now serving the Quixote demo on port 8080'
server = http_server.http_server('', 8080)
publisher = Publisher('quixote.demo')
+
+ # When initializing the Publisher in your own driver script,
+ # you'll want to parse a configuration file.
+ ##publisher.read_config("/full/path/to/demo.conf")
publisher.setup_logs()
dh = QuixoteHandler(publisher, 'Quixote/demo', server)
server.install_handler(dh)