django-autoslug 1.5.0
An automated slug field for Django.
Downloads ↓ | Package Documentation
django-autoslug
===============
Django-autoslug is a reusable Django application that provides an improved
slug field which can automatically:
a) populate itself from another field,
b) preserve uniqueness of the value and
c) use custom `slugify()` functions for better i18n.
Examples
--------
A simple example::
from django.db.models import CharField, Model
from autoslug import AutoSlugField
class Article(Model):
title = CharField(max_length=200)
slug = AutoSlugField(populate_from='title')
More complex example::
from django.db.models import CharField, DateField, ForeignKey, Model
from django.contrib.auth.models import User
from autoslug import AutoSlugField
class Article(Model):
title = CharField(max_length=200)
pub_date = DateField(auto_now_add=True)
author = ForeignKey(User)
slug = AutoSlugField(populate_from=lambda instance: instance.title,
unique_with=['author__name', 'pub_date__month'],
slugify=lambda value: value.replace(' ','-'))
Documentation
-------------
See complete `HTML documentation <http://packages.python.org/django-autoslug/>`_
for details. Sometimes it may get slightly outdated. You can always have the
latest snapsnot by building it from the source (using Sphinx).
Community
---------
This application was initially created by Andy Mikhailenko and then improved
by other developers. They are listed in :file:`AUTHORS`.
Please feel free to file issues and/or submit patches.
See :file:`CONTRIBUTING` for hints related to the preferred workflow.
Licensing
---------
Django-autoslug is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
Django-autoslug is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program; see the file COPYING.LESSER. If not,
see `GNU licenses <http://gnu.org/licenses/>`_.
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| django-autoslug-1.5.0.tar.gz (md5) | Source | 2011-12-18 | 8KB | 1266 | |
- Author: Andy Mikhailenko
- Documentation: django-autoslug package documentation
- Home Page: http://bitbucket.org/neithere/django-autoslug/
- Download URL: http://bitbucket.org/neithere/django-autoslug/get/tip.zip
- Keywords: django field slug auto unique transliteration i18n
- License: GNU Lesser General Public License (LGPL), Version 3
- Requires python (>= 2.4), django (>= 1.0)
-
Categories
- Development Status :: 5 - Production/Stable
- Environment :: Web Environment
- Framework :: Django
- Intended Audience :: Developers
- License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
- Programming Language :: Python
- Topic :: Software Development :: Libraries :: Python Modules
- Topic :: Text Processing :: General
- Package Index Owner: neithere
- DOAP record: django-autoslug-1.5.0.xml
