summaryrefslogtreecommitdiff
path: root/django/utils/dateformat.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-12-13 13:51:28 +0000
committerJannis Leidel <jannis@leidel.info>2010-12-13 13:51:28 +0000
commit7292af85422980df3fefcd0ce131f8a37fe466e9 (patch)
tree17f6383a2c90aae34dea41418f9499131193d806 /django/utils/dateformat.py
parentdc8c4f087980dc746e41bebc47a53f95a0cbb0c3 (diff)
Fixed #14570 -- Added new date format character for alternative month names using the new context capabilities. Also add context to Associated Press style month names (refs #9988). Thanks to Claude and shell_dweller.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14899 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/utils/dateformat.py')
-rw-r--r--django/utils/dateformat.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/django/utils/dateformat.py b/django/utils/dateformat.py
index efec5c35fe..f89300938e 100644
--- a/django/utils/dateformat.py
+++ b/django/utils/dateformat.py
@@ -14,12 +14,12 @@ Usage:
import re
import time
import calendar
-from django.utils.dates import MONTHS, MONTHS_3, MONTHS_AP, WEEKDAYS, WEEKDAYS_ABBR
+from django.utils.dates import MONTHS, MONTHS_3, MONTHS_ALT, MONTHS_AP, WEEKDAYS, WEEKDAYS_ABBR
from django.utils.tzinfo import LocalTimezone
from django.utils.translation import ugettext as _
from django.utils.encoding import force_unicode
-re_formatchars = re.compile(r'(?<!\\)([aAbBcdDfFgGhHiIjlLmMnNOPrsStTUuwWyYzZ])')
+re_formatchars = re.compile(r'(?<!\\)([aAbBcdDEfFgGhHiIjlLmMnNOPrsStTUuwWyYzZ])')
re_escaped = re.compile(r'\\(.)')
class Formatter(object):
@@ -138,6 +138,10 @@ class DateFormat(TimeFormat):
"Day of the week, textual, 3 letters; e.g. 'Fri'"
return WEEKDAYS_ABBR[self.data.weekday()]
+ def E(self):
+ "Alternative month names as required by some locales. Proprietary extension."
+ return MONTHS_ALT[self.data.month]
+
def F(self):
"Month, textual, long; e.g. 'January'"
return MONTHS[self.data.month]