Metadata-Version: 1.1
Name: djangocms-blogit
Version: 0.2.1
Summary: Simple django-cms blog app
Home-page: http://pypi.python.org/pypi/djangocms-blogit/
Author: Dino Perovic
Author-email: dino.perovic@gmail.com
License: BSD
Description: ================
        djangocms-blogit
        ================
        
        A simple blog app for `django-cms`_.
        
        :Version: 0.2.1
        :Download: http://pypi.python.org/pypi/djangocms-blogit/
        :Source: http://github.com/dinoperovic/djangocms-blogit/
        :Docs: http://djangocms-blogit.readthedocs.org/
        :Dev Status: Alpha
        
        
        Dependencies
        ------------
        
        * `django-cms`_ >= 3.0.0
        * `django-filer`_ >= 0.9.5
        * `django-hvad`_ >= 0.4.0
        * `django-taggit`_ >= 0.10
        
        Installation
        ------------
        
        To install ``djangocms-blogit`` with ``pip`` run::
        
            $ pip install djangocms-blogit
        
        
        Setup
        -------------
        
        Setup `django-cms`_ and `django-filer`_ than add to ``INSTALLED_APPS``:
        
        .. code:: python
        
            INSTALLED_APPS = (
                ...
                'hvad',
                'taggit',
                'blogit',
                ...
            )
        
        
        Settings
        -------------
        You can browse all the setings in a `settings.py`_ file.
        
        **Url translation example**:
        
        .. code:: python
        
            BLOGIT_CATEGORY_URL_TRANSLATION = (
                ('en', 'category'),
                ('hr', 'kategorija'),
                ...
            )
        
        
        
        .. _settings.py: https://github.com/dinoperovic/djangocms-blogit/blob/master/blogit/settings.py
        .. _django-cms: https://github.com/divio/django-cms
        .. _django-filer: https://github.com/stefanfoulis/django-filer
        .. _django-hvad: https://github.com/kristianoellegaard/django-hvad
        .. _django-taggit: https://github.com/alex/django-taggit
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
