[Zope-Checkins] CVS: Zope/lib/python/webdav - Collection.py:1.27 Lockable.py:1.10 NullResource.py:1.41 Resource.py:1.60 client.py:1.22

Stefane Fermigier sf at fermigier.com
Sun Mar 21 11:39:59 EST 2004


Update of /cvs-repository/Zope/lib/python/webdav
In directory cvs.zope.org:/tmp/cvs-serv13090

Modified Files:
	Collection.py Lockable.py NullResource.py Resource.py 
	client.py 
Log Message:
Remove useless imports.



=== Zope/lib/python/webdav/Collection.py 1.26 => 1.27 ===
--- Zope/lib/python/webdav/Collection.py:1.26	Tue Nov 18 08:17:20 2003
+++ Zope/lib/python/webdav/Collection.py	Sun Mar 21 11:39:58 2004
@@ -15,12 +15,11 @@
 
 __version__='$Revision$'[11:-2]
 
-import sys, os,  Globals, davcmds, Lockable,re
+import Globals, davcmds, Lockable
 from common import urlfix, rfc1123_date
 from Resource import Resource
 from AccessControl import getSecurityManager
 from urllib import unquote
-from WriteLockInterface import WriteLockInterface
 from zExceptions import MethodNotAllowed, NotFound
 from webdav.common import Locked, PreconditionFailed
 


=== Zope/lib/python/webdav/Lockable.py 1.9 => 1.10 ===
--- Zope/lib/python/webdav/Lockable.py:1.9	Fri Nov 28 11:46:51 2003
+++ Zope/lib/python/webdav/Lockable.py	Sun Mar 21 11:39:58 2004
@@ -15,7 +15,6 @@
 
 from WriteLockInterface import WriteLockInterface, LockItemInterface
 from EtagSupport import EtagSupport
-from LockItem import LockItem
 from AccessControl import ClassSecurityInfo
 from Globals import PersistentMapping
 import Acquisition


=== Zope/lib/python/webdav/NullResource.py 1.40 => 1.41 ===
--- Zope/lib/python/webdav/NullResource.py:1.40	Tue Nov 18 08:17:20 2003
+++ Zope/lib/python/webdav/NullResource.py	Sun Mar 21 11:39:58 2004
@@ -15,10 +15,9 @@
 
 __version__='$Revision$'[11:-2]
 
-import sys, os,  mimetypes, Globals, davcmds
+import sys, Globals, davcmds
 import Acquisition, OFS.content_types
-from common import absattr, aq_base, urlfix, tokenFinder, IfParser
-from AccessControl.Permission import Permission
+from common import aq_base, tokenFinder, IfParser
 from AccessControl import getSecurityManager
 from Resource import Resource
 from Globals import Persistent, DTMLFile


=== Zope/lib/python/webdav/Resource.py 1.59 => 1.60 ===
--- Zope/lib/python/webdav/Resource.py:1.59	Fri Dec 26 19:05:48 2003
+++ Zope/lib/python/webdav/Resource.py	Sun Mar 21 11:39:58 2004
@@ -18,8 +18,7 @@
 
 import sys
 import mimetypes
-import time
-from urllib import quote, unquote
+from urllib import unquote
 
 import Globals
 import ExtensionClass


=== Zope/lib/python/webdav/client.py 1.21 => 1.22 ===
--- Zope/lib/python/webdav/client.py:1.21	Tue Nov 18 08:17:20 2003
+++ Zope/lib/python/webdav/client.py	Sun Mar 21 11:39:58 2004
@@ -3,7 +3,7 @@
 __version__='$Revision$'[11:-2]
 
 import sys, os,  time, types,re
-import socket, httplib, mimetools
+import httplib, mimetools
 from types import FileType
 from mimetypes import guess_type
 from base64 import encodestring




More information about the Zope-Checkins mailing list