Metadata-Version: 1.0
Name: tipfy.ext.httpexceptions
Version: 0.1.2
Summary: Tipfy extension to catch 500 and 404 pages and show proper message
Home-page: https://github.com/xen/tipfy.ext.httpexceptions
Author: xen
Author-email: m@xen.com
License: BSD
Description: 
        tipfy.ext.httpexceptions
        ========================
        
        Middleware to catch server errors and show proper page.
        
        Setup
        -----
        
        To use this extension in your application follow few simple steps:
        
        * Add to buildout.cfg egg import
        * Add templates 404.html and 500.html to 'common/templates/' folder (place where common templates
        usually located)
        * Modify config.py and add folowing lines::
        
        # Middlewares config
        config['tipfy'] = {
        'middleware': [
        # add this line to start of the list
        'tipfy.ext.httpexceptions.middleware.HTTPExceptionMiddleware',
        ..
        ]
        }
        
        Changes
        =======
        
        0.1: Init release
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
