summaryrefslogtreecommitdiff
path: root/django/utils
AgeCommit message (Expand)Author
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss
2008-06-30Fixed #6994 -- For fastcgi, set a more sensible default umask.Malcolm Tredinnick
2008-06-26Fixed #7542 -- Fixed bug in urlize where it was appending 'http://' to the li...Adrian Holovaty
2008-06-26Fixed #7109 -- Quote certain values before passing them for substitution inMalcolm Tredinnick
2008-06-19Fixed #7355 -- Modified urlize utility to handle https:// addresses. Thanks f...Russell Keith-Magee
2008-06-16Fixed #7228 -- Fixed our ETag header creation to meet the HTTP spec, by quoti...Adrian Holovaty
2008-06-06Refs #7297 -- Corrected some doctest strings internal to the utils.text modul...Russell Keith-Magee
2008-04-27Merged the queryset-refactor branch into trunk.Malcolm Tredinnick
2008-03-18Fixed #6687: added outlog/errlog options to runfcgi. Thanks, tamas.Jacob Kaplan-Moss
2008-03-18Fixed #6175 -- Use os._exit() instead of sys.exit() in child processes. BasedMalcolm Tredinnick
2008-03-17Fixed #6679 -- In `decorator_from_middleware`, don't unpack arguments when ca...Gary Wilson Jr
2008-03-08Removed unused import, corrected a typo, and made some styling fixes.Gary Wilson Jr
2008-02-29Fixed #5603 -- Allow customization of the language cookie name. Thanks, moe.Malcolm Tredinnick
2008-02-29Fixed #5846 -- Bullet-proofed the default timezone encoding test.Malcolm Tredinnick
2008-02-25Fixed #5701 -- Fixed decorators to take the name, attributes, and docstring o...Gary Wilson Jr
2008-02-21Fixed #6627 -- Made dict.clear() work for SortedDicts.Malcolm Tredinnick
2008-02-18Fixed #6611 -- When copying a SortedDict, make a new copy of the keys list.Malcolm Tredinnick
2008-02-16Made a bunch of small doc rewordings from changes over the past couple of weeksAdrian Holovaty
2008-02-06Fixed #6409 -- Unbreak compound locale name parsing (e.g. zh-cn).Malcolm Tredinnick
2008-02-03Fixed #6279, #6514 -- Fixed some HTML escaping problems in the urlize filter.Malcolm Tredinnick
2008-02-03Fixed #6303 -- Handle missing language specification in feed generation. Tha...Malcolm Tredinnick
2008-02-03Fixed #6301 -- Added '*' to the characters not converted by iri_to_uri(), asMalcolm Tredinnick
2008-02-03Fixed #6465 -- Tweaked MergeDict.getlist() to work with Django's MultiValueDi...Malcolm Tredinnick
2007-12-11Minor style fixes.Gary Wilson Jr
2007-12-04Removed comma splices in max_length DeprecationWarning and elsewhere in the m...Adrian Holovaty
2007-12-03Fixed #5657 -- Use string.ascii_letters instead of ascii.letters in the urlizeMalcolm Tredinnick
2007-12-02Fixed #6071 -- Fixed another infinite recursion problem in SafeString andMalcolm Tredinnick
2007-12-02Changed use of `maxlength` to issue a `DeprecationWarning` instead of `Pendin...Gary Wilson Jr
2007-12-01Fixed #6021 -- Removed some brain damage from SafeString. Not quite sure what IMalcolm Tredinnick
2007-12-01Edited docstring changes from [6714]Adrian Holovaty
2007-11-29Fixed #6050 -- Handled edge-case of duplicate keys being passed whenMalcolm Tredinnick
2007-11-29Fixed #6023 -- Fixed daylight savings determination for years beyond 2038 onMalcolm Tredinnick
2007-11-29Fixed #5813 -- Taught the CacheMiddleware to respect any max-age HTTP headerMalcolm Tredinnick
2007-11-25Made `MultiValueDict`'s `get` and `getlist` method docstrings more descriptive.Gary Wilson Jr
2007-11-25Minor styling fix in `DotExpandedDict.__init__`.Gary Wilson Jr
2007-11-25Changed several hardcoding of `dict` method calls in `django.utils.datastruct...Gary Wilson Jr
2007-11-25In `MergeDict` class, changed variable names to not clash with `dict` builtin.Gary Wilson Jr
2007-11-19Fixed #5978 -- Gave `LOCALE_PATHS` a default setting of an empty tuple and re...Gary Wilson Jr
2007-11-19Some minor changes to the `patch_vary_headers` function:Gary Wilson Jr
2007-11-19Removed `vary_delim_re` in `django/utils/cache.py` in favor of existing `cc_d...Gary Wilson Jr
2007-11-17Fixed #5960 -- Fixed some Python 2.3 incompatibilities.Malcolm Tredinnick
2007-11-17Fixed some missed auto-escaping and URL quoting cases in the urlize filter.Malcolm Tredinnick
2007-11-17Translating safe strings should return a safe result.Malcolm Tredinnick
2007-11-14Implemented auto-escaping of variable output in templates. Fully controllable...Malcolm Tredinnick
2007-11-12Simplified `SortedDict.__deepcopy__` now that the its constructor can take a ...Gary Wilson Jr
2007-11-04Fixed #5640 -- Added some extra error reporting when smart_unicode() orMalcolm Tredinnick
2007-11-04Fixed #5869 -- Corrected documentation for `now` template tag's "r" format ch...Gary Wilson Jr
2007-10-31Fixed #5816 -- Fixed a regression from [6333] that generates incorrect cookie...Gary Wilson Jr
2007-10-28Corrected a typo and made some style fixes.Gary Wilson Jr
2007-10-26i18n security fix. Details will be posted shortly to the Django mailing lists...Jacob Kaplan-Moss