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
e6c2ebde
Commit
e6c2ebde
authored
Aug 02, 2001
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WebDAV Lockmanager was not working due to a Python 2.1
incompatibility.
parent
f23bdff2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
doc/CHANGES.txt
doc/CHANGES.txt
+4
-0
lib/python/App/DavLockManager.py
lib/python/App/DavLockManager.py
+2
-2
No files found.
doc/CHANGES.txt
View file @
e6c2ebde
...
...
@@ -27,6 +27,10 @@ Zope Changes
- Collector #2423: Searching a FieldIndexes for documents
with a blank string has been broken.
- WebDAV Lockmanager was not working due to a Python 2.1
incompatibility.
Zope 2.4 beta 2
Bugs fixed
...
...
lib/python/App/DavLockManager.py
View file @
e6c2ebde
...
...
@@ -83,7 +83,7 @@
#
##############################################################################
__version__
=
"$Revision: 1.
5
$"
[
11
:
-
2
]
__version__
=
"$Revision: 1.
6
$"
[
11
:
-
2
]
import
OFS
,
Acquisition
,
Globals
from
AccessControl
import
getSecurityManager
,
ClassSecurityInfo
...
...
@@ -168,7 +168,7 @@ class DavLockManager(OFS.SimpleItem.Item, Acquisition.Implicit):
for
token
,
lock
in
ob
.
wl_lockItems
():
addlockinfo
({
'owner'
:
lock
.
getCreatorPath
(),
'token'
:
token
})
addresult
(
p
,
li
)
addresult
(
(
p
,
li
)
)
dflag
=
0
if
hasattr
(
bs
,
'objectItems'
):
self
.
_findapply
(
ob
,
result
,
p
)
...
...
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