| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-07-01 | Fixed #22691 -- Added aliasing to cached_property. | Curtis | |
| 2014-06-26 | Added newline to fix flake8 error. | Tim Graham | |
| 2014-06-26 | Fixed #22857 -- Reset translations when only .mo file changed | Claude Paroz | |
| No need to restart the server when a translation file changes. Refs #9523. Thanks artscoop for the report and Tim Graham for the review. | |||
| 2014-06-23 | Cleaned temp dir in symlinks_supported() | Claude Paroz | |
| Refs #21482. | |||
| 2014-06-23 | Fixed #8033 -- Explained app registry error during translation setup | Claude Paroz | |
| Thanks Tim Graham and Aymeric Augustin for the review. | |||
| 2014-06-23 | Fixed #22867 -- Memoized django.utils.version.get_git_changeset(). | Loic Bistuer | |
| This follows commits 80f4487 and 01399fa; original patch had to be reverted because it wasn't Python 2.6 compatible and we need it to be in order to build docs on the djangoproject.com server. This fix should be replaced by @lru_cache as soon as we drop Python 2.6 compatibility. Thanks Florian Apolloner for the review and Alexander Schepanovski for the original patch. | |||
| 2014-06-19 | Revert "Fixed #22867 -- Memoized django.utils.version.get_git_changeset()." | Aymeric Augustin | |
| This reverts commit 80f4487 temporarily, because that commit prevented the djangoproject.com server from building the docs, because it still uses Python 2.6. | |||
| 2014-06-19 | Fixed #22867 -- Memoized django.utils.version.get_git_changeset(). | Alexander Schepanovski | |
| This improves pickling speed in prelease versions of Django; refs #21430. | |||
| 2014-06-16 | Fixed #21498: Don't use a fallback language if you're en-us. | Andrew Godwin | |
| 2014-06-13 | Added django.utils.six.buffer_types | Shai Berger | |
| and used it in the Oracle SchemaEditor. Refs #22715. | |||
| 2014-06-12 | Fixed #22814 -- Allowed ISO-8601 [+-]hh timezone format in parse_datetime | Richard Eames | |
| 2014-06-11 | Fixed #21430 -- Added a RuntimeWarning when unpickling Models and QuerySets ↵ | Anubhav Joshi | |
| from a different Django version. Thanks FunkyBob for the suggestion, prasoon2211 for the initial patch, and akaariai, loic, and charettes for helping in shaping the patch. | |||
| 2014-06-07 | Optimize is_protected_type slightly (used by force_text, which is used ↵ | Alex Gaynor | |
| basically everywhere) | |||
| 2014-06-07 | Fixed #20815 -- Don't enforce unbuffered I/O on Python 3. | Aymeric Augustin | |
| No test because this code is already deprecated (part of FastCGI support). | |||
| 2014-06-07 | Simplified module_has_submodule on Python >= 3.3. | Aymeric Augustin | |
| Stopped using the imp module on Python >= 3.3. Refs #21628. | |||
| 2014-06-07 | Made a test compatible with Python 2 and 3. | Aymeric Augustin | |
| 2014-06-06 | Fixed #22773 -- Forced templatize() to return unicode | Claude Paroz | |
| 2014-06-03 | Fixed #22681 -- Made TarArchive recognize leading directories properly. | Alexandr Shurigin | |
| 2014-05-31 | Note that the stdlib's version of pbkdf2_hmac will also be used in the ↵ | Alex Gaynor | |
| upcoming Python 2.7.8 release | |||
| 2014-05-28 | Fixed several typos in Django | Alex Gaynor | |
| 2014-05-28 | Fixed constant_time_compare on Python 2.7.7 | Florian Apolloner | |
| Python 2.7.7 includes compare_digest in the hmac module, but it requires both arguments to have the same type. This is usually not a problem on Python 3 since everything is text, but we have mixed unicode and str on Python 2 -- hence make sure everything is bytes before feeding it into compare_digest. | |||
| 2014-05-25 | Removed code deprecated from Django 1.2 | Claude Paroz | |
| 2014-05-24 | Applied unicode_literals to makemessages command | Claude Paroz | |
| This also fixes #22686 as some sort of side-effect. | |||
| 2014-05-21 | Fixed #20477: Allowed list of modules for FORMAT_MODULE_PATH | Martin Brochhaus | |
| Previously the FORMAT_MODULE_PATH setting only accepted one string (dotted module path). A feature has been added to also allow a list of strings. This is useful when using several reusable third party apps that define new formats. We can now use them all and we can even override some of the formats by providing a project-wide format module. | |||
| 2014-05-19 | Revert "Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of ↵ | Tim Graham | |
| modules." This reverts commit 950b6de16ac2f8135612f2ed5984c090dd8e4dcf. | |||
| 2014-05-19 | Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of modules. | Martin Brochhaus | |
| Previously the FORMAT_MODULE_PATH setting only accepted one string (dotted module path). This is useful when using several reusable third party apps that define new formats. We can now use them all and we can even override some of the formats by providing a project-wide format module. | |||
| 2014-05-17 | Fixed #6668 -- Optimized utils.text wrap function | Markus Amalthea Magnuson | |
| This fixes a failing test after applying an optimization of the utils.text.wrap function by user SmileyChris. | |||
| 2014-05-17 | Fixed several flake8 errors, including one where a test wouldn't be run | Alex Gaynor | |
| 2014-05-16 | Optimized make_aware/naive by removing redundant checks. Refs #22625. | Aymeric Augustin | |
| Also added tests with pytz and removed misplaced tests. | |||
| 2014-05-16 | Fixed #22625 -- Normalized make_aware/naive errors. | Aymeric Augustin | |
| Also added tests for is/make_aware/naive. Thanks Tom Michaelis for the report. | |||
| 2014-05-16 | Fixed #22531 -- Added tree.Node.__repr__ and tests for the class. | Moayad Mardini | |
| While Node class has a useful `__str__`, its `__repr__` is not that useful. Added a `__repr__` that makes use of the current `__str__`. This is especially useful since the more popular `Q` class inherits `tree.Node`. Also created new tests that cover most of `Node` class functionality. | |||
| 2014-05-14 | typo: urlaprse -> urlparse | Collin Anderson | |
| 2014-05-14 | Added additional checks in is_safe_url to account for flexible parsing. | Erik Romijn | |
| This is a security fix. Disclosure following shortly. | |||
| 2014-05-06 | Fixed #22586 -- Added LANGUAGE_SESSION_KEY to __all__. | Tim Graham | |
| Thanks david.fischer.ch at gmail.com for the report. | |||
| 2014-05-02 | Fixed #22565 -- Prevented pgettext_lazy crash with bytestring input | Claude Paroz | |
| Thanks ygbo for the report. | |||
| 2014-04-30 | flake8 fixes. | Tim Graham | |
| 2014-04-30 | Refactored DjangoTranslation class | Doug Beck | |
| Also fixes #18192 and #21055. | |||
| 2014-04-29 | Use the new implementation of `six.with_metaclass`. | Simon Charette | |
| No more `NewBase` horrors. Thanks to bendavis78 for his work on merging this into six. | |||
| 2014-04-26 | Fix many many typos in comments throughout the codebase | Alex Gaynor | |
| 2014-04-22 | Use the stdlib's compare_digest for constant time comparisons when available | Alex Gaynor | |
| 2014-04-21 | Appeased flake8 2.1.0. | Aymeric Augustin | |
| 2014-04-17 | Typo fix | Alex Gaynor | |
| 2014-04-17 | Use the stdlib's PBKDF2 implementation when available. | Alex Gaynor | |
| This is a bit faster than ours, which is good, because it lets you increase the iteration counts. This will be used on Python 3.4+, and, pending the acceptance of PEP466, on newer Python 2.7s. | |||
| 2014-04-03 | Refactored and commented strip_tags utility | Tomasz Wysocki | |
| 2014-04-02 | Added an explanatory comment. Refs #22017 | Alex Gaynor | |
| 2014-04-02 | Revert "Merge pull request #2508 from tomwys/patch-1" | Alex Gaynor | |
| This reverts commit c45607e9395ffd05c2cff454fdb55b3ab05dc0e3, reversing changes made to 9769337ca855f4831c855d6663ff3f688ee1652d. | |||
| 2014-04-02 | Merge pull request #2509 from tomwys/patch-2 | Alex Gaynor | |
| Refactor. Stop using memory for list copies. | |||
| 2014-04-02 | Refactor. Stop using memory for list copies. | Tomasz Wysocki | |
| 2014-04-02 | Don't copy list for iteration. | Tomasz Wysocki | |
| 2014-03-30 | Corrected many style guide violations that the newest version of flake8 catches | Alex Gaynor | |
