summaryrefslogtreecommitdiffstats
path: root/askbot/utils/slug.py
Commit message (Collapse)AuthorAgeFilesLines
* tweak slugify code to avoid double-unidecodeRobert Martin2013-05-241-2/+5
| | | | | | | | Previously, slugify would run a unidecode() on the input_text if unicode slugs were disallowed. This caused a warning if the input_text was already de-unicode. This splits the logic into two steps: first demote input_text if unicode is disallowed; then, choose the appropriate slugify function based on the result.
* updated documentation for the ALLOW_UNICODE_SLUGS settingEvgeny Fadeev2012-07-221-19/+52
|
* added extra user name validation to make it slugification safeEvgeny Fadeev2011-12-291-2/+3
|
* added basic slugification to titles when ALLOW_UNICODE_SLUGS = TrueEvgeny Fadeev2011-12-281-2/+2
|
* questions page works on jinja, without translations yetEvgeny Fadeev2010-09-261-2/+2
|
* finished merge with Omat's change and added setting to enable/disable slugsEvgeny Fadeev2010-09-111-15/+30
|
* implemented unicode aware `slugify` with unidecode libraryonur mat2010-09-111-0/+18