lck.django 0.8.5 documentation

This Page

lck.django.tags.helpers

Functions

parse_tag_input(tagstring)

Returns a sorted list of unique tag stems. Parses a specified tagstring, with multiple word input being activated and delineated by commas and double quotes. Quotes take precedence, so they may contain commas. If the tagstring doesn’t contain any commas, unquoted spaces are treated as tag divisors as well.

Ported from Jonathan Buchanan’s django-tagging

split_strip(string, delimiter=u', ')

Splits string on delimiter, stripping each resulting string and returning a list of non-empty strings.

Ported from Jonathan Buchanan’s django-tagging