Metadata-Version: 1.0
Name: django-aislug
Version: 0.1.1
Summary: Intelligent slug computing
Home-page: https://github.com/aino/django-ainslug
Author: Mikko Hellsing
Author-email: mikko@aino.se
License: BSD
Description: django-aislug
        =============
        
        A slug field that automatically calculates its value.
        
        Options
        -------
        All options that are available for ``django.db.models.SlugField`` are also
        available ``AISlugField``.
        
        - ``populate_from``: Property on the model that is the base for the computed
          slug, defaults to ``'title'``
        
        - ``slugify``: User defined slugify callback function to compute the slug from
          ``populate_from``
        
        - ``invalid``: List or function that returns a list of invalid values
        
        - ``queryset``: Queryset to use for making the slug unique within
          the queryset scope, default value is the default manager
        
        - ``update``: If false the slug will not be updated  from ``populate_from`` on
          subsequent saves.
        
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Framework :: Django
