SVN: r25594 - trunk/quixote/doc

David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Mon, 15 Nov 2004 09:58:35 -0500
Newsgroups gmane.comp.web.quixote.cvs
Message-ID <[email protected]>
Author: dbinger
Date: 2004-11-15 09:39:06 -0500 (Mon, 15 Nov 2004)
New Revision: 25594

Modified:
   trunk/quixote/doc/programming.txt
Log:
Remove reference to RUN_ONCE.


Modified: trunk/quixote/doc/programming.txt
===================================================================
--- trunk/quixote/doc/programming.txt	2004-11-15 14:32:21 UTC (rev 25593)
+++ trunk/quixote/doc/programming.txt	2004-11-15 14:39:06 UTC (rev 25594)
@@ -154,11 +154,9 @@
     if web_mode == "DEVEL":
         DISPLAY_EXCEPTIONS = 1
         SECURE_ERRORS = 0
-        RUN_ONCE = 1
     elif web_mode in ("STAGING", "LIVE"):
         DISPLAY_EXCEPTIONS = 0
         SECURE_ERRORS = 1
-        RUN_ONCE = 0
     else:
         raise RuntimeError, "unknown server mode: %s" % web_mode