Metadata-Version: 1.0
Name: django-error-pages
Version: 0.2
Summary: Use any HTTP error status with Django.
Home-page: https://github.com/Roejames12/django-error-pages/
Author: James Roe
Author-email: roejames12@hotmail.com
License: GNU General Public License (GPL)
Description: Django Error Pages
        ==================
        
        Django Error Pages extends Django to allow you to raise and handle any type of
        HTTP error, such as 400, and 403.
        
        It behaves just like the default Django 404 and 500 error pages, which render
        404.html and 500.html respectively inside your apps template folder, but display
        some information in DEBUG mode.
        
        It is very flexible, and covers a wide range of error codes:
        400-418, 422-426,
        500-505, 507, 509, 510
        
        Configurability & Extendibility
        -------------------------------
        
        Django Error Pages is very easy to use!
        
        How easy it is to raise a 403 forbidden:
        
        ```python
        from django.shortcuts import render_to_response
        
        from error_pages.http import Http403
        
        def homepage(request):
            if user is unauthorized:
                raise Http403
            return render_to_response('index.html')
        ```
        
        And of course, it'll render a 403.html template for you if DEBUG mode is off.
        
        Also included is the ability to render your Django template error pages directly from Apache.
        
        ```apacheconf
        ErrorDocument 400 /__errorpage__/?code=400
        ```
        
        Using mod_rewrite, you should be able to get the error page to render without changing
        the URL.
        
        Configuring & Setting up
        ------------------------
        
        * Add it to your middleware
        
        ```python
        MIDDLEWARE_CLASSES = (
            ...
            'error_pages.middleware.ErrorPageMiddleware',
        )
        ```
        
        * And add the URL configuration to your root URL's
        
        ```python
        from django.conf.urls.defaults import patterns, url
        
        urlpatterns = patterns('',
            ...
            url(r'^__errorpage__/$', 'error_pages.views.display_error'),
        )
        ```
        
        Installing
        ----------
        
        * Download django-error-pages from https://github.com/Roejames12/django-error-pages/tarball/master
        * Or `pip install django-error-pages`
        * `pip install django-error-pages==dev` for the absolute bleeding edge.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
