Metadata-Version: 1.0
Name: django-category
Version: 0.0.4
Summary: Django categorize content app.
Home-page: http://github.com/praekelt/django-category
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: BSD
Description: Django Category
        ===============
        **Simple category app providing category and tag models.**
        
        .. contents:: Contents
            :depth: 5
        
        Installation
        ------------
        
        #. Install or add ``django-category`` to your Python path.
        
        #. Add ``category`` to your ``INSTALLED_APPS`` setting.
        
        Usage
        -----
        
        Enable categorization and/or tagging on a model by creating ``ManyToMany`` fields to the models provided by ``django-category``, for example::
        
            from django import models
        
            class MyModel(models.Model):
                categories = models.ManyToManyField(
                    'category.Category',
                    help_text='Categorize this item.'
                )
                tags = models.ManyToManyField(
                    'category.Tag',
                    help_text='Tag this item.'
                )
        
        Models
        ------
        
        class Category
        ~~~~~~~~~~~~~~
        Category model to be used for categorization of content. Categories are high level constructs to be used for grouping and organizing content, thus creating a site's table of contents.
        
        Category.title
        ++++++++++++++
        Short descriptive title for the category to be used for display.
            
        Category.slug
        +++++++++++++
        Short descriptive unique name to be used in urls.
            
        class Tag
        ~~~~~~~~~
        Tag model to be used for tagging content. Tags are to be used to describe your content in more detail, in essence providing keywords associated with your content. Tags can also be seen as micro-categorization of a site's content.
        
        Tag.title
        +++++++++
        Short descriptive name for the tag to be used for display.
            
        Tag.slug
        ++++++++
        Short descriptive unique name to be used in urls.
        
        Tag.categories
        ++++++++++++++
        Categories to which the tag belongs.
        
        Authors
        =======
        
        Praekelt Foundation
        -------------------
        * Shaun Sephton
        * Jonathan Bydendyk
        
        Changelog
        =========
        
        0.0.4 (2011-08-24)
        ------------------
        #. Docs, testrunner.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
