django1/django/utils
Russell Keith-Magee fea159282b Fixed #14406 -- Added a Python 2.4 compatibility to the logging interface. Thanks to Łukasz Rekucki for the report, and to Luke Plant for original patch this was based on.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13989 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-10-06 15:02:26 +00:00
..
simplejson Fixed #10006 -- Avoid inadvertently using third-party "json" module. 2009-02-27 05:14:11 +00:00
translation Fixed #14306 -- Cleaned up django.utils.translation module a bit to be quicker. Thanks for the report and initial patch, Anssi Kääriäinen. 2010-09-27 15:25:38 +00:00
__init__.py Imported Django from private SVN repository (created from r. 8825) 2005-07-13 01:25:57 +00:00
_os.py Fixed #9579 -- Properly handle apps running with (and specifically, loading templates from) a current working directory path that contains non-ASCII characters. Thanks for the report to gonzalodelgado and for advice on how to fix it to Daniel Pope. 2008-11-13 19:03:42 +00:00
_threading_local.py More typo fixing. :-( 2009-03-20 00:58:35 +00:00
autoreload.py Made auto-reloading for the dev server a little more friendly in the Jython 2008-08-08 17:54:35 +00:00
cache.py Refined changes made in r12546 to also respect the request.LANGUAGE_CODE in case the LocaleMiddleware is used to discover the language preference. 2010-03-01 10:19:01 +00:00
checksums.py Fixed #5475 -- Added the Luhn check algorithm to django.utils.checksums so that 2007-10-20 13:40:20 +00:00
copycompat.py Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Thanks, Jeremy Dunck. 2009-12-17 22:06:41 +00:00
daemonize.py Fixed #6994 -- For fastcgi, set a more sensible default umask. 2008-06-30 11:22:41 +00:00
datastructures.py Fixed #12632 -- Improved performance of `SortedDict`. Thanks, Alex Gaynor. 2010-09-11 02:28:16 +00:00
dateformat.py Fixed #13547 -- Made sure the ISO 8601 date formatting introduced in r12058 uses "T" as the separator between the date and the time value to increase real world usefulness. 2010-05-16 15:54:10 +00:00
dates.py Merged Unicode branch into trunk (r4952:5608). This should be fully 2007-07-04 12:11:04 +00:00
datetime_safe.py Fixed #12524 -- Clarified handling of pre-1000AD dates in datetime_safe (and thus, the serializers). Patch includes moving the datetime_safe tests into the utils regressiontests module. Thanks to gsf for the report and initial patch. 2010-02-13 14:02:32 +00:00
decorators.py Corrected 'name' of functions wrapped with method_decorator 2010-05-13 11:11:27 +00:00
dictconfig.py Fixed #12012 -- Added support for logging. Thanks to Vinay Sajip for his draft patch, and to the many people who gave feedback during development of the patch. 2010-10-04 15:12:39 +00:00
encoding.py Fixed #14290 -- Made format localization faster by caching the format modules. Thanks, Teemu Kurppa and Anssi Kääriäinen for the report and initial patches. 2010-09-27 15:25:08 +00:00
feedgenerator.py Fixed #3469 -- added django.utils documentation for stable bits 2010-05-08 21:38:27 +00:00
formats.py Fixed #14053 -- Also localize long integers. Thanks, David Danier. 2010-09-27 16:21:16 +00:00
functional.py Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds. Thanks to timo and claudep for the patch. 2010-05-04 14:00:30 +00:00
hashcompat.py Fixed #13653: Fixed django.utils.hashcompat to support running on Python 2.4 with standalone hashlib. 2010-05-28 11:46:03 +00:00
html.py Fixed a whole bunch of small docs typos, errors, and ommissions. 2009-04-03 18:30:54 +00:00
http.py Fixed #13765 - 'safe' parameter for urlencode filter 2010-09-13 23:01:34 +00:00
importlib.py Fixed #8193: all dynamic imports in Django are now done correctly. I know this because Brett Cannon borrowed the time machine and brought Python 2.7's '`importlib` back for inclusion in Django. Thanks for the patch-from-the-future, Brett! 2009-03-18 16:55:59 +00:00
itercompat.py Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds. Thanks to timo and claudep for the patch. 2010-05-04 14:00:30 +00:00
log.py Fixed #14406 -- Added a Python 2.4 compatibility to the logging interface. Thanks to Łukasz Rekucki for the report, and to Luke Plant for original patch this was based on. 2010-10-06 15:02:26 +00:00
module_loading.py Fixed #13464 -- Reworked module_has_submodule to break the requirement for loader and finder to be the same class. Thanks to Alex Gaynor for the report and patch, and Brett Cannon for suggesting the approach. 2010-05-04 06:14:47 +00:00
numberformat.py Fixed #14290 -- Made format localization faster by caching the format modules. Thanks, Teemu Kurppa and Anssi Kääriäinen for the report and initial patches. 2010-09-27 15:25:08 +00:00
regex_helper.py Changed the reverse() call for creating URLs to convert a "." in the reg-exp 2008-09-03 17:53:45 +00:00
safestring.py Fixed #6071 -- Fixed another infinite recursion problem in SafeString and 2007-12-02 20:17:10 +00:00
stopwords.py Merged Unicode branch into trunk (r4952:5608). This should be fully 2007-07-04 12:11:04 +00:00
synch.py Removed a bunch of annoying trailing whitespace. 2007-04-25 07:25:22 +00:00
termcolors.py Fixed #12849 -- Corrected the way strings are encoded for display by the colorizer so that they work with unicode. Thanks to jype for the report, and frasern for his work on the issue. 2010-03-18 13:24:11 +00:00
text.py Fixed #11021 -- Clarified newline stripping behavior in the truncatewords and truncatewords_html filters. Thanks to Ben Spaulding for the report and patch. 2010-08-07 14:57:24 +00:00
thread_support.py Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or 2008-07-21 07:57:10 +00:00
timesince.py Fixed #9065 -- Fixed the `timesince` and `timeuntil` template tags to work when both values involved are date objects, thanks to morty and mboersma for the patch. 2009-03-30 21:32:34 +00:00
tree.py Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Thanks, Jeremy Dunck. 2009-12-17 22:06:41 +00:00
tzinfo.py Fixed #10979 -- Fixed misleading FixedOffset.__repr__(). Thanks, gsong 2010-01-10 17:28:20 +00:00
version.py Fixed #10372: made `get_svn_revision()` more robust. Thanks, mboersma. 2009-04-03 20:28:23 +00:00
xmlutils.py Eliminated lots of mutable default arguments (since they are bugs 2006-06-03 13:37:34 +00:00