[Zope-Checkins] Re: [Checkins] SVN: Products.Five/trunk/ Now you can use the old registry with the new API for registerig components.

2006-07-28 Thread Florent Guillaume
Indeed :) On 29 Jul 2006, at 00:39, Benji York wrote: Florent Guillaume wrote: On 27 Jul 2006, at 16:15, Lennart Regebro wrote: Modified: Products.Five/trunk/site/localsite.py === --- Products.Five/trunk/site/localsite.py 2006

[Zope-Checkins] Re: [Checkins] SVN: Products.Five/trunk/ Now you can use the old registry with the new API for registerig components.

2006-07-28 Thread Florent Guillaume
+# 1 1 0: 0 +# 1 1 1: 0 +return xor(xor(a, b), c) and not (a and b and c) Heh, boolean algebra is nice but sometimes integers convey the meaning much better: return int(a)+int(b)+int(c) == 1 Florent -- Florent Guillaume, Nuxeo (Paris, France) Director of R&D +33 1

[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/Traversable.py Code cleanup.

2006-07-06 Thread Florent Guillaume
Log message for revision 69005: Code cleanup. Changed: U Zope/trunk/lib/python/OFS/Traversable.py -=- Modified: Zope/trunk/lib/python/OFS/Traversable.py === --- Zope/trunk/lib/python/OFS/Traversable.py2006-07-06 14:24:13 UT

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/OFS/Traversable.py Code cleanup.

2006-07-06 Thread Florent Guillaume
Log message for revision 69004: Code cleanup. Changed: U Zope/branches/2.10/lib/python/OFS/Traversable.py -=- Modified: Zope/branches/2.10/lib/python/OFS/Traversable.py === --- Zope/branches/2.10/lib/python/OFS/Traversable.p

[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/Traversable.py Merged 69002 from 2.10 branch:

2006-07-06 Thread Florent Guillaume
Log message for revision 69003: Merged 69002 from 2.10 branch: Correct view traversal security checks Changed: U Zope/trunk/lib/python/OFS/Traversable.py -=- Modified: Zope/trunk/lib/python/OFS/Traversable.py === --- Zop

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/OFS/Traversable.py Correct view traversal security checks

2006-07-06 Thread Florent Guillaume
Log message for revision 69002: Correct view traversal security checks Changed: U Zope/branches/2.10/lib/python/OFS/Traversable.py -=- Modified: Zope/branches/2.10/lib/python/OFS/Traversable.py === --- Zope/branches/2.10/lib/py

[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/ Merged r68980 from 2.10 branch:

2006-07-05 Thread Florent Guillaume
Log message for revision 68981: Merged r68980 from 2.10 branch: Fixed refactored traversal on bound methods of classes with no default access. Changed: U Zope/trunk/lib/python/OFS/Traversable.py U Zope/trunk/lib/python/OFS/tests/testTraverse.py -=- Modified: Zope/trunk/lib/python

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/OFS/ Fixed refactored traversal on bound methods of classes with no default

2006-07-05 Thread Florent Guillaume
Log message for revision 68980: Fixed refactored traversal on bound methods of classes with no default access. Changed: U Zope/branches/2.10/lib/python/OFS/Traversable.py U Zope/branches/2.10/lib/python/OFS/tests/testTraverse.py -=- Modified: Zope/branches/2.10/lib/python/OFS/Trave

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/PageTemplates/ Merged r68461 from 2.10 branch:

2006-06-02 Thread Florent Guillaume
Log message for revision 68462: Merged r68461 from 2.10 branch: Empty TALES path expressions are allowed in Zope 2. http://www.zope.org/Collectors/Zope/2118 Changed: U Zope/trunk/lib/python/Products/PageTemplates/Expressions.py U Zope/trunk/lib/python/Products/PageTemplates/te

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/PageTemplates/ Empty TALES path expressions are allowed in Zope 2.

2006-06-02 Thread Florent Guillaume
Log message for revision 68461: Empty TALES path expressions are allowed in Zope 2. http://www.zope.org/Collectors/Zope/2118 Changed: U Zope/branches/2.10/lib/python/Products/PageTemplates/Expressions.py U Zope/branches/2.10/lib/python/Products/PageTemplates/tests/testExpressions.p

[Zope-Checkins] SVN: Zope/branches/2.10/doc/CHANGES.txt Sync formatting with trunk.

2006-06-02 Thread Florent Guillaume
Log message for revision 68460: Sync formatting with trunk. Changed: U Zope/branches/2.10/doc/CHANGES.txt -=- Modified: Zope/branches/2.10/doc/CHANGES.txt === --- Zope/branches/2.10/doc/CHANGES.txt 2006-06-02 14:34:52 UTC (

[Zope-Checkins] SVN: Zope/trunk/ Acquisition wrappers now correctly proxy __contains__.

2006-06-02 Thread Florent Guillaume
Log message for revision 68459: Acquisition wrappers now correctly proxy __contains__. Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/Acquisition/_Acquisition.c U Zope/trunk/lib/python/Acquisition/tests.py -=- Modified: Zope/trunk/doc/CHANGES.txt ===

[Zope-Checkins] SVN: Zope/branches/2.10/ Acquisition wrappers now correctly proxy __contains__.

2006-06-02 Thread Florent Guillaume
Log message for revision 68458: Acquisition wrappers now correctly proxy __contains__. Changed: U Zope/branches/2.10/doc/CHANGES.txt U Zope/branches/2.10/lib/python/Acquisition/_Acquisition.c U Zope/branches/2.10/lib/python/Acquisition/tests.py -=- Modified: Zope/branches/2.10

[Zope-Checkins] SVN: Zope/trunk/lib/python/AccessControl/ImplPython.py Use isinstance, like the C implementation.

2006-06-01 Thread Florent Guillaume
Log message for revision 68449: Use isinstance, like the C implementation. Changed: U Zope/trunk/lib/python/AccessControl/ImplPython.py -=- Modified: Zope/trunk/lib/python/AccessControl/ImplPython.py === --- Zope/trunk/lib/p

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/AccessControl/ImplPython.py Use isinstance, like the C implementation.

2006-06-01 Thread Florent Guillaume
Log message for revision 68448: Use isinstance, like the C implementation. Changed: U Zope/branches/2.10/lib/python/AccessControl/ImplPython.py -=- Modified: Zope/branches/2.10/lib/python/AccessControl/ImplPython.py === ---

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/AccessControl/ Make python security policy work with a boolean __aatus__

2006-06-01 Thread Florent Guillaume
Log message for revision 68447: Make python security policy work with a boolean __aatus__ Changed: U Zope/branches/2.9/lib/python/AccessControl/ImplPython.py U Zope/branches/2.9/lib/python/AccessControl/tests/testZopeSecurityPolicy.py -=- Modified: Zope/branches/2.9/lib/python/AccessCon

[Zope-Checkins] SVN: Zope/trunk/lib/python/AccessControl/ Make python security policy work with a boolean __aatus__

2006-06-01 Thread Florent Guillaume
Log message for revision 68446: Make python security policy work with a boolean __aatus__ Changed: U Zope/trunk/lib/python/AccessControl/ImplPython.py U Zope/trunk/lib/python/AccessControl/tests/testZopeSecurityPolicy.py -=- Modified: Zope/trunk/lib/python/AccessControl/ImplPython.py ==

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/PageTemplates/Expressions.py Revert unwanted checkin.

2006-06-01 Thread Florent Guillaume
Log message for revision 68445: Revert unwanted checkin. Changed: U Zope/branches/2.10/lib/python/Products/PageTemplates/Expressions.py -=- Modified: Zope/branches/2.10/lib/python/Products/PageTemplates/Expressions.py === --

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/ Make python security policy work with a boolean __aatus__

2006-06-01 Thread Florent Guillaume
Log message for revision 68444: Make python security policy work with a boolean __aatus__ Changed: U Zope/branches/2.10/lib/python/AccessControl/ImplPython.py U Zope/branches/2.10/lib/python/AccessControl/tests/testZopeSecurityPolicy.py U Zope/branches/2.10/lib/python/Products/PageT

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZGadflyDA/__init__.py Don't warn when the ZGadflyDA is imported by Zope startup code.

2006-06-01 Thread Florent Guillaume
Log message for revision 68441: Don't warn when the ZGadflyDA is imported by Zope startup code. Changed: U Zope/trunk/lib/python/Products/ZGadflyDA/__init__.py -=- Modified: Zope/trunk/lib/python/Products/ZGadflyDA/__init__.py

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/ZGadflyDA/__init__.py Don't warn when the ZGadflyDA is imported by Zope startup code.

2006-06-01 Thread Florent Guillaume
Log message for revision 68440: Don't warn when the ZGadflyDA is imported by Zope startup code. Changed: U Zope/branches/2.10/lib/python/Products/ZGadflyDA/__init__.py -=- Modified: Zope/branches/2.10/lib/python/Products/ZGadflyDA/__init__.py =

[Zope-Checkins] SVN: Zope/trunk/lib/python/App/Product.py Removed a warning at Zope startup.

2006-06-01 Thread Florent Guillaume
Log message for revision 68439: Removed a warning at Zope startup. Changed: U Zope/trunk/lib/python/App/Product.py -=- Modified: Zope/trunk/lib/python/App/Product.py === --- Zope/trunk/lib/python/App/Product.py2006-06-0

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/App/Product.py Removed a warning at Zope startup.

2006-06-01 Thread Florent Guillaume
Log message for revision 68438: Removed a warning at Zope startup. Changed: U Zope/branches/2.10/lib/python/App/Product.py -=- Modified: Zope/branches/2.10/lib/python/App/Product.py === --- Zope/branches/2.10/lib/python/App/

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/PluginIndexes/__init__.py More robust.

2006-06-01 Thread Florent Guillaume
Log message for revision 68437: More robust. Changed: U Zope/trunk/lib/python/Products/PluginIndexes/__init__.py -=- Modified: Zope/trunk/lib/python/Products/PluginIndexes/__init__.py === --- Zope/trunk/lib/python/Products/Plug

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/PluginIndexes/__init__.py More robust.

2006-06-01 Thread Florent Guillaume
Log message for revision 68436: More robust. Changed: U Zope/branches/2.10/lib/python/Products/PluginIndexes/__init__.py -=- Modified: Zope/branches/2.10/lib/python/Products/PluginIndexes/__init__.py === --- Zope/branches/2.

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZCatalog/__init__.py More robust.

2006-06-01 Thread Florent Guillaume
Log message for revision 68435: More robust. Changed: U Zope/trunk/lib/python/Products/ZCatalog/__init__.py -=- Modified: Zope/trunk/lib/python/Products/ZCatalog/__init__.py === --- Zope/trunk/lib/python/Products/ZCatalog/__ini

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/ZCatalog/__init__.py More robust.

2006-06-01 Thread Florent Guillaume
Log message for revision 68434: More robust. Changed: U Zope/branches/2.10/lib/python/Products/ZCatalog/__init__.py -=- Modified: Zope/branches/2.10/lib/python/Products/ZCatalog/__init__.py === --- Zope/branches/2.10/lib/pyt

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZCatalog/__init__.py Removed a warning at Zope startup.

2006-06-01 Thread Florent Guillaume
Log message for revision 68433: Removed a warning at Zope startup. Changed: U Zope/trunk/lib/python/Products/ZCatalog/__init__.py -=- Modified: Zope/trunk/lib/python/Products/ZCatalog/__init__.py === --- Zope/trunk/lib/python/P

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/ZCatalog/__init__.py Removed a warning at Zope startup.

2006-06-01 Thread Florent Guillaume
Log message for revision 68432: Removed a warning at Zope startup. Changed: U Zope/branches/2.10/lib/python/Products/ZCatalog/__init__.py -=- Modified: Zope/branches/2.10/lib/python/Products/ZCatalog/__init__.py === --- Zope

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/PluginIndexes/__init__.py Removed a warning at Zope startup.

2006-06-01 Thread Florent Guillaume
Log message for revision 68431: Removed a warning at Zope startup. Changed: U Zope/trunk/lib/python/Products/PluginIndexes/__init__.py -=- Modified: Zope/trunk/lib/python/Products/PluginIndexes/__init__.py === --- Zope/trunk/li

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/PluginIndexes/__init__.py Removed a warning at Zope startup.

2006-06-01 Thread Florent Guillaume
Log message for revision 68430: Removed a warning at Zope startup. Changed: U Zope/branches/2.10/lib/python/Products/PluginIndexes/__init__.py -=- Modified: Zope/branches/2.10/lib/python/Products/PluginIndexes/__init__.py ==

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZCatalog/ZCatalog.py Merged r68427 from 2.10 branch:

2006-06-01 Thread Florent Guillaume
Log message for revision 68428: Merged r68427 from 2.10 branch: Removed a warning at Zope startup. Changed: U Zope/trunk/lib/python/Products/ZCatalog/ZCatalog.py -=- Modified: Zope/trunk/lib/python/Products/ZCatalog/ZCatalog.py ===

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/ZCatalog/ZCatalog.py Removed a warning at Zope startup.

2006-06-01 Thread Florent Guillaume
Log message for revision 68427: Removed a warning at Zope startup. Changed: U Zope/branches/2.10/lib/python/Products/ZCatalog/ZCatalog.py -=- Modified: Zope/branches/2.10/lib/python/Products/ZCatalog/ZCatalog.py === --- Zope

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/PageTemplates/PageTemplateFile.py Merged r68414 from 2.10 branch:

2006-05-31 Thread Florent Guillaume
Log message for revision 68415: Merged r68414 from 2.10 branch: There must be no warning when __name__ is supplied. Changed: U Zope/trunk/lib/python/Products/PageTemplates/PageTemplateFile.py -=- Modified: Zope/trunk/lib/python/Products/PageTemplates/PageTemplateFile.py ===

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/PageTemplates/PageTemplateFile.py There must be no warning when __name__ is supplied.

2006-05-31 Thread Florent Guillaume
Log message for revision 68414: There must be no warning when __name__ is supplied. Changed: U Zope/branches/2.10/lib/python/Products/PageTemplates/PageTemplateFile.py -=- Modified: Zope/branches/2.10/lib/python/Products/PageTemplates/PageTemplateFile.py ===

[Zope-Checkins] SVN: Zope/trunk/lib/python/ZClasses/ZClass.txt Fix temp_folder mounting problem.

2006-01-16 Thread Florent Guillaume
Log message for revision 41328: Fix temp_folder mounting problem. Othere tests don't pass though, maybe I think due to __implemented__ and __provides__ attributes in the persistentclass state. Changed: U Zope/trunk/lib/python/ZClasses/ZClass.txt -=- Modified: Zope/trunk/lib/python

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/ZClasses/ZClass.txt Fix temp_folder mounting problem.

2006-01-16 Thread Florent Guillaume
Log message for revision 41327: Fix temp_folder mounting problem. Othere tests don't pass though, maybe I think due to __implemented__ and __provides__ attributes in the persistentclass state. Changed: U Zope/branches/2.9/lib/python/ZClasses/ZClass.txt -=- Modified: Zope/branches/

[Zope-Checkins] SVN: Zope/trunk/lib/python/Zope2/App/startup.py Fix for the cases where test.py is run without a configuration file.

2006-01-16 Thread Florent Guillaume
Log message for revision 41322: Fix for the cases where test.py is run without a configuration file. Changed: U Zope/trunk/lib/python/Zope2/App/startup.py -=- Modified: Zope/trunk/lib/python/Zope2/App/startup.py === --- Zope

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Zope2/App/startup.py Fix for the cases where test.py is run without a configuration file.

2006-01-16 Thread Florent Guillaume
Log message for revision 41321: Fix for the cases where test.py is run without a configuration file. Changed: U Zope/branches/2.9/lib/python/Zope2/App/startup.py -=- Modified: Zope/branches/2.9/lib/python/Zope2/App/startup.py ==

[Zope-Checkins] SVN: Zope/trunk/lib/python/Zope2/App/startup.py Merged 41303 from 2.9 branch:

2006-01-13 Thread Florent Guillaume
Log message for revision 41304: Merged 41303 from 2.9 branch: When a database is created "by hand" from a custom_zodb.py during startup, we still want to put it in the dbtab multidatabases dict. This happens when unit tests call Zope2.startup(), because Testing has a specific custom

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Zope2/App/startup.py When a database is created "by hand" from a custom_zodb.py during

2006-01-13 Thread Florent Guillaume
Log message for revision 41303: When a database is created "by hand" from a custom_zodb.py during startup, we still want to put it in the dbtab multidatabases dict. This happens when unit tests call Zope2.startup(), because Testing has a specific custom_zodb.py loaded at startup that use

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZODBMountPoint/ Fixed mounting problem described in

2006-01-09 Thread Florent Guillaume
Log message for revision 41242: Fixed mounting problem described in http://mail.zope.org/pipermail/zodb-dev/2005-December/009662.html Basic symptom was lots of conflict in sessions. Unit test included. Changed: U Zope/trunk/lib/python/Products/ZODBMountPoint/MountedObject.py U Z

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Products/ZODBMountPoint/ Cleaner fix (end result is the same as previous patch though).

2006-01-09 Thread Florent Guillaume
Log message for revision 41241: Cleaner fix (end result is the same as previous patch though). See http://mail.zope.org/pipermail/zodb-dev/2005-December/009662.html for a fuller problem description. Unit test included. Changed: U Zope/branches/2.9/lib/python/Products/ZODBMountPoi

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/Five/ Sync with Five 1.3 r21753:

2006-01-06 Thread Florent Guillaume
Log message for revision 41170: Sync with Five 1.3 r21753: r21753 | efge | 2006-01-06 18:58:06 +0100 (Fri, 06 Jan 2006) Fix cleanup of five:traversable. r21752 | regebro | 2006-01-06 18:51:19 +0100 (Fri, 06 Jan 2006) If one class was set to have a localsite hook twice, removing the

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Products/Five/ Sync with Five 1.3 r21753:

2006-01-06 Thread Florent Guillaume
Log message for revision 41169: Sync with Five 1.3 r21753: r21753 | efge | 2006-01-06 18:58:06 +0100 (Fri, 06 Jan 2006) Fix cleanup of five:traversable. r21752 | regebro | 2006-01-06 18:51:19 +0100 (Fri, 06 Jan 2006) If one class was set to have a localsite hook twice, removing the

[Zope-Checkins] SVN: Zope/branches/2.9/ Fixed ConflictError when using sessions.

2006-01-05 Thread Florent Guillaume
Log message for revision 41152: Fixed ConflictError when using sessions. Changed: U Zope/branches/2.9/doc/CHANGES.txt U Zope/branches/2.9/lib/python/Products/ZODBMountPoint/MountedObject.py -=- Modified: Zope/branches/2.9/doc/CHANGES.txt =

[Zope-Checkins] SVN: Zope/trunk/lib/python/ZPublisher/HTTPRequest.py Harden REQUEST __repr__.

2005-12-22 Thread Florent Guillaume
Log message for revision 40986: Harden REQUEST __repr__. Changed: U Zope/trunk/lib/python/ZPublisher/HTTPRequest.py -=- Modified: Zope/trunk/lib/python/ZPublisher/HTTPRequest.py === --- Zope/trunk/lib/python/ZPublisher/HTTPR

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/ZPublisher/HTTPRequest.py Harden REQUEST __repr__.

2005-12-22 Thread Florent Guillaume
Log message for revision 40985: Harden REQUEST __repr__. Changed: U Zope/branches/2.9/lib/python/ZPublisher/HTTPRequest.py -=- Modified: Zope/branches/2.9/lib/python/ZPublisher/HTTPRequest.py === --- Zope/branches/2.9/lib/py

[Zope-Checkins] SVN: Zope/trunk/lib/python/zope/ Switched to a more recent testrunner.

2005-12-21 Thread Florent Guillaume
Log message for revision 40944: Switched to a more recent testrunner. Changed: _U Zope/trunk/lib/python/zope/ -=- Property changes on: Zope/trunk/lib/python/zope ___ Name: svn:externals - app -r 40688 svn://svn

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/zope/ Switched to a more recent testrunner.

2005-12-21 Thread Florent Guillaume
Log message for revision 40943: Switched to a more recent testrunner. Changed: _U Zope/branches/2.9/lib/python/zope/ -=- Property changes on: Zope/branches/2.9/lib/python/zope ___ Name: svn:externals - app svn

[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/CopySupport.py Forgotten import.

2005-12-20 Thread Florent Guillaume
Log message for revision 40929: Forgotten import. Changed: U Zope/trunk/lib/python/OFS/CopySupport.py -=- Modified: Zope/trunk/lib/python/OFS/CopySupport.py === --- Zope/trunk/lib/python/OFS/CopySupport.py2005-12-21 00:0

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/OFS/CopySupport.py Forgotten import.

2005-12-20 Thread Florent Guillaume
Log message for revision 40928: Forgotten import. Changed: U Zope/branches/2.9/lib/python/OFS/CopySupport.py -=- Modified: Zope/branches/2.9/lib/python/OFS/CopySupport.py === --- Zope/branches/2.9/lib/python/OFS/CopySupport.py

[Zope-Checkins] SVN: Zope/trunk/ Merged r40864 from 2.9 branch:

2005-12-18 Thread Florent Guillaume
Log message for revision 40865: Merged r40864 from 2.9 branch: Added a 'conflict-error-log-level' directive to zope.conf, to set the level at which conflict errors (which are normally retried automatically) are logged. The default is 'info'. This doesn't interfere with the error_log si

[Zope-Checkins] SVN: Zope/branches/2.9/ Added a 'conflict-error-log-level' directive to zope.conf, to set the

2005-12-18 Thread Florent Guillaume
Log message for revision 40864: Added a 'conflict-error-log-level' directive to zope.conf, to set the level at which conflict errors (which are normally retried automatically) are logged. The default is 'info'. This doesn't interfere with the error_log site object which copies non-retr

[Zope-Checkins] SVN: Zope/trunk/ The SiteErrorLog now copies exceptions to the event log by default

2005-12-13 Thread Florent Guillaume
Log message for revision 40766: The SiteErrorLog now copies exceptions to the event log by default Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/Products/SiteErrorLog/SiteErrorLog.py -=- Modified: Zope/trunk/doc/CHANGES.txt ===

[Zope-Checkins] SVN: Zope/branches/2.9/ The SiteErrorLog now copies exceptions to the event log by default

2005-12-13 Thread Florent Guillaume
Log message for revision 40765: The SiteErrorLog now copies exceptions to the event log by default Changed: U Zope/branches/2.9/doc/CHANGES.txt U Zope/branches/2.9/lib/python/Products/SiteErrorLog/SiteErrorLog.py -=- Modified: Zope/branches/2.9/doc/CHANGES.txt ==

[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ The SiteErrorLog now copies exceptions to the event log by default

2005-12-13 Thread Florent Guillaume
Log message for revision 40764: The SiteErrorLog now copies exceptions to the event log by default Changed: U Zope/branches/Zope-2_8-branch/doc/CHANGES.txt U Zope/branches/Zope-2_8-branch/lib/python/Products/SiteErrorLog/SiteErrorLog.py -=- Modified: Zope/branches/Zope-2_8-branch/doc/C

[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ Merged r40547 from 2.9 branch:

2005-12-06 Thread Florent Guillaume
Log message for revision 40583: Merged r40547 from 2.9 branch: Collector #1904: On Mac OS X avoid a spurious OSError when zopectl exits. Changed: U Zope/branches/Zope-2_8-branch/doc/CHANGES.txt U Zope/branches/Zope-2_8-branch/lib/python/Zope2/Startup/zopectl.py -=- Modified: Zope/b

[Zope-Checkins] SVN: Zope/trunk/lib/python/Zope2/Startup/zopectl.py Merged r40536 from 2.9 branch:

2005-12-05 Thread Florent Guillaume
Log message for revision 40548: Merged r40536 from 2.9 branch: ObjectManager now has an hasObject method to test presence. This brings it in line with BTreeFolder. Changed: U Zope/trunk/lib/python/Zope2/Startup/zopectl.py -=- Modified: Zope/trunk/lib/python/Zope2/Startup/zopectl.py =

[Zope-Checkins] SVN: Zope/branches/2.9/ Collector #1904: On Mac OS X avoid a spurious OSError when zopectl

2005-12-05 Thread Florent Guillaume
Log message for revision 40547: Collector #1904: On Mac OS X avoid a spurious OSError when zopectl exits. Changed: U Zope/branches/2.9/doc/CHANGES.txt U Zope/branches/2.9/lib/python/Zope2/Startup/zopectl.py -=- Modified: Zope/branches/2.9/doc/CHANGES.txt ===

[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ Merged r40536 from 2.9 branch:

2005-12-05 Thread Florent Guillaume
Log message for revision 40542: Merged r40536 from 2.9 branch: ObjectManager now has an hasObject method to test presence. This brings it in line with BTreeFolder. Changed: U Zope/branches/Zope-2_8-branch/doc/CHANGES.txt U Zope/branches/Zope-2_8-branch/lib/python/OFS/ObjectManager

[Zope-Checkins] SVN: Zope/trunk/ Merged r40536 from 2.9 branch:

2005-12-05 Thread Florent Guillaume
Log message for revision 40537: Merged r40536 from 2.9 branch: ObjectManager now has an hasObject method to test presence. This brings it in line with BTreeFolder. Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/OFS/ObjectManager.py U Zope/trunk/lib/python/OFS/in

[Zope-Checkins] SVN: Zope/branches/2.9/ ObjectManager now has an hasObject method to test presence. This

2005-12-05 Thread Florent Guillaume
Log message for revision 40536: ObjectManager now has an hasObject method to test presence. This brings it in line with BTreeFolder. Changed: U Zope/branches/2.9/doc/CHANGES.txt U Zope/branches/2.9/lib/python/OFS/ObjectManager.py U Zope/branches/2.9/lib/python/OFS/interfaces.py

[Zope-Checkins] SVN: Zope/trunk/ Merged r40454 from 2.9 branch:

2005-12-01 Thread Florent Guillaume
Log message for revision 40455: Merged r40454 from 2.9 branch: Improved logging of ConflictErrors. Now a log is made at level BLATHER with traceback for any conflict retried. In addition, a log is made at level ERROR for a conflict that can't be retried anymore and is returned to the brow

[Zope-Checkins] SVN: Zope/branches/2.9/ Improved logging of ConflictErrors. Now a log is made at level BLATHER

2005-12-01 Thread Florent Guillaume
Log message for revision 40454: Improved logging of ConflictErrors. Now a log is made at level BLATHER with traceback for any conflict retried. In addition, a log is made at level ERROR for a conflict that can't be retried anymore and is returned to the browser as an error. Nothing is logge

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/SiteAccess/SiteRoot.py Fixed #1960. Simplified dumb useless dialog.

2005-11-30 Thread Florent Guillaume
Log message for revision 40434: Fixed #1960. Simplified dumb useless dialog. Changed: U Zope/trunk/lib/python/Products/SiteAccess/SiteRoot.py -=- Modified: Zope/trunk/lib/python/Products/SiteAccess/SiteRoot.py === --- Zope/trun

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Products/SiteAccess/SiteRoot.py Fixed #1960. Simplified dumb useless dialog.

2005-11-30 Thread Florent Guillaume
Log message for revision 40433: Fixed #1960. Simplified dumb useless dialog. Changed: U Zope/branches/2.9/lib/python/Products/SiteAccess/SiteRoot.py -=- Modified: Zope/branches/2.9/lib/python/Products/SiteAccess/SiteRoot.py ===

[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/lib/python/Products/SiteAccess/SiteRoot.py Fixed #1960. Simplified dumb useless dialog.

2005-11-30 Thread Florent Guillaume
Log message for revision 40432: Fixed #1960. Simplified dumb useless dialog. Changed: U Zope/branches/Zope-2_8-branch/lib/python/Products/SiteAccess/SiteRoot.py -=- Modified: Zope/branches/Zope-2_8-branch/lib/python/Products/SiteAccess/SiteRoot.py ==

[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/ Merged r40408 from 2.9 branch:

2005-11-29 Thread Florent Guillaume
Log message for revision 40409: Merged r40408 from 2.9 branch: Added backward compat for suppress_events parameter passing. Changed: U Zope/trunk/lib/python/OFS/CopySupport.py U Zope/trunk/lib/python/OFS/OrderSupport.py -=- Modified: Zope/trunk/lib/python/OFS/CopySupport.py ===

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/OFS/ Added backward compat for suppress_events parameter passing.

2005-11-29 Thread Florent Guillaume
Log message for revision 40408: Added backward compat for suppress_events parameter passing. Changed: U Zope/branches/2.9/lib/python/OFS/CopySupport.py U Zope/branches/2.9/lib/python/OFS/OrderSupport.py -=- Modified: Zope/branches/2.9/lib/python/OFS/CopySupport.py ==

[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ Merged r40403 from 2.9 branch:

2005-11-29 Thread Florent Guillaume
Log message for revision 40406: Merged r40403 from 2.9 branch: Fixed problem with security.setPermissionDefault when the permission wasn't used anywhere else in the class to protect methods. Changed: U Zope/branches/Zope-2_8-branch/doc/CHANGES.txt U Zope/branches/Zope-2_8-branch/l

[Zope-Checkins] SVN: Zope/branches/2.9/doc/CHANGES.txt Update CHANGES.

2005-11-29 Thread Florent Guillaume
Log message for revision 40405: Update CHANGES. Changed: U Zope/branches/2.9/doc/CHANGES.txt -=- Modified: Zope/branches/2.9/doc/CHANGES.txt === --- Zope/branches/2.9/doc/CHANGES.txt 2005-11-29 14:56:48 UTC (rev 40404) +++

[Zope-Checkins] SVN: Zope/trunk/lib/python/AccessControl/ Merged r40403 from 2.9 branch:

2005-11-29 Thread Florent Guillaume
Log message for revision 40404: Merged r40403 from 2.9 branch: Fixed problem with security.setPermissionDefault when the permission wasn't used anywhere else in the class to protect methods. Changed: U Zope/trunk/lib/python/AccessControl/SecurityInfo.py U Zope/trunk/lib/python/Acc

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/AccessControl/ Fixed problem with security.setPermissionDefault when the permission

2005-11-29 Thread Florent Guillaume
Log message for revision 40403: Fixed problem with security.setPermissionDefault when the permission wasn't used anywhere else in the class to protect methods. Changed: U Zope/branches/2.9/lib/python/AccessControl/SecurityInfo.py U Zope/branches/2.9/lib/python/AccessControl/tests/te

[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/ Merged 40389 from 2.9 branch:

2005-11-28 Thread Florent Guillaume
Log message for revision 40390: Merged 40389 from 2.9 branch: Use ObjectCopiedEvent with an 'original' parameter. Changed: U Zope/trunk/lib/python/OFS/CopySupport.py U Zope/trunk/lib/python/OFS/ObjectManager.py U Zope/trunk/lib/python/OFS/OrderSupport.py -=- Modified: Zope/trun

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/OFS/ Use ObjectCopiedEvent with an 'original' parameter.

2005-11-28 Thread Florent Guillaume
Log message for revision 40389: Use ObjectCopiedEvent with an 'original' parameter. Changed: U Zope/branches/2.9/lib/python/OFS/CopySupport.py U Zope/branches/2.9/lib/python/OFS/ObjectManager.py U Zope/branches/2.9/lib/python/OFS/OrderSupport.py -=- Modified: Zope/branches/2.9/lib/p

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/Five/monkey.py Forgotten in Five 1.3b4 merge.

2005-11-25 Thread Florent Guillaume
Log message for revision 40375: Forgotten in Five 1.3b4 merge. Changed: A Zope/trunk/lib/python/Products/Five/monkey.py -=- Added: Zope/trunk/lib/python/Products/Five/monkey.py === --- Zope/trunk/lib/python/Products/Five/monkey

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Products/Five/monkey.py Forgotten in Five 1.3b4 merge.

2005-11-25 Thread Florent Guillaume
Log message for revision 40374: Forgotten in Five 1.3b4 merge. Changed: A Zope/branches/2.9/lib/python/Products/Five/monkey.py -=- Added: Zope/branches/2.9/lib/python/Products/Five/monkey.py === --- Zope/branches/2.9/lib/python

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/Five/ Merge r40372 from 2.9 branch: Updated to Five 1.3b4

2005-11-25 Thread Florent Guillaume
Log message for revision 40373: Merge r40372 from 2.9 branch: Updated to Five 1.3b4 Changed: U Zope/trunk/lib/python/Products/Five/CHANGES.txt U Zope/trunk/lib/python/Products/Five/__init__.py U Zope/trunk/lib/python/Products/Five/tests/event.txt U Zope/trunk/lib/python/Products/

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Products/Five/ Updated to Five 1.3b4.

2005-11-25 Thread Florent Guillaume
Log message for revision 40372: Updated to Five 1.3b4. Changed: U Zope/branches/2.9/lib/python/Products/Five/CHANGES.txt U Zope/branches/2.9/lib/python/Products/Five/__init__.py U Zope/branches/2.9/lib/python/Products/Five/tests/event.txt U Zope/branches/2.9/lib/python/Prod

[Zope-Checkins] SVN: Zope/trunk/lib/python/ Merged 40370 from 2.9 branch:

2005-11-25 Thread Florent Guillaume
Log message for revision 40371: Merged 40370 from 2.9 branch: Send ContainerModifiedEvent when appropriate. This requires Five 1.3+ >= r20254. Some BBB has been kept until Zope 3.2 >= r40368 is stiched in. Changed: U Zope/trunk/lib/python/OFS/CopySupport.py U Zope/tr

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/ Merged Five 1.2 branch changeset 20253:

2005-11-25 Thread Florent Guillaume
Log message for revision 40370: Merged Five 1.2 branch changeset 20253: Send ContainerModifiedEvent when appropriate. This requires Five 1.3+ >= r20254. Some BBB has been kept until Zope 3.2 >= r40368 is stiched in. Changed: U Zope/branches/2.9/lib/python/OFS/CopySupport.py

[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ Merged r40279 from 2.9 branch:

2005-11-20 Thread Florent Guillaume
Log message for revision 40281: Merged r40279 from 2.9 branch: Warn when an attempt is made to have a security declaration on a nonexistent method. Removed one such method. Fixed unclear security declarations. When bug 761 was fixed, declareProtected(perm) was made illegal, at least

[Zope-Checkins] SVN: Zope/trunk/ Merged r40279 from 2.9 branch:

2005-11-20 Thread Florent Guillaume
Log message for revision 40280: Merged r40279 from 2.9 branch: Warn when an attempt is made to have a security declaration on a nonexistent method. Removed one such method. Fixed unclear security declarations. When bug 761 was fixed, declareProtected(perm) was made illegal, at least

[Zope-Checkins] SVN: Zope/branches/2.9/ Warn when an attempt is made to have a security declaration on a

2005-11-20 Thread Florent Guillaume
Log message for revision 40279: Warn when an attempt is made to have a security declaration on a nonexistent method. Removed one such method. Fixed unclear security declarations. When bug 761 was fixed, declareProtected(perm) was made illegal, at least one method name was required. Thi

[Zope-Checkins] SVN: Zope/branches/efge-five-events-work/ Banch has been merged.

2005-11-10 Thread Florent Guillaume
Log message for revision 40031: Banch has been merged. Changed: D Zope/branches/efge-five-events-work/ -=- ___ Zope-Checkins maillist - Zope-Checkins@zope.org http://mail.zope.org/mailman/listinfo/zope-checkins

[Zope-Checkins] SVN: Zope/branches/efge-five-events-work/lib/python/OFS/subscribers.py Move code around a bit.

2005-11-10 Thread Florent Guillaume
Log message for revision 40024: Move code around a bit. Changed: U Zope/branches/efge-five-events-work/lib/python/OFS/subscribers.py -=- Modified: Zope/branches/efge-five-events-work/lib/python/OFS/subscribers.py === --- Zop

[Zope-Checkins] SVN: Zope/branches/efge-five-events-work/lib/python/ To be used with Five efge-1.3-event-work branch.

2005-11-10 Thread Florent Guillaume
Log message for revision 40023: To be used with Five efge-1.3-event-work branch. Changed deprecation strategy a bit, for maximum compatibility. This fixes a bug, seen in the expanded tests in Five/tests/event.txt, about "compatibility" recursion for old classes. Changed: U

[Zope-Checkins] SVN: Zope/branches/efge-five-events-work/ Branch to fix events with Five.

2005-11-09 Thread Florent Guillaume
Log message for revision 40012: Branch to fix events with Five. Changed: A Zope/branches/efge-five-events-work/ -=- Copied: Zope/branches/efge-five-events-work (from rev 40011, Zope/trunk) ___ Zope-Checkins maillist - Zope-Checkins@zope.org

[Zope-Checkins] SVN: Zope/trunk/ Use a better __repr__ for User objects.

2005-11-09 Thread Florent Guillaume
Log message for revision 40006: Use a better __repr__ for User objects. (NullUnrestrictedUser had a non-string repr that made it impossible to debug properly.) Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/AccessControl/User.py U Zope/trunk/lib/python/Acc

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/ Moved more stuff from Five into Zope itself.

2005-11-02 Thread Florent Guillaume
Log message for revision 39846: Moved more stuff from Five into Zope itself. Event interfaces are now in OFS.interfaces. IFiveObjectClonedEvent has been renamed into IObjectClonedEvent. Changed: U Zope/branches/philikon-zope32-integration/lib/python/OFS/CopySupport.py U Zope/br

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py Run standalone, and do proper setup/teardown.

2005-11-02 Thread Florent Guillaume
Log message for revision 39844: Run standalone, and do proper setup/teardown. Changed: U Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py -=- Modified: Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py ===

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.py Removed useless test that fails if some other failing test leaves

2005-11-02 Thread Florent Guillaume
Log message for revision 39837: Removed useless test that fails if some other failing test leaves something in the error_log. Changed: U Zope/branches/philikon-zope32-integration/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.py -=- Modified: Zope/branches/philikon-zope32-in

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py Don't recurse explicitely, and shut up deprecation warnings.

2005-11-02 Thread Florent Guillaume
Log message for revision 39835: Don't recurse explicitely, and shut up deprecation warnings. Changed: U Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py -=- Modified: Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testOrderSupport.py Shut up deprecation warnings.

2005-11-02 Thread Florent Guillaume
Log message for revision 39836: Shut up deprecation warnings. Changed: U Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testOrderSupport.py -=- Modified: Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testOrderSupport.py =

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/Products/PythonScripts/PythonScript.py Shut up deprecation warnings.

2005-11-02 Thread Florent Guillaume
Log message for revision 39834: Shut up deprecation warnings. Changed: U Zope/branches/philikon-zope32-integration/lib/python/Products/PythonScripts/PythonScript.py -=- Modified: Zope/branches/philikon-zope32-integration/lib/python/Products/PythonScripts/PythonScript.py ===

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/Products/SiteAccess/tests/testVirtualHostMonster.py Make sure a virtual host monster is present in the application object.

2005-11-02 Thread Florent Guillaume
Log message for revision 39832: Make sure a virtual host monster is present in the application object. Changed: U Zope/branches/philikon-zope32-integration/lib/python/Products/SiteAccess/tests/testVirtualHostMonster.py -=- Modified: Zope/branches/philikon-zope32-integration/lib/python/

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.py Move code inside try/except.

2005-11-02 Thread Florent Guillaume
Log message for revision 39829: Move code inside try/except. Changed: U Zope/branches/philikon-zope32-integration/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.py -=- Modified: Zope/branches/philikon-zope32-integration/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.p

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.py If ZopeLite was imported before these tests were run, they would fail as

2005-11-02 Thread Florent Guillaume
Log message for revision 39828: If ZopeLite was imported before these tests were run, they would fail as they assume the application object it the standard one which includes an error_log. But run in isolation they would pass. Now we make sure an error_log is present in the application o

[Zope-Checkins] SVN: Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py Work correctly with event dispatching:

2005-11-02 Thread Florent Guillaume
Log message for revision 39820: Work correctly with event dispatching: - mark a test class as deprecated, - use a container class that implements IItem. Changed: U Zope/branches/philikon-zope32-integration/lib/python/OFS/tests/testObjectManager.py -=- Modified: Zope/branches/phi

  1   2   >