Metadata-Version: 1.1
Name: leonardo-multisite
Version: 2015.7.0
Summary: Full support for multisite in Leonardo CMS
Home-page: https://github.com/leonardo-modules/leonardo-multisite.git
Author: Michael Kuty
Author-email: kutymichael@gmail.com
License: UNKNOWN
Description: ==================
        Leonardo Multisite
        ==================
        
        Full support for multisite with security. Uses reuqest processing for filtering page and ``django-allowedsites`` for ALLOWED_HOSTS based on the domains in django.contrib.sites.
        
        .. contents::
            :local:
        
        Installation
        ------------
        
        .. code-block:: bash
        
            pip install leonardo-multisite
        
        And enable it in the admin or add ``MULTI_SITE_ENABLED`` to your settings.
        
        or as leonardo bundle
        
        .. code-block:: bash
        
            pip install django-leonardo[multisite]
        
        For FeinCMS users
        -----------------
        
        settings.py::
        
            MULTI_SITE_ENABLED = True
        
            MIDDLEWARES += ('leonardo_multisite.middleware.MultiSiteMiddleware',)
        
            from allowedsites import CachedAllowedSites
        
            ALLOWED_HOSTS = CachedAllowedSites()
        
        Read More
        ---------
        
        * https://github.com/django-leonardo/django-leonardo
        * https://github.com/feincms/feincms
        * https://github.com/kezabelle/django-allowedsites
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
