[Zope3-checkins] CVS: Zope3/src/zope/app/http - delete.py:1.3 traversal.py:1.4
Sidnei da Silva
sidnei@x3ng.com.br
Mon, 23 Jun 2003 13:17:35 -0400
Update of /cvs-repository/Zope3/src/zope/app/http
In directory cvs.zope.org:/tmp/cvs-serv14183/src/zope/app/http
Modified Files:
delete.py traversal.py
Log Message:
1. Whitespace cleanup. 2. Docstring fixing. 3. Modified DAV code and tests to append '/' to the path if the last element is 'dir-like'. 4. Support for MKCOL with tests + functional tests. 5. Refactored DAV functional tests into a base class for reusing
=== Zope3/src/zope/app/http/delete.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/http/delete.py:1.2 Tue May 27 10:18:15 2003
+++ Zope3/src/zope/app/http/delete.py Mon Jun 23 13:17:04 2003
@@ -1,7 +1,7 @@
##############################################################################
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
-#
+#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
@@ -49,4 +49,4 @@
return ''
-
+
=== Zope3/src/zope/app/http/traversal.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/http/traversal.py:1.3 Fri Jun 6 16:55:09 2003
+++ Zope3/src/zope/app/http/traversal.py Mon Jun 23 13:17:04 2003
@@ -1,7 +1,7 @@
##############################################################################
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
-#
+#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
@@ -27,6 +27,7 @@
class ContainerTraverser:
implements(IPublishTraverse)
+
__used_for__ = ISimpleReadContainer
def __init__(self, container, request):