Metadata-Version: 1.0
Name: pelican-admin
Version: 0.1
Summary: Django admin app for Pelican blogs.
Home-page: https://github.com/fjcaetano/pelican_admin
Author: Flávio Caetano
Author-email: flavio@vieiracaetano.com
License: GPL - see LICENSE.txt
Description: pelican_admin
        ======================
        pelican_admin was developed to assist you manage your `Pelican <https://github.com/getpelican/pelican>`_ blog.
        
        This is an alpha previous release and will have upcoming new features.
        
        .. contents::
        
        Usage
        -----
        
        Insert **pelican_admin** to the end of your INSTALLED_APPS in settings.py::
        
            INSTALLED_APPS = (
                ...
                'pelican_admin',
                ...
            )
            
        Don't forget to sync your db with::
        
        	python manage.py syncdb
        	
        Or, if you're using `south <http://pypi.python.org/pypi/South/>`_::
        
        	python manage.py migrate pelican_admin
        	
        Make sure your pelican service is running in `autoreload` mode::
        
        	pelican /path/to/your/blog -s /path/to/pelican/settings -r &
        	
        This will have your pelican to reload itself whenever your folder blog changes. Without this configuration, **pelican_admin** is pretty much useless. So be sure to use it.
        
        Features
        --------
        
        - **Settings management**: change your pelican settings through Django admin and have it automatically working.
        - **Posting management**: CRUD for blog postings via interface.
        
        Upcoming Features
        -----------------
        - **Pelican service management**: this will be a module available for `django-admin-tools <https://bitbucket.org/izi/django-admin-tools/wiki/Home>`_ where you'll be able to see the current service status and perform actions like *stop*, *start*, and *restart*.
        
        Requirements
        ------------
        * `Django 1.4+ <http://pypi.python.org/pypi/Django/1.4>`_
        
        Installation
        ------------
        I'll just assume you're already familiarized with pelican and move on.
        
        Install using pip::
        
            pip install pelican_admin
            
        Or you can clone the project and install it via::
        
            python setup.py install
        
        Check This Out
        --------------
        1. `GitHub Repository <https://github.com/fjcaetano/pelican_admin>`_
        2. `PyPi package <http://pypi.python.org/pypi/pelican_admin/0.1>`_
        3. `Owner's website <http://flaviocaetano.com>`_
        4. `Owner's Blog <http://blog.flaviocaetano.com>`_
        
        
        Contact
        ==============
        If you have any comments, ideas questions, feedback, etcetera, email me and we'll be in touch. I'm `<flavio@vieiracaetano.com>`_
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
