[Zope-Checkins] SVN: Products.Five/branches/1.4/ Setup logic-less registerPackage zcml directive.

2006-03-12 Thread Rocky Burt
Log message for revision 65925: Setup logic-less registerPackage zcml directive. Changed: _U Products.Five/branches/1.4/ U Products.Five/branches/1.4/fiveconfigure.py U Products.Five/branches/1.4/fivedirectives.py U Products.Five/branches/1.4/meta.zcml -=- Property changes

[Zope-Checkins] SVN: Products.Five/branches/1.4/ Setup basic modules for testing registerpackage functionality.

2006-03-12 Thread Rocky Burt
Log message for revision 65926: Setup basic modules for testing registerpackage functionality. Changed: _U Products.Five/branches/1.4/ A Products.Five/branches/1.4/tests/test_registerpackage.py A Products.Five/branches/1.4/tests/testing/pythonproduct1.py -=- Property changes on:

[Zope-Checkins] SVN: Products.Five/branches/1.4/ Added preliminary support for being able to register any python package as a zope2 product (so it shows up in Control Panel).

2006-03-12 Thread Rocky Burt
. +# +## +Setup necessary monkey patches and other related logic for using +regular python packages for zope2 products + +$Id$ + +__author__ = Rocky Burt + +import os +import types + +import Products +from App.Product import initializeProduct

[Zope-Checkins] SVN: Products.Five/branches/1.4/ Renamed test_registerpackage to test_pythonproducts.

2006-03-12 Thread Rocky Burt
Log message for revision 65934: Renamed test_registerpackage to test_pythonproducts. Changed: _U Products.Five/branches/1.4/ A Products.Five/branches/1.4/tests/test_pythonproducts.py D Products.Five/branches/1.4/tests/test_registerpackage.py -=- Property changes on:

[Zope-Checkins] SVN: Products.Five/branches/1.4/ Now applying monkey patches to make Zope2 work with python packages that don't have to live in Products/

2006-03-12 Thread Rocky Burt
Log message for revision 65935: Now applying monkey patches to make Zope2 work with python packages that don't have to live in Products/ Changed: _U Products.Five/branches/1.4/ U Products.Five/branches/1.4/pythonproducts.py U

[Zope-Checkins] SVN: Products.Five/branches/1.0/ Added missing fix from newer versions of Five where the _context wasn't getting cleaned up properly in zcml.py. Without this fix, adapter lookups would

