1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- """
- Smart slugify
- """
- import django.template.defaultfilters
- use_unidecode = True
- try:
- from unidecode import unidecode
- except ImportError:
- use_unidecode = False
-
- def slugify(string):
- if use_unidecode:
- string = unidecode(string)
- return django.template.defaultfilters.slugify(string)
- """
- Lazy translate that allows us to access original message
- """
- from django.utils import translation
- def ugettext_lazy(str):
- t = translation.ugettext_lazy(str)
- t.message = str
- return t
- def get_msgid(gettext):
- try:
- return gettext.message
- except AttributeError:
- return None
- """
- Random string
- """
- from django.utils import crypto
-
- def get_random_string(length):
- return crypto.get_random_string(length, "1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM")
- """
- Date formats
- """
- from django.utils.formats import get_format
- formats = {
- 'DATE_FORMAT': '',
- 'DATETIME_FORMAT': '',
- 'TIME_FORMAT': '',
- 'YEAR_MONTH_FORMAT': '',
- 'MONTH_DAY_FORMAT': '',
- 'SHORT_DATE_FORMAT': '',
- 'SHORT_DATETIME_FORMAT': '',
- }
- for key in formats:
- formats[key] = get_format(key).replace('P', 'g:i a')
|