[Zope3-checkins] CVS: Zope3/src/zope/publisher/tests - test_browsermarshalling.py:NONE

Tres Seaver tseaver@zope.com
Thu, 13 Feb 2003 12:46:21 -0500


Update of /cvs-repository/Zope3/src/zope/publisher/tests
In directory cvs.zope.org:/tmp/cvs-serv4623/src/zope/publisher/tests

Removed Files:
	test_browsermarshalling.py 
Log Message:


  - src/zope/publisher/browser.py:

    o Remove dependency on 'zope.app.datetimeutils';  the 'field2date'
      converter is now in 'zope.app.publisher.fieldconverters'.

    o Add an API for registering / overriding field converters from
      application code.

  - src/zope/app/publisher/fieldconverters.py:

    o New home for the 'field2date' converter: it is *not available by
      default*, but must be installed by application code which needs
      it, via the 'registerZopeConverters' API.

      * This choice avoids prescribing a US-centric date/time parsing
        scheme by default.

      * Example application code which activates this converter::

        from zope.app.publisher.zopeconverters import registerZopeConverters
        registerZopeConverters()

=== Removed File Zope3/src/zope/publisher/tests/test_browsermarshalling.py ===