Metadata-Version: 1.1
Name: django-dmcm
Version: 1.0.3
Summary: Django Markdown Content Manager.
Home-page: https://github.com/ahernp/DMCM
Author: Paul Ahern
Author-email: ahernp@ahernp.com
License: BSD License
Description: Django Markdown Content Manager
        ===============================
        
        DMCM is a Django 1.6 app which implements a content management
        system where every item is a page and all the content is written
        in Markdown.
        
        
        Quick start
        -----------
        
        1. Add "dmcm" to your ``INSTALLED_APPS`` settings.
        
        2. The DMCM pages are orgaised in a tree structure. A default root page
           called "home" is included. Add ``SITE_ROOT_SLUG`` to ``settings``::
        
             SITE_ROOT_SLUG = 'home'  # Homepage
        
        3. Include the feedreader URLconf in your project urls.py like this::
        
             url(r'^dmcm/', include('dmcm.urls', namespace='dmcm')),
        
        4. Run ``python manage.py syncdb`` to create the dmcm models.
        
        5. Run ``python manage.py collectstatic`` to copy static files to your
           project's static root.
        
        6. Visit ``/dmcm/`` on your site to see a default home page in DMCM.
        
           Visit ``/dmcm/dmcm/edit/`` to see a list of all DMCM pages and to add more.
        
           Editing in DMCM requires that Django login be enabled.
        
        Dependencies
        ------------
        
        -  `Django 1.6.2 <https://pypi.python.org/pypi/Django/1.6.2>`__
        -  `django-braces 1.4.0 <https://pypi.python.org/pypi/django-braces/1.4.0>`__
        -  `django-reversion 1.8.0 <https://pypi.python.org/pypi/django-reversion/1.8.0>`__
        -  `Markdown 2.4 <https://pypi.python.org/pypi/Markdown/2.4>`__
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
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.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
