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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
Metadata-Version: 1.1
Name: WebError
Version: 0.13.1
Summary: Web Error handling and exception catching
Home-page: https://bitbucket.org/bbangert/weberror
Author: Ben Bangert, Ian Bicking, Mark Ramm
Author-email: invalid@invalid.com
License: MIT
Description: .. -*-rst-*-
NOTICE
======
This software is not actively maintained. Simple bugfixes and other patches
will be accepted, and released.
Introduction
============
WebError provides WSGI middleware for the debugging and handling of errors
inside of WSGI applications.
Usage
=====
There are two primary WSGI middleware components:
weberror.errormiddleware.make_error_middleware
----------------------------------------------
This middleware should be used for production deployed applications and is used
to track extra information regarding errors that occur. These error entries can
additionally be emailed to a given email address using the *error_email*
option. Example usage::
from weberror.errormiddleware import make_error_middleware
app = make_error_middleware(app, global_conf)
weberror.evalexception.make_eval_exception
------------------------------------------
This middleware is used to help debug errors in wsgi applications during
development and should not be used in production. Example usage::
from weberror.evalexception import make_eval_exception
app = make_eval_exception(app, global_conf)
.. -*-rst-*-
WebError Changelog
==================
0.13.1 (09/04/2016)
-------------------
* Fixed an +1 issues with the fix in pull request #14 breaking the previous
version. This was fixed in https://github.com/Pylons/weberror/pull/16
0.13 (15/03/2016)
-----------------
* Fixed an issue with the debug view detection that was causing failures
when WebError was used with pyramid_debugtoolbar. See:
https://github.com/Pylons/weberror/pull/14
0.12 (08/02/2016)
-----------------
* Fixed an CSRF verification error when the token was of type unicode. See:
https://github.com/Pylons/weberror/pull/11
0.11 (07/21/2015)
-----------------
* Remove XSS issues by requiring a CSRF token for relay commands. Patch by
Jordan Milne.
0.10.3 (11/9/2010)
------------------
* Don't require simplejson on Python 2.6
0.10.2 (2/12/2010)
------------------
* Fix bug when displaying UTF-8 type errors.
* Fix bug when emailing data with UTF-8.
0.10.1 (12/29/2008)
-------------------
* Fix view source when __file__ is .pyo or $py.class.
0.10 (12/18/2008)
-----------------
* Fix indentation of code lines in the traceback view.
* Enable syntax highlighting in view source.
* Fix a case where the response could become unicode; fix the docstring
patching when using python -O
0.9.1 (10/28/2008)
------------------
* Python 2.6 compatibility
* Making main page links more accessible to browsers with no JS on per
Pylons Trac ticket #489.
0.9 (07/08/2008)
----------------
* Switched to using Pygments for highlighting.
* Added better handling of exceptions that don't cleanly convert to str().
* Added dependency library listings for XML output.
0.8 (06/12/2008)
----------------
* Added fairly basic pdbcapture system.
* Fixed errors in unicode handling and exception displaying.
* Updated JS to use jQuery where applicable. Updated jQuery lib and added
jQuery hotkeys plugin.
* Refactored to a flatter layout.
0.8a (02/27/2008)
-----------------
* Fixed error in email due to restructuring of project.
* Added xml formattor output.
* Added try/except in case an objects repr throws an exception.
Keywords: wsgi
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
|