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
986cdeca
Commit
986cdeca
authored
Jul 15, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed bind to require getting the object passed in.
parent
f1f2ebcc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
11 deletions
+2
-11
lib/python/OFS/Moniker.py
lib/python/OFS/Moniker.py
+2
-11
No files found.
lib/python/OFS/Moniker.py
View file @
986cdeca
...
...
@@ -90,7 +90,7 @@
and aquisition relationships via a simple interface.
"""
__version__
=
'$Revision: 1.1
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.1
2
$'
[
11
:
-
2
]
import
Globals
...
...
@@ -120,17 +120,8 @@ class Moniker:
def
mtype
(
self
):
return
absattr
(
self
.
bind
().
meta_type
)
def
bind
(
self
):
def
bind
(
self
,
jar
):
"Return the real object named by this moniker"
if
hasattr
(
Globals
,
'VersionBase'
):
# BoboPOS 2
if
not
self
.
jar
:
jar
=
Globals
.
Bobobase
.
_jar
else
:
jar
=
Globals
.
VersionBase
[
self
.
jar
].
jar
else
:
# ZODB 3 Problem, we make have more than one database! Waaa
jar
=
Globals
.
DB
.
open
(
transaction
=
get_transaction
(),
version
=
self
.
jar
or
''
,
temporary
=
1
)
ob
=
None
for
n
in
self
.
ids
:
o
=
jar
[
n
]
...
...
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