------------------
- Make devmode warning message more generic. We don't nesessary have the
`etc/zope.conf` file nowadays when using buildout-based setups.
- Add an application factory for Paste. So Zope application can now be
easily deployed with Paste .ini configuration like this::
[app:main]
use = egg:zope.app.wsgi
config_file = %(here)s/zope.conf
handle_errors = false
The config_file is a required argument, however the handle_errors
defaults to True if not specified. Setting it to False allows you to
make WSGIPublisherApplication not handle exceptions itself but
propagate them to an upper middleware, like WebError or something.
- The ``WSGIPublisherApplication`` constructor and ``getWSGIApplication``
function now accept optional ``handle_errors`` argument, described
above.
- Change mailing list address to zope-dev at zope.org instead of retired
one.