[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher - BaseRequest.py:1.1.2.22
Tres Seaver
tseaver@zope.com
Tue, 12 Feb 2002 15:56:42 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher
In directory cvs.zope.org:/tmp/cvs-serv19744/Zope/Publisher
Modified Files:
Tag: Zope-3x-branch
BaseRequest.py
Log Message:
- Normalize file headers.
- Fix violations of "80 character" rule.
=== Zope3/lib/python/Zope/Publisher/BaseRequest.py 1.1.2.21 => 1.1.2.22 ===
+#
# 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$
+"""
from urllib import quote
from cgi import escape
@@ -262,7 +266,7 @@
else:
# Build up the URL to the object, but not
# to the default traversal.
- self.URL = '%s/%s' % (self.URL, qstep)
+ self.URL = '%s/%s' % (self.URL, qstep)
subobject = publication.traverseName(
self, object, entry_name)
object = subobject