Metadata-Version: 1.1
Name: django-pagelets
Version: 0.9.0
Summary: Simple, flexible app for integrating static, unstructured content in a Django site
Home-page: http://github.com/caktus/django-pagelets/
Author: Caktus Consulting Group
Author-email: solutions@caktusgroup.com
License: BSD
Description: django-pagelets
        ===============
        
        django-pagelets is a simple, flexible app for integrating static, unstructured content in a Django site.
        
        For complete documentation, checkout `<http://django-pagelets.readthedocs.org>`_
        
        Features
        --------
        
        - "Pagelets" for adding small pieces of content to otherwise static templates
        - CMS "pages" which include any number of pagelets and, if needed, attachments
        - Different pagelet content types including HTML and Markdown
        - An integrated WYSIWYG editor (`WYMeditor <http://www.wymeditor.org/>`_) which can be selectively enabled/disabled
        
        Required Dependencies
        ---------------------
        
        - Django 1.3+
        - Django admin site
        - The `django.core.context_processors.request` context processor
        
        Optional Dependencies
        ---------------------
        
        - `jQuery 1.3 <http://jquery.com>`_
        - `WYMeditor <http://www.wymeditor.org/>`_ (included in pagelets media)
        
        
        Installation and Setup
        ----------------------
        
        #. django-pagelets is available on `PyPI <http://pypi.python.org/pypi/django-pagelets>`_, so the easiest way to install it is to use `pip <http://pip.openplans.org/>`_::
        
            pip install django-pagelets
        
        #. Add `pagelets` to INSTALLED_APPS in settings.py and run syncdb::
        
                INSTALLED_APPS = (
                    ...,
                    'pagelets',
                    ...
                )
        
        #. Add `django.core.context_processors.request` to TEMPLATE_CONTEXT_PROCESSORS::
        
            TEMPLATE_CONTEXT_PROCESSORS = (
                "django.contrib.auth.context_processors.auth",
                "django.core.context_processors.debug",
                "django.core.context_processors.i18n",
                "django.core.context_processors.media",
                "django.core.context_processors.static",
                "django.contrib.messages.context_processors.messages",
                "django.core.context_processors.request", # <----
            )
        
        #. Add the pagelets URLs to urls.py, e.g.::
        
            urlpatterns += patterns('',
                (r'^pagelets-management/', include('pagelets.urls.management')),
                (r'^', include('pagelets.urls.content')),
            )
        
        #. Visit the admin site, add and save a new page, and click the View on site link.  If everything is setup correctly, you should be able to see and edit the content you just added.
        
        
        Development sponsored by `Caktus Consulting Group, LLC.
        <http://www.caktusgroup.com/services>`_.
        
Platform: UNKNOWN
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
