[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/HTTP - HTTPRequest.py:1.1.2.19 IHTTPRequest.py:1.1.2.2
Tres Seaver
tseaver@zope.com
Tue, 12 Feb 2002 15:56:44 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/HTTP
In directory cvs.zope.org:/tmp/cvs-serv19744/Zope/Publisher/HTTP
Modified Files:
Tag: Zope-3x-branch
HTTPRequest.py IHTTPRequest.py
Log Message:
- Normalize file headers.
- Fix violations of "80 character" rule.
=== Zope3/lib/python/Zope/Publisher/HTTP/HTTPRequest.py 1.1.2.18 => 1.1.2.19 ===
+#
# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
@@ -6,9 +8,11 @@
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
+##############################################################################
+"""
-
-__version__='$Revision$'[11:-2]
+$Id$
+"""
import re, sys, os, string, time, whrandom, cgi
from urllib import quote, unquote, splittype, splitport
@@ -476,7 +480,8 @@
self.response.setStatus(401)
- # _viewtype is overridden from the BaseRequest to implement IBrowserPublisher
+ # _viewtype is overridden from the BaseRequest
+ # to implement IBrowserPublisher
_viewtype = IBrowserPublisher
=== Zope3/lib/python/Zope/Publisher/HTTP/IHTTPRequest.py 1.1.2.1 => 1.1.2.2 ===
"""
-Revision information: $Id$
+$Id$
"""