/usr/share/pyshared/zope.app.exception-3.6.3.egg-info/PKG-INFO is in python-zope.app.exception 3.6.3-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | Metadata-Version: 1.1
Name: zope.app.exception
Version: 3.6.3
Summary: Zope 3 exception views
Home-page: http://pypi.python.org/pypi/zope.app.exception
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: This packages provides Zope 3 browser views for some generic exceptions.
.. contents::
System Errors
=============
System Errors are errors representing a system failure. At the
application level, they are errors that are uncaught by the
application and that a developer hasn't provided a custom error view
for.
Zope provides a default system error view that prints an obnoxius
terse message and that sets the response status.
There is a simple view registered in ``ftesting.zcml`` which raises
``Exception()``:
>>> print http(r"""
... GET /error.html HTTP/1.1
... """)
HTTP/1.1 500 Internal Server Error
...
A system error occurred.
...
Another way of getting a system error is the occurrence of a system
error, such as ``ComponentLookupError``. I have registered a simple
view in ``ftesting.zcml``, too, that will raise a component lookup
error. So if we call ``componentlookuperror.html``, we should get the
error message:
>>> print http(r"""
... GET /componentlookuperror.html HTTP/1.1
... """)
HTTP/1.1 500 Internal Server Error
...
A system error occurred.
...
CHANGES
=======
3.6.3 (2011-05-23)
------------------
- Replaced an undeclared test dependency on ``zope.app.authentication`` with
``zope.password``.
3.6.2 (2010-09-14)
------------------
- No longer depend on ``zope.app.zptpage`` for tests.
- Replaced dependency on ``zope.app.securitypolicy`` by
``zope.securitypolicy``.
3.6.1 (2010-01-08)
------------------
- Require zope.browserpage which now contains ``namedtemplate``.
- Fix ftesting.zcml due to ``zope.securitypolicy`` update.
- Fix tests using a newer zope.publisher that requires zope.login.
3.6.0 (2009-05-18)
------------------
- ``ISystemErrorView`` interface has been moved to
``zope.browser.interfaces``, leaving BBB import here.
- Cut dependency on ``zope.formlib`` by requiring newer version of
``zope.app.pagetemplate`` which now contains ``namedtemplate``.
3.5.0 (2009-04-06)
------------------
- Use new ``zope.authentication`` instead of ``zope.app.security``.
- Removed deprecated code and thus removed dependency on zope.deferredimport.
- Removed old zpkg-related SETUP.cfg file.
3.4.2 (2009-01-27)
------------------
- Substitute zope.app.zapi by direct calls to its wrapped apis. See
bug 219302.
- Fixed author email and home page.
3.4.1 (2007-10-31)
------------------
- Resolve ``ZopeSecurityPolicy`` deprecation warning.
3.4.0 (2007-10-24)
------------------
- Initial release independent of the main Zope tree.
Keywords: zope3 exception view
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
|