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
394386e3
Commit
394386e3
authored
Sep 25, 1997
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
79e2cc7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
lib/python/OFS/ObjectManager.py
lib/python/OFS/ObjectManager.py
+7
-5
No files found.
lib/python/OFS/ObjectManager.py
View file @
394386e3
__doc__
=
"""Object Manager
$Id: ObjectManager.py,v 1.1
2 1997/09/25 15:43:35
brian Exp $"""
$Id: ObjectManager.py,v 1.1
3 1997/09/25 15:44:18
brian Exp $"""
__version__
=
'$Revision: 1.1
2
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.1
3
$'
[
11
:
-
2
]
from
SingleThreadedTransaction
import
Persistent
...
...
@@ -296,9 +296,8 @@ class ObjectManager(Acquirer,Management,Persistent):
def
manage_addProperty
(
self
,
id
,
value
,
type
,
REQUEST
):
"""Add a new property (www)"""
# try: value=type_converters[type](value)
# except: pass
value
=
type_converters
[
type
](
value
)
try
:
value
=
type_converters
[
type
](
value
)
except
:
pass
self
.
_setProperty
(
id
,
value
,
type
)
return
self
.
manage_propertiesForm
(
self
,
REQUEST
)
...
...
@@ -395,6 +394,9 @@ class ObjectManager(Acquirer,Management,Persistent):
##############################################################################
#
# $Log: ObjectManager.py,v $
# Revision 1.13 1997/09/25 15:44:18 brian
# *** empty log message ***
#
# Revision 1.12 1997/09/25 15:43:35 brian
# Added document_id, document_title
#
...
...
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