SVN: r25893 - trunk/quixote/server

David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Wed, 19 Jan 2005 13:49:31 -0500
Newsgroups gmane.comp.web.quixote.cvs
Message-ID <[email protected]>
Author: dbinger
Date: 2005-01-19 09:26:25 -0500 (Wed, 19 Jan 2005)
New Revision: 25893

Modified:
   trunk/quixote/server/mod_python_handler.py
Log:
Adjust doc to agree with mod_python_handler move.


Modified: trunk/quixote/server/mod_python_handler.py
===================================================================
--- trunk/quixote/server/mod_python_handler.py	2005-01-19 14:07:52 UTC (rev 25892)
+++ trunk/quixote/server/mod_python_handler.py	2005-01-19 14:26:25 UTC (rev 25893)
@@ -14,7 +14,7 @@
     LoadModule python_module /usr/lib/apache/1.3/mod_python.so
     <LocationMatch "^/qdemo(/|$)">
         SetHandler python-program
-        PythonHandler quixote.mod_python_handler
+        PythonHandler quixote.server.mod_python_handler
         PythonOption quixote-publisher-factory quixote.demo.create_publisher
         PythonInterpreter quixote.demo
         PythonDebug On
@@ -23,7 +23,7 @@
 This will attach URLs starting with ``/qdemo`` to the Quixote demo.
 When you use mod_python, there's no need for rewrite rules (because of
 the pattern in the ``LocationMatch`` directive), and no need for a
-driver script.
+driver script.  
 
 mod_python support was contributed to Quixote (1) by Erno Kuusela
 <[email protected]> and the Quixote 2 port comes from Clint.