summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-05Removed 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-04Merge pull request #993 from almostabc/template-include-docs-updateSimon Charette
Removed a trailing space in the template builtins docs.
2013-04-05Removed 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-04Fixed a line that was overindented.Alex Gaynor
2013-04-04Removed 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-04Remove download_url from setup.pyDonald 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-04Merge pull request #992 from bmispelon/ticket-20195Claude Paroz
Fix #20195: wrong reference in session settings documentation.
2013-04-04Fix #20195: wrong reference in session settings documentation.Baptiste Mispelon
2013-04-04Merge pull request #985 from intgr/atomic_typoTim Graham
Fixed typo in transaction.Atomic docstring
2013-04-03Adds generators support for email backends that do not support it.Brendon Crawford
2013-04-03Fix contrib.messages tests for discovery.Carl Meyer
2013-04-03Fixed #20038 -- Better error message for host validation.Baptiste Mispelon
2013-04-03Fix typo in transaction.Atomic docstringMarti Raudsepp
2013-04-03Adjusted download_url in setup.pyFlorian Apolloner
2013-04-02Modified auth to work with unittest2 discovery.Preston Timmons
2013-04-02Modified sitemaps to work with unittest2 discovery.Preston Timmons
2013-04-02Modified messages to work with unittest2 discovery.Preston Timmons
2013-04-02Modified formtools to work with unittest2 discovery.Preston Timmons
2013-04-02Updated flatpages tests for unittest2 discovery.Preston Timmons
2013-04-02Modified admindocs tests to work with unittest2 discovery.Preston Timmons
2013-04-02Move last remaining tests out of models.py files; prep for test discovery.Preston Timmons
2013-04-02Added a dedication to Malcolm to release notes.Ramiro Morales
2013-04-02Fixed #19748 - Documented django.utils.module_loading.import_by_pathTim Graham
2013-04-01Fixed deprecation warnings introduced by ↵Simon Charette
97774429aeb54df4c09895c07cd1b09e70201f7d.
2013-04-01Relaxed time frame check in test_strip_tagsClaude Paroz
2013-04-01Fixed #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-01Fixed #16737 -- Support non-ascii column names in inspectdbClaude Paroz
Thanks moof at metamoof.net for the report.
2013-04-01Imported unittest from django.utils in util_testsClaude Paroz
Without this, the 'new' assertion methods are not present with Python 2.6.
2013-04-01Fixed #5014 -- Guessed max_digits and decimal_places for SQLiteClaude Paroz
Decimal is treated as float on SQLite, hence inspectdb can only guess max_digits and decimal_places arguments.
2013-04-01Fixed getting max_digits for MySQL decimal fieldsClaude Paroz
Refs #5014.
2013-04-01Added more tests for strip_tags utilityClaude Paroz
Refs #19237.
2013-04-01Fixed #20172 -- Ensured urlize supports IPv4/IPv6 addressesClaude Paroz
Thanks Marc Aymerich for the report and the initial patch.
2013-04-01Updated some 'Dive Into Python' linksClaude Paroz
2013-03-31Fixed #20167 -- Preserve the traceback of `ImportError`s in `import_by_path`.Joe Friedl
Thanks @carljm for the review.
2013-03-31Fixed #19220 -- Prevented decimals to be displayed in scientific notationClaude Paroz
Thanks nebstrebor for the report and antofik for the patch.
2013-03-31Fixed #8649 - Documented a caveat about dynamically adjusting formsets.Tim Graham
2013-03-31Fixed #9913 - Clarified User.is_authenticated docs.Tim Graham
Thanks rshea for the draft text.
2013-03-31Fixed #20168 - Generalized a PostgreSQL specific database query in the docs.Tim Graham
Thanks Russ for the suggestion.
2013-03-30Fixed some markup in formtools docs.Tim Graham
2013-03-30Fixes #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-30Fixed #19492 - Added a link to the uWSGI/Django tutorial.Tim Graham
2013-03-30Removed site cache clearing in TestCase._fixture_setupClaude 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-30Fixed #18277 - Clarified startproject documentation.Tim Graham
2013-03-30Merge pull request #963 from richardcornish/masterTim Graham
Updated bios of committers
2013-03-30Remove unnecessary if conditionsAlisson
if obj it None, it's None, there's no need to check it
2013-03-30Fixed #20059 -- Updated humanize tests to force 'en' language setting.matiasb
2013-03-30Fixed #20130 -- Regression in {% cache %} template tag.Baptiste Mispelon
2013-03-30Fixed #19998 -- Fixed --ignorenonexistent support for XML based fixtures.Christoph Sieghart
2013-03-29Fixed #19897 - Updated static files howto.Tim Graham
Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing.
2013-03-29Fixed #19582 - Added a static files tutorial.Tim Graham
Thanks James Pic.