Metadata-Version: 1.0
Name: dj.paste
Version: 1.8
Summary: Yet another WSGI Paste factory for paste
Home-page: http://git.minitage.org/git/others/dj.paste
Author: Mathieu Pasquet
Author-email: kiorky@cryptelium.net
License: BSD
Description: Introduction
        ============
        
        Yet another `paste`_ factories for django
        
        .. _paste: http://pythonpaste.org/
        
        .. contents::
        
        What is dj.paste
        ==================
        
        It is just another `PythonPaste applications`_ wsgi wrappers:
        
        .. _PythonPaste applications: http://pythonpaste.org/deploy/#paste-app-factory
        
        * ``dj.paste#mono`` or only ``dj.paste``:
        A paste factory to use when you have only one django on your instance
        
        * ``dj.paste#multi``
        A paste factory to use when you have more than one django on your instance
        but be careful that there is a fakeDjangoModule trick that can lead to problems (not seen so far)
        
        
        How to use dj.paste
        =====================
        
        Django App
        ----------------
        With paste, just add another app entry with a django_settings_module  variable to point to
        your django settings ::
        
        [composite:main]
        use = egg:Paste#urlmap
        / = foo
        
        [app:foo]
        use=egg:dj.paste
        django_settings_module=foo.settings
        
        django factory
        -----------------------------------------
        
        Checking that everything is in place::
        
        >>> resp = app.get('/')
        >>> 'first django' in resp.body.lower()
        T
        
        
        
        Changelog
        =========
        
        UP
        ---------
        - add a mono factory (and now the default)
        
        1.3 - 1.4
        ----------
        
        * fix multiple djangos in the same paste instance
        
        1.2
        -----
        
        * fix script_path, see http://code.djangoproject.com/ticket/1516
        
        1.0
        ----------------
        * Initial release
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