2006-03-25 Thread Rocky Burt
Log message for revision 66160: Added missing fix from newer versions of Five where the _context wasn't getting cleaned up properly in zcml.py. Without this fix, adapter lookups wouldn't work in any test after the first test that used load_zcml in the same test fixture (essentially adapter

[Zope-Checkins] SVN: Products.Five/branches/1.4/pythonproducts.py Fixed up the placement of global statements for _zope_app.

2006-03-26 Thread Rocky Burt
Log message for revision 66189: Fixed up the placement of global statements for _zope_app. Changed: U Products.Five/branches/1.4/pythonproducts.py -=- Modified: Products.Five/branches/1.4/pythonproducts.py === ---

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ Updated svn:externals to include more recent Five version since zope 2.10 will require Five 1.5.

2006-04-23 Thread Rocky Burt
Log message for revision 67558: Updated svn:externals to include more recent Five version since zope 2.10 will require Five 1.5. Changed: _U Zope/trunk/lib/python/Products/ -=- Property changes on: Zope/trunk/lib/python/Products

[Zope-Checkins] SVN: Zope/trunk/lib/python/App/Extensions.py ProductDispatcher's __bobo_traverse__ now checks all products registered in Control_Panel.Products rather than simply checking the python P

2006-05-02 Thread Rocky Burt
Log message for revision 67868: ProductDispatcher's __bobo_traverse__ now checks all products registered in Control_Panel.Products rather than simply checking the python Products namespace package. Changed: U Zope/trunk/lib/python/App/Extensions.py -=- Modified:

[Zope-Checkins] SVN: Zope/trunk/lib/python/App/FactoryDispatcher.py External methods can now live outside of Products based python packages.

2006-05-02 Thread Rocky Burt
Log message for revision 67869: External methods can now live outside of Products based python packages. Changed: U Zope/trunk/lib/python/App/FactoryDispatcher.py -=- Modified: Zope/trunk/lib/python/App/FactoryDispatcher.py

[Zope-Checkins] SVN: Products.Five/trunk/ Enabled ability to declare a regular python package as an official Zope2 product via zcml five:registerPackage.

2006-05-02 Thread Rocky Burt
Log message for revision 67874: Enabled ability to declare a regular python package as an official Zope2 product via zcml five:registerPackage. Changed: U Products.Five/trunk/fiveconfigure.py U Products.Five/trunk/fivedirectives.py U Products.Five/trunk/meta.zcml A

[Zope-Checkins] SVN: Products.Five/trunk/tests/test_registerpackage.py Zope2.app() isn't behaving properly in tests ... will have to track this down further.

2006-05-03 Thread Rocky Burt
Log message for revision 67942: Zope2.app() isn't behaving properly in tests ... will have to track this down further. Changed: U Products.Five/trunk/tests/test_registerpackage.py -=- Modified: Products.Five/trunk/tests/test_registerpackage.py

[Zope-Checkins] SVN: Zope/trunk/lib/python/App/FactoryDispatcher.py Now closing manually opened zodb connections -- thanks Stefan

2006-05-04 Thread Rocky Burt
Log message for revision 67964: Now closing manually opened zodb connections -- thanks Stefan Changed: U Zope/trunk/lib/python/App/FactoryDispatcher.py -=- Modified: Zope/trunk/lib/python/App/FactoryDispatcher.py === ---

[Zope-Checkins] SVN: Products.Five/trunk/ Fixed up an issue where an open zodb connection wasn't geting closed properly ... also reinstated a previously-failing (but no longer) test now that the zodb

2006-05-04 Thread Rocky Burt
Log message for revision 67968: Fixed up an issue where an open zodb connection wasn't geting closed properly ... also reinstated a previously-failing (but no longer) test now that the zodb connection handling is working properly. Changed: U Products.Five/trunk/fiveconfigure.py U

[Zope-Checkins] SVN: Products.Five/trunk/ Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in.

2006-05-25 Thread Rocky Burt
Log message for revision 68289: Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in. Changed: U Products.Five/trunk/CHANGES.txt U Products.Five/trunk/browser/metaconfigure.py U

[Zope-Checkins] SVN: Products.Five/branches/1.4/ - Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in.

2006-05-25 Thread Rocky Burt
Log message for revision 68290: - Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in. - Fixed an issue where new-style classes could not be used for view components with browser:page. Changed: U

[Zope-Checkins] SVN: Products.Five/branches/1.3/ - Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in.

2006-05-25 Thread Rocky Burt
Log message for revision 68291: - Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in. - Fixed an issue where new-style classes could not be used for view components with browser:page. Changed: U

[Zope-Checkins] SVN: Products.Five/branches/1.2/ - Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in.

2006-05-25 Thread Rocky Burt
Log message for revision 68292: - Fixed an issue where browser:page based views that didn't have template or attribute defined weren't getting BrowserView mixed in. - Fixed an issue where new-style classes could not be used for view components with browser:page. Changed: U

[Zope-Checkins] SVN: Products.Five/trunk/formlib/pageform.pt Added appropriate @@standard_macros usage.

2006-05-28 Thread Rocky Burt
Log message for revision 68314: Added appropriate @@standard_macros usage. Changed: U Products.Five/trunk/formlib/pageform.pt -=- Modified: Products.Five/trunk/formlib/pageform.pt === ---

[Zope-Checkins] SVN: Zope/trunk/lib/python/App/ Put in an extra check to handle packages that had namespace packages.

2006-05-29 Thread Rocky Burt
Log message for revision 68339: Put in an extra check to handle packages that had namespace packages. Changed: U Zope/trunk/lib/python/App/Extensions.py U Zope/trunk/lib/python/App/FactoryDispatcher.py -=- Modified: Zope/trunk/lib/python/App/Extensions.py

[Zope-Checkins] SVN: Products.Five/branches/1.4/pythonproducts.py Put in an extra check to handle packages that had namespace packages.

2006-05-29 Thread Rocky Burt
Log message for revision 68340: Put in an extra check to handle packages that had namespace packages. Changed: U Products.Five/branches/1.4/pythonproducts.py -=- Modified: Products.Five/branches/1.4/pythonproducts.py === ---

[Zope-Checkins] SVN: Products.Five/trunk/viewlet/README.txt Fixing viewlet test, zope.app.size was moved to zope.size.

2006-05-29 Thread Rocky Burt
Log message for revision 68342: Fixing viewlet test, zope.app.size was moved to zope.size. Changed: U Products.Five/trunk/viewlet/README.txt -=- Modified: Products.Five/trunk/viewlet/README.txt === ---

[Zope-Checkins] SVN: Products.Five/trunk/ Five now requires site.zcml to live in /etc

2006-05-29 Thread Rocky Burt
Log message for revision 68359: Five now requires site.zcml to live in /etc Changed: U Products.Five/trunk/CHANGES.txt D Products.Five/trunk/skel/ U Products.Five/trunk/zcml.py -=- Modified: Products.Five/trunk/CHANGES.txt

[Zope-Checkins] SVN: Zope/trunk/ Zope now provides site.zcml in its instance skel.

2006-05-29 Thread Rocky Burt
Log message for revision 68360: Zope now provides site.zcml in its instance skel. Changed: U Zope/trunk/doc/CHANGES.txt A Zope/trunk/skel/etc/package-includes/ A Zope/trunk/skel/etc/site.zcml -=- Modified: Zope/trunk/doc/CHANGES.txt

[Zope-Checkins] SVN: Products.Five/trunk/zcml.py Fixed exception raising to use future proof style.

2006-05-29 Thread Rocky Burt
Log message for revision 68361: Fixed exception raising to use future proof style. Changed: U Products.Five/trunk/zcml.py -=- Modified: Products.Five/trunk/zcml.py === --- Products.Five/trunk/zcml.py 2006-05-29 20:27:38 UTC

[Zope-Checkins] SVN: Products.Five/trunk/zcml.py Setup a check for zcml load_site() so check skel when unit testing is occurring.

2006-05-29 Thread Rocky Burt
Log message for revision 68373: Setup a check for zcml load_site() so check skel when unit testing is occurring. Changed: U Products.Five/trunk/zcml.py -=- Modified: Products.Five/trunk/zcml.py === ---

[Zope-Checkins] SVN: Products.Five/trunk/zcml.py Replaced error when missing site.zcml with a warning.

2006-05-31 Thread Rocky Burt
Log message for revision 68410: Replaced error when missing site.zcml with a warning. Changed: U Products.Five/trunk/zcml.py -=- Modified: Products.Five/trunk/zcml.py === --- Products.Five/trunk/zcml.py 2006-05-31 13:38:24 UTC

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ Updated reference to a Five version that turned the site.zcml error into a warning.

2006-05-31 Thread Rocky Burt
Log message for revision 68411: Updated reference to a Five version that turned the site.zcml error into a warning. Changed: _U Zope/trunk/lib/python/Products/ -=- Property changes on: Zope/trunk/lib/python/Products ___ Name:

[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Products/ Updated Zope to use Five revision so copying site.zcml is no longer mandatory.

2006-05-31 Thread Rocky Burt
Log message for revision 68416: Updated Zope to use Five revision so copying site.zcml is no longer mandatory. Changed: _U Zope/branches/2.10/lib/python/Products/ -=- Property changes on: Zope/branches/2.10/lib/python/Products

[Zope-Checkins] SVN: Zope/branches/2.10/ OFS Image: Image and File now both support simple unicode objects for data (they function the same as strings for data).

2006-06-28 Thread Rocky Burt
Log message for revision 68876: OFS Image: Image and File now both support simple unicode objects for data (they function the same as strings for data). Changed: U Zope/branches/2.10/doc/CHANGES.txt U Zope/branches/2.10/lib/python/OFS/Image.py U

[Zope-Checkins] SVN: Zope/trunk/ OFS Image: Image and File now both support simple unicode objects for data (they function the same as strings for data).

2006-06-28 Thread Rocky Burt
Log message for revision 68877: OFS Image: Image and File now both support simple unicode objects for data (they function the same as strings for data). Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/OFS/Image.py U Zope/trunk/lib/python/OFS/tests/testFileAndImage.py

[Zope-Checkins] SVN: Zope/branches/2.10/ OFS Image: Image and File updated to use isinstance(data, str) and raises TypeError upon encountering unicode objects.

2006-06-28 Thread Rocky Burt
Log message for revision 68879: OFS Image: Image and File updated to use isinstance(data, str) and raises TypeError upon encountering unicode objects. Changed: U Zope/branches/2.10/doc/CHANGES.txt U Zope/branches/2.10/lib/python/OFS/Image.py U

[Zope-Checkins] SVN: Zope/trunk/ OFS Image: Image and File updated to use isinstance(data, str) and raises TypeError upon encountering unicode objects.

2006-06-28 Thread Rocky Burt
Log message for revision 68880: OFS Image: Image and File updated to use isinstance(data, str) and raises TypeError upon encountering unicode objects. Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/OFS/Image.py U Zope/trunk/lib/python/OFS/tests/testFileAndImage.py

[Zope-Checkins] SVN: Products.Five/branches/1.4/CHANGES.txt Reorganized changelog entries to reflect bug fixes and restructuring for unreleased.

2006-07-20 Thread Rocky Burt
Log message for revision 69227: Reorganized changelog entries to reflect bug fixes and restructuring for unreleased. Changed: U Products.Five/branches/1.4/CHANGES.txt -=- Modified: Products.Five/branches/1.4/CHANGES.txt ===

[Zope-Checkins] SVN: Products.Five/branches/1.4/ Removed awful _zope_app usage which was causing ConnectionStateError problems.

2006-08-21 Thread Rocky Burt
Log message for revision 69719: Removed awful _zope_app usage which was causing ConnectionStateError problems. Changed: U Products.Five/branches/1.4/CHANGES.txt U Products.Five/branches/1.4/fiveconfigure.py U Products.Five/branches/1.4/pythonproducts.py U

[Zope-Checkins] SVN: Products.Five/branches/1.3/ Backported 'browser: processInputs now decodes strings in lists and tuples' fix from 1.4 (r70913) branch.

2006-11-04 Thread Rocky Burt
Log message for revision 71059: Backported 'browser: processInputs now decodes strings in lists and tuples' fix from 1.4 (r70913) branch. Changed: U Products.Five/branches/1.3/CHANGES.txt A Products.Five/branches/1.3/browser/tests/test_decode.py U

[Zope-Checkins] SVN: Products.Five/branches/1.3/ Updating changes/version info to reflect new 1.3.8 release.

2006-11-04 Thread Rocky Burt
Log message for revision 71060: Updating changes/version info to reflect new 1.3.8 release. Changed: U Products.Five/branches/1.3/CHANGES.txt U Products.Five/branches/1.3/version.txt -=- Modified: Products.Five/branches/1.3/CHANGES.txt

[Zope-Checkins] SVN: Products.Five/branches/1.4/INSTALL.txt Updated INSTALL.txt to reflect the dependency on Zope 2.9.5 and higher for the 1.4.2 release.

2006-11-04 Thread Rocky Burt
Log message for revision 71064: Updated INSTALL.txt to reflect the dependency on Zope 2.9.5 and higher for the 1.4.2 release. Changed: U Products.Five/branches/1.4/INSTALL.txt -=- Modified: Products.Five/branches/1.4/INSTALL.txt

[Zope-Checkins] SVN: Products.Five/branches/1.4/CHANGES.txt Added information about the change which made zope 2.9.5 required for Five 1.4

2006-11-04 Thread Rocky Burt
Log message for revision 71065: Added information about the change which made zope 2.9.5 required for Five 1.4 Changed: U Products.Five/branches/1.4/CHANGES.txt -=- Modified: Products.Five/branches/1.4/CHANGES.txt === ---

[Zope-Checkins] SVN: Products.Five/tags/1.4.2/ Tagged Five 1.4.2 release.

2006-11-04 Thread Rocky Burt
Log message for revision 71066: Tagged Five 1.4.2 release. Changed: A Products.Five/tags/1.4.2/ -=- Copied: Products.Five/tags/1.4.2 (from rev 71065, Products.Five/branches/1.4) ___ Zope-Checkins maillist - Zope-Checkins@zope.org

[Zope-Checkins] SVN: Products.Five/branches/1.5/ Updating changes/version info to reflect new 1.5.1 release.

2006-11-04 Thread Rocky Burt
Log message for revision 71068: Updating changes/version info to reflect new 1.5.1 release. Changed: U Products.Five/branches/1.5/CHANGES.txt U Products.Five/branches/1.5/version.txt -=- Modified: Products.Five/branches/1.5/CHANGES.txt

[Zope-Checkins] SVN: Products.Five/tags/1.5.1/ Tagged Five 1.5.1 release.

2006-11-04 Thread Rocky Burt
Log message for revision 71069: Tagged Five 1.5.1 release. Changed: A Products.Five/tags/1.5.1/ -=- Copied: Products.Five/tags/1.5.1 (from rev 71068, Products.Five/branches/1.5) ___ Zope-Checkins maillist - Zope-Checkins@zope.org

[Zope-Checkins] SVN: Products.Five/trunk/CHANGES.txt Sync'ed trunk's (1.6) CHANGES.txt with latest release info from 1.5, 1.4, and 1.3

2006-11-04 Thread Rocky Burt
Log message for revision 71070: Sync'ed trunk's (1.6) CHANGES.txt with latest release info from 1.5, 1.4, and 1.3 Changed: U Products.Five/trunk/CHANGES.txt -=- Modified: Products.Five/trunk/CHANGES.txt === ---

[Zope-Checkins] SVN: Products.Five/tags/1.5.2-plus-registerPackage-fix/ Tag to map over to zope2 external in between releases.

2007-03-05 Thread Rocky Burt
Log message for revision 72989: Tag to map over to zope2 external in between releases. Changed: A Products.Five/tags/1.5.2-plus-registerPackage-fix/ -=- Copied: Products.Five/tags/1.5.2-plus-registerPackage-fix (from rev 72988, Products.Five/branches/1.5)

[Zope-Checkins] SVN: Zope/branches/2.10/ No longer opens a zodb connection every time a ProductDispatcher is looked up.

2007-03-05 Thread Rocky Burt
Log message for revision 72990: No longer opens a zodb connection every time a ProductDispatcher is looked up. Changed: U Zope/branches/2.10/doc/CHANGES.txt U Zope/branches/2.10/lib/python/App/FactoryDispatcher.py _U Zope/branches/2.10/lib/python/Products/ -=- Modified:

[Zope-Checkins] SVN: Zope/trunk/ No longer opens a zodb connection every time a ProductDispatcher is looked up, forward ported from zope 2.10 branch r72990 and five 1.5 branch r72986.

2007-03-05 Thread Rocky Burt
Log message for revision 72991: No longer opens a zodb connection every time a ProductDispatcher is looked up, forward ported from zope 2.10 branch r72990 and five 1.5 branch r72986. Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/App/FactoryDispatcher.py U