Metadata-Version: 1.0
Name: redsolutioncms.django-catalog
Version: 2.0.1
Summary: Django generic catalog application. Organize objects in tree structure, allows
to make links for objects.
Home-page: UNKNOWN
Author: Ivan Gromov
Author-email: ivan.gromov@redsolution.ru
License: GPL
Description: ================
        django-catalog
        ================
        
        Application allows to organize objects in tree hierarhy.
        
        This Documentation is poor for now, but it contains instructions 
        how to set up application with default settings. 
        
        Install:
        --------
        
        1. Download ``django-catalog`` and include it into python path.
         
        2. Edit your ``settings.py`` this way: ::
        
            INSTALLED_APPS += [
                'catalog',
                'catalog.contrib.defaults',
            ]
          
        And insert one of this strings into ``urlconf.py``: :: 
        
            urlpatterns += patterns('', 
                (r'^catalog/', include('catalog.urls.by_id')),
            )
        
        or ::
        
            urlpatterns += patterns('', 
                (r'^catalog/', include('catalog.urls.by_slug')),
            )
        
        Method ``by_id`` will configure views to display tree items urls like this:
        ``http://example.com/catalog/my-item-47/``. Where ``my-item`` is object's slug,
        and ``47`` is TreeItem id attribute.
        
        Method ``by_slug`` will configure views to display tree items urls like this:
        ``http://example.com/catalog/item-my-item/``. Where ``my-item`` is object's slug,
        and ``item`` is Item models name.
        
        Notice, that when you use method ``by_slug``, every object **MUST** have ``slug`` 
        attribute.
        
        Classifiers:
        -------------
        
        `Frontpage handlers`_
        
        .. _`Frontpage handlers`: http://www.redsolutioncms.org/classifiers/frontpage
Keywords: django catalog
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
Classifier: Natural Language :: Russian
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary
