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
d58beaf2
Commit
d58beaf2
authored
Nov 21, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed __getitem__ to only return a PUTer in case of a PUT message.
parent
bf36cf46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
lib/python/OFS/Folder.py
lib/python/OFS/Folder.py
+7
-4
No files found.
lib/python/OFS/Folder.py
View file @
d58beaf2
"""Folder object
$Id: Folder.py,v 1.
19 1997/11/11 21:25:28 brian
Exp $"""
$Id: Folder.py,v 1.
20 1997/11/21 15:49:48 jim
Exp $"""
__version__
=
'$Revision: 1.
19
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
20
$'
[
11
:
-
2
]
from
Globals
import
HTMLFile
...
...
@@ -119,8 +119,11 @@ class Folder(ObjectManager,RoleManager,DocumentHandler,
if
hasattr
(
self
,
id
):
return
getattr
(
self
,
id
).
manage_supervisor
()
raise
KeyError
,
key
r
=
PUTer
(
self
,
key
)
return
r
try
:
if
self
.
REQUEST
[
'REQUEST_METHOD'
]
==
'PUT'
:
return
PUTer
(
self
,
key
)
except
:
pass
raise
KeyError
,
key
class
PUTer
:
'Temporary objects to handle PUT to non-existent images or documents'
...
...
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