| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-05 | Removed LocaleMiddleware from settings template. | Aymeric Augustin | |
| It was added in 3f1c7b70537330435e2ec2fca9550f7b7fa4372e. Single language sites should always be translated in LANGUAGE_CODE, regardless of the browser's Accept-Language. Having LocaleMiddleware enabled can result in having some parts, like the admin, translated in an unexpected language, typically if someone browses a non-English website on a system set up in English. Since most websites won't be translated in multiple languages — especially at the time they're created — it's better not to enable LocaleMiddleware by default. Thanks Ramiro for the feedback. | |||
| 2013-04-04 | Merge pull request #993 from almostabc/template-include-docs-update | Simon Charette | |
| Removed a trailing space in the template builtins docs. | |||
| 2013-04-05 | Removed a trailing space in the template name on line 174. | Andrew Brown | |
| This trailing space may seem innocuous, but can be easily copied-and-pasted from the docs. This can lead to bizarre File Not Found errors where the checked paths look correct, but actually aren't because the trailing space is hard to see in an error message. | |||
| 2013-04-04 | Fixed a line that was overindented. | Alex Gaynor | |
| 2013-04-04 | Removed instructions about download_url from release process notes. | Jacob Kaplan-Moss | |
| This is no longer something that has to happen now that 5c771da3 is in. | |||
| 2013-04-04 | Remove download_url from setup.py | Donald Stufft | |
| * Prevents issues with moving download locations in the future, see https://www.djangoproject.com/m/bad-installer.txt * Removes a location that release managers need to update with a new version * Very little use when files are hosted on PyPI (as Django's are) | |||
| 2013-04-04 | Merge pull request #992 from bmispelon/ticket-20195 | Claude Paroz | |
| Fix #20195: wrong reference in session settings documentation. | |||
| 2013-04-04 | Fix #20195: wrong reference in session settings documentation. | Baptiste Mispelon | |
| 2013-04-04 | Merge pull request #985 from intgr/atomic_typo | Tim Graham | |
| Fixed typo in transaction.Atomic docstring | |||
| 2013-04-03 | Adds generators support for email backends that do not support it. | Brendon Crawford | |
| 2013-04-03 | Fix contrib.messages tests for discovery. | Carl Meyer | |
| 2013-04-03 | Fixed #20038 -- Better error message for host validation. | Baptiste Mispelon | |
| 2013-04-03 | Fix typo in transaction.Atomic docstring | Marti Raudsepp | |
| 2013-04-03 | Adjusted download_url in setup.py | Florian Apolloner | |
| 2013-04-02 | Modified auth to work with unittest2 discovery. | Preston Timmons | |
| 2013-04-02 | Modified sitemaps to work with unittest2 discovery. | Preston Timmons | |
| 2013-04-02 | Modified messages to work with unittest2 discovery. | Preston Timmons | |
| 2013-04-02 | Modified formtools to work with unittest2 discovery. | Preston Timmons | |
| 2013-04-02 | Updated flatpages tests for unittest2 discovery. | Preston Timmons | |
| 2013-04-02 | Modified admindocs tests to work with unittest2 discovery. | Preston Timmons | |
| 2013-04-02 | Move last remaining tests out of models.py files; prep for test discovery. | Preston Timmons | |
| 2013-04-02 | Added a dedication to Malcolm to release notes. | Ramiro Morales | |
| 2013-04-02 | Fixed #19748 - Documented django.utils.module_loading.import_by_path | Tim Graham | |
| 2013-04-01 | Fixed deprecation warnings introduced by ↵ | Simon Charette | |
| 97774429aeb54df4c09895c07cd1b09e70201f7d. | |||
| 2013-04-01 | Relaxed time frame check in test_strip_tags | Claude Paroz | |
| 2013-04-01 | Fixed #20169 -- Ensured that the WSGI request's path is correctly based on ↵ | Julien Phalip | |
| the `SCRIPT_NAME` environment parameter or the `FORCE_SCRIPT_NAME` setting, regardless of whether or not those have a trailing slash. Thanks to bmispelon for the review. | |||
| 2013-04-01 | Fixed #16737 -- Support non-ascii column names in inspectdb | Claude Paroz | |
| Thanks moof at metamoof.net for the report. | |||
| 2013-04-01 | Imported unittest from django.utils in util_tests | Claude Paroz | |
| Without this, the 'new' assertion methods are not present with Python 2.6. | |||
| 2013-04-01 | Fixed #5014 -- Guessed max_digits and decimal_places for SQLite | Claude Paroz | |
| Decimal is treated as float on SQLite, hence inspectdb can only guess max_digits and decimal_places arguments. | |||
| 2013-04-01 | Fixed getting max_digits for MySQL decimal fields | Claude Paroz | |
| Refs #5014. | |||
| 2013-04-01 | Added more tests for strip_tags utility | Claude Paroz | |
| Refs #19237. | |||
| 2013-04-01 | Fixed #20172 -- Ensured urlize supports IPv4/IPv6 addresses | Claude Paroz | |
| Thanks Marc Aymerich for the report and the initial patch. | |||
| 2013-04-01 | Updated some 'Dive Into Python' links | Claude Paroz | |
| 2013-03-31 | Fixed #20167 -- Preserve the traceback of `ImportError`s in `import_by_path`. | Joe Friedl | |
| Thanks @carljm for the review. | |||
| 2013-03-31 | Fixed #19220 -- Prevented decimals to be displayed in scientific notation | Claude Paroz | |
| Thanks nebstrebor for the report and antofik for the patch. | |||
| 2013-03-31 | Fixed #8649 - Documented a caveat about dynamically adjusting formsets. | Tim Graham | |
| 2013-03-31 | Fixed #9913 - Clarified User.is_authenticated docs. | Tim Graham | |
| Thanks rshea for the draft text. | |||
| 2013-03-31 | Fixed #20168 - Generalized a PostgreSQL specific database query in the docs. | Tim Graham | |
| Thanks Russ for the suggestion. | |||
| 2013-03-30 | Fixed some markup in formtools docs. | Tim Graham | |
| 2013-03-30 | Fixes #20162 -- Added a note in the documentation for `static.serve()` about ↵ | Julien Phalip | |
| the need for updating the system's map files when incorrect content types are returned. Many thanks to Simon Charette and Claude Paroz for their feedback. | |||
| 2013-03-30 | Fixed #19492 - Added a link to the uWSGI/Django tutorial. | Tim Graham | |
| 2013-03-30 | Removed site cache clearing in TestCase._fixture_setup | Claude Paroz | |
| The test suite doesn't seem to suffer from this removal. Tests should probably take care themselves to clear caches if they depend on it. | |||
| 2013-03-30 | Fixed #18277 - Clarified startproject documentation. | Tim Graham | |
| 2013-03-30 | Merge pull request #963 from richardcornish/master | Tim Graham | |
| Updated bios of committers | |||
| 2013-03-30 | Remove unnecessary if conditions | Alisson | |
| if obj it None, it's None, there's no need to check it | |||
| 2013-03-30 | Fixed #20059 -- Updated humanize tests to force 'en' language setting. | matiasb | |
| 2013-03-30 | Fixed #20130 -- Regression in {% cache %} template tag. | Baptiste Mispelon | |
| 2013-03-30 | Fixed #19998 -- Fixed --ignorenonexistent support for XML based fixtures. | Christoph Sieghart | |
| 2013-03-29 | Fixed #19897 - Updated static files howto. | Tim Graham | |
| Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing. | |||
| 2013-03-29 | Fixed #19582 - Added a static files tutorial. | Tim Graham | |
| Thanks James Pic. | |||
