[Zope-Checkins] SVN: Zope/branches/2.11/ merge r107525 from Zope 2.10

David Glick davidglick at onenw.org
Fri Jan 1 22:36:35 EST 2010


Log message for revision 107526:
  merge r107525 from Zope 2.10

Changed:
  U   Zope/branches/2.11/doc/CHANGES.txt
  U   Zope/branches/2.11/lib/python/OFS/ObjectManager.py

-=-
Modified: Zope/branches/2.11/doc/CHANGES.txt
===================================================================
--- Zope/branches/2.11/doc/CHANGES.txt	2010-01-02 03:20:02 UTC (rev 107525)
+++ Zope/branches/2.11/doc/CHANGES.txt	2010-01-02 03:36:34 UTC (rev 107526)
@@ -8,6 +8,10 @@
 
     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.
 

Modified: Zope/branches/2.11/lib/python/OFS/ObjectManager.py
===================================================================
--- Zope/branches/2.11/lib/python/OFS/ObjectManager.py	2010-01-02 03:20:02 UTC (rev 107525)
+++ Zope/branches/2.11/lib/python/OFS/ObjectManager.py	2010-01-02 03:36:34 UTC (rev 107526)
@@ -647,6 +647,8 @@
         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):



More information about the Zope-Checkins mailing list