SVN: r20965 - trunk/quixote

Andrew Kuchling <akuchlin-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Wed, 05 Mar 2003 13:40:40 -0500
Newsgroups gmane.comp.web.quixote.cvs
Message-ID <[email protected]>
Author: akuchlin
Date: 2003-03-05 13:40:37 -0500 (Wed, 05 Mar 2003)
New Revision: 20965

Modified:
   trunk/quixote/__init__.py
   trunk/quixote/_py_htmltext.py
   trunk/quixote/config.py
   trunk/quixote/errors.py
   trunk/quixote/html.py
   trunk/quixote/http_request.py
   trunk/quixote/http_response.py
   trunk/quixote/mod_python_handler.py
   trunk/quixote/ptl_compile.py
   trunk/quixote/ptl_import.py
   trunk/quixote/publish.py
   trunk/quixote/qx_distutils.py
   trunk/quixote/sendmail.py
   trunk/quixote/session.py
   trunk/quixote/setup.py
   trunk/quixote/snapshot_setup.py
   trunk/quixote/upload.py
   trunk/quixote/util.py
Log:
Add HeadURL and Id

Modified: trunk/quixote/ptl_import.py
==============================================================================
--- trunk/quixote/ptl_import.py	(original)
+++ trunk/quixote/ptl_import.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.ptl_import
+$HeadURL$
+$Id$
 
 Import hooks; when installed, these hooks allow importing .ptl files
 as if they were Python modules.

Modified: trunk/quixote/qx_distutils.py
==============================================================================
--- trunk/quixote/qx_distutils.py	(original)
+++ trunk/quixote/qx_distutils.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.qx_distutils
+$HeadURL$
+$Id$
 
 Provides a version of the Distutils "build_py" command that knows about
 PTL files.

Modified: trunk/quixote/http_response.py
==============================================================================
--- trunk/quixote/http_response.py	(original)
+++ trunk/quixote/http_response.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.http_response
+$HeadURL$
+$Id$
 
 Provides the HTTPResponse class.
 

Modified: trunk/quixote/__init__.py
==============================================================================
--- trunk/quixote/__init__.py	(original)
+++ trunk/quixote/__init__.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote
+$HeadURL$
+$Id$
 
 A highly Pythonic web application framework.
 """

Modified: trunk/quixote/html.py
==============================================================================
--- trunk/quixote/html.py	(original)
+++ trunk/quixote/html.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """Various functions for dealing with HTML.
+$HeadURL$
+$Id$
 
 These functions are fairly simple but it is critical that they be
 used correctly.  Many security problems are caused by quoting errors

Modified: trunk/quixote/config.py
==============================================================================
--- trunk/quixote/config.py	(original)
+++ trunk/quixote/config.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.config
+$HeadURL$
+$Id$
 
 Quixote configuration information.  This module provides both the
 default configuration values, and some code that Quixote uses for

Modified: trunk/quixote/util.py
==============================================================================
--- trunk/quixote/util.py	(original)
+++ trunk/quixote/util.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.util
+$HeadURL$
+$Id$
 
 Contains various useful functions and classes:
 

Modified: trunk/quixote/sendmail.py
==============================================================================
--- trunk/quixote/sendmail.py	(original)
+++ trunk/quixote/sendmail.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.sendmail
+$HeadURL$
+$Id$
 
 Tools for sending mail from Quixote applications.
 """

Modified: trunk/quixote/setup.py
==============================================================================
--- trunk/quixote/setup.py	(original)
+++ trunk/quixote/setup.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+#$HeadURL$
+#$Id$
 
 # Setup script for Quixote
 

Modified: trunk/quixote/publish.py
==============================================================================
--- trunk/quixote/publish.py	(original)
+++ trunk/quixote/publish.py	2003-03-05 13:40:39.000000000 -0500
@@ -1,5 +1,6 @@
 """quixote.publish
 $HeadURL$
+$Id$
 
 Logic for publishing modules and objects on the Web.
 """

Modified: trunk/quixote/ptl_compile.py
==============================================================================
--- trunk/quixote/ptl_compile.py	(original)
+++ trunk/quixote/ptl_compile.py	2003-03-05 13:40:40.000000000 -0500
@@ -1,4 +1,6 @@
 #!/www/python/bin/python
+#$HeadURL$
+#$Id$
 
 """
 Compile a PTL template.

Modified: trunk/quixote/errors.py
==============================================================================
--- trunk/quixote/errors.py	(original)
+++ trunk/quixote/errors.py	2003-03-05 13:40:40.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.errors
+$HeadURL$
+$Id$
 
 Exception classes used by Quixote
 """

Modified: trunk/quixote/mod_python_handler.py
==============================================================================
--- trunk/quixote/mod_python_handler.py	(original)
+++ trunk/quixote/mod_python_handler.py	2003-03-05 13:40:40.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.mod_python_handler
+$HeadURL$
+$Id$
 
 mod_python handler for Quixote.  See the "mod_python configuration"
 section of doc/web-server.txt for details.

Modified: trunk/quixote/snapshot_setup.py
==============================================================================
--- trunk/quixote/snapshot_setup.py	(original)
+++ trunk/quixote/snapshot_setup.py	2003-03-05 13:40:40.000000000 -0500
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
+#$HeadURL$
+#$Id$
 
 # Setup script to throw together a datestamped Quixote snapshot.
 

Modified: trunk/quixote/_py_htmltext.py
==============================================================================
--- trunk/quixote/_py_htmltext.py	(original)
+++ trunk/quixote/_py_htmltext.py	2003-03-05 13:40:40.000000000 -0500
@@ -2,6 +2,9 @@
 TemplateIO.
 """
 
+#$HeadURL$
+#$Id$
+
 import sys
 from types import UnicodeType, TupleType, StringType, IntType, FloatType
 import re

Modified: trunk/quixote/session.py
==============================================================================
--- trunk/quixote/session.py	(original)
+++ trunk/quixote/session.py	2003-03-05 13:40:40.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.session
+$HeadURL$
+$Id$
 
 Quixote session management.  There are two levels to Quixote's
 session management system:

Modified: trunk/quixote/upload.py
==============================================================================
--- trunk/quixote/upload.py	(original)
+++ trunk/quixote/upload.py	2003-03-05 13:40:40.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.upload
+$HeadURL$
+$Id$
 
 Code for handling HTTP upload requests.  Provides HTTPUploadRequest, a
 subclass of HTTPRequest that is created when handling an HTTP request

Modified: trunk/quixote/http_request.py
==============================================================================
--- trunk/quixote/http_request.py	(original)
+++ trunk/quixote/http_request.py	2003-03-05 13:40:40.000000000 -0500
@@ -1,4 +1,6 @@
 """quixote.http_request
+$HeadURL$
+$Id$
 
 Provides the HTTPRequest class and related code for parsing HTTP
 requests, such as the FileUpload class.