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
5b7e11cb
Commit
5b7e11cb
authored
Jan 02, 2010
by
David Glick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
look for ZEXP imports in the clienthome dir too
parent
15f389dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
doc/CHANGES.txt
doc/CHANGES.txt
+4
-0
lib/python/OFS/ObjectManager.py
lib/python/OFS/ObjectManager.py
+2
-0
No files found.
doc/CHANGES.txt
View file @
5b7e11cb
...
...
@@ -8,6 +8,10 @@ Zope Changes
Bugs fixed
- Also look for ZEXP imports within the clienthome directory. This
provides a place to put imports that won't be clobbered by buildout
in a buildout-based Zope instance.
- LP #143444: add labels to checkboxes / radio buttons on
import / export form.
...
...
lib/python/OFS/ObjectManager.py
View file @
5b7e11cb
...
...
@@ -642,6 +642,8 @@ class ObjectManager(
paths
=
[
cfg
.
zopehome
]
if
not
cfg
.
instancehome
in
paths
:
paths
.
append
(
cfg
.
instancehome
)
if
not
cfg
.
clienthome
in
paths
:
paths
.
append
(
cfg
.
clienthome
)
for
impath
in
paths
:
directory
=
os
.
path
.
join
(
impath
,
'import'
)
if
not
os
.
path
.
isdir
(
directory
):
...
...
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