Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
26acb6f3
Commit
26acb6f3
authored
Mar 21, 2004
by
Stephane Fermingier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless imports.
parent
b45533bb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
14 deletions
+10
-14
lib/python/webdav/Collection.py
lib/python/webdav/Collection.py
+2
-3
lib/python/webdav/Lockable.py
lib/python/webdav/Lockable.py
+1
-2
lib/python/webdav/NullResource.py
lib/python/webdav/NullResource.py
+3
-4
lib/python/webdav/Resource.py
lib/python/webdav/Resource.py
+2
-3
lib/python/webdav/client.py
lib/python/webdav/client.py
+2
-2
No files found.
lib/python/webdav/Collection.py
View file @
26acb6f3
...
@@ -13,14 +13,13 @@
...
@@ -13,14 +13,13 @@
"""WebDAV support - collection objects."""
"""WebDAV support - collection objects."""
__version__
=
'$Revision: 1.2
6
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.2
7
$'
[
11
:
-
2
]
import
sys
,
os
,
Globals
,
davcmds
,
Lockable
,
r
e
import
Globals
,
davcmds
,
Lockabl
e
from
common
import
urlfix
,
rfc1123_date
from
common
import
urlfix
,
rfc1123_date
from
Resource
import
Resource
from
Resource
import
Resource
from
AccessControl
import
getSecurityManager
from
AccessControl
import
getSecurityManager
from
urllib
import
unquote
from
urllib
import
unquote
from
WriteLockInterface
import
WriteLockInterface
from
zExceptions
import
MethodNotAllowed
,
NotFound
from
zExceptions
import
MethodNotAllowed
,
NotFound
from
webdav.common
import
Locked
,
PreconditionFailed
from
webdav.common
import
Locked
,
PreconditionFailed
...
...
lib/python/webdav/Lockable.py
View file @
26acb6f3
...
@@ -11,11 +11,10 @@
...
@@ -11,11 +11,10 @@
#
#
##############################################################################
##############################################################################
__version__
=
"$Revision: 1.
9
$"
[
11
:
-
2
]
__version__
=
"$Revision: 1.
10
$"
[
11
:
-
2
]
from
WriteLockInterface
import
WriteLockInterface
,
LockItemInterface
from
WriteLockInterface
import
WriteLockInterface
,
LockItemInterface
from
EtagSupport
import
EtagSupport
from
EtagSupport
import
EtagSupport
from
LockItem
import
LockItem
from
AccessControl
import
ClassSecurityInfo
from
AccessControl
import
ClassSecurityInfo
from
Globals
import
PersistentMapping
from
Globals
import
PersistentMapping
import
Acquisition
import
Acquisition
...
...
lib/python/webdav/NullResource.py
View file @
26acb6f3
...
@@ -13,12 +13,11 @@
...
@@ -13,12 +13,11 @@
"""WebDAV support - null resource objects."""
"""WebDAV support - null resource objects."""
__version__
=
'$Revision: 1.4
0
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.4
1
$'
[
11
:
-
2
]
import
sys
,
os
,
mimetypes
,
Globals
,
davcmds
import
sys
,
Globals
,
davcmds
import
Acquisition
,
OFS
.
content_types
import
Acquisition
,
OFS
.
content_types
from
common
import
absattr
,
aq_base
,
urlfix
,
tokenFinder
,
IfParser
from
common
import
aq_base
,
tokenFinder
,
IfParser
from
AccessControl.Permission
import
Permission
from
AccessControl
import
getSecurityManager
from
AccessControl
import
getSecurityManager
from
Resource
import
Resource
from
Resource
import
Resource
from
Globals
import
Persistent
,
DTMLFile
from
Globals
import
Persistent
,
DTMLFile
...
...
lib/python/webdav/Resource.py
View file @
26acb6f3
...
@@ -13,13 +13,12 @@
...
@@ -13,13 +13,12 @@
"""WebDAV support - resource objects.
"""WebDAV support - resource objects.
$Id: Resource.py,v 1.
59 2003/12/27 00:05:48 jeremy
Exp $
$Id: Resource.py,v 1.
60 2004/03/21 16:39:58 sf
Exp $
"""
"""
import
sys
import
sys
import
mimetypes
import
mimetypes
import
time
from
urllib
import
unquote
from
urllib
import
quote
,
unquote
import
Globals
import
Globals
import
ExtensionClass
import
ExtensionClass
...
...
lib/python/webdav/client.py
View file @
26acb6f3
"""HTTP 1.1 / WebDAV client library."""
"""HTTP 1.1 / WebDAV client library."""
__version__
=
'$Revision: 1.2
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.2
2
$'
[
11
:
-
2
]
import
sys
,
os
,
time
,
types
,
re
import
sys
,
os
,
time
,
types
,
re
import
socket
,
httplib
,
mimetools
import
httplib
,
mimetools
from
types
import
FileType
from
types
import
FileType
from
mimetypes
import
guess_type
from
mimetypes
import
guess_type
from
base64
import
encodestring
from
base64
import
encodestring
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment