| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-12-17 | Moved django.db.models.loading to django.apps.cache. | Aymeric Augustin | |
| This commit doesn't contain any code changes; it's purely a refactoring. | |||
| 2013-12-16 | Removed duplicated `TimeField` in __all__. | Artur Barseghyan | |
| 2013-12-16 | Fixed #17413 -- Serialization of form errors along with all metadata. | Loic Bistuer | |
| 2013-12-16 | Fixed #21564 -- Use local request object when possible in generic views. | Baptiste Mispelon | |
| Thanks to trac user adepue for the report and original patch. | |||
| 2013-12-16 | Removed unnecessary function-level import. | Baptiste Mispelon | |
| 2013-12-16 | Removed unnecessary call to force_text in utils.html.clean_html. | Vajrasky Kok | |
| Refs #21574 | |||
| 2013-12-15 | Added some internal links to render_to_string documentation. | Baptiste Mispelon | |
| 2013-12-15 | Fixed #21619 -- Made SingleObjectMixin.get_object catch a more precise ↵ | Peter Harley | |
| exception. Thanks to Keryn Knight for the report. | |||
| 2013-12-15 | Merge pull request #2079 from brutasse/master | Alex Gaynor | |
| Typo in 1.7 release notes | |||
| 2013-12-15 | Fixed #21621 -- Removed kqueue autoreloader. | Aymeric Augustin | |
| 2013-12-15 | Fix docs typo | Andrew Godwin | |
| 2013-12-15 | Typo in 1.7 release notes | Bruno Renié | |
| 2013-12-15 | Added internal link to i18n documentation. | Baptiste Mispelon | |
| 2013-12-14 | Fixed #21539 -- Added example of modelformset_factory's form argument | Alasdair Nicol | |
| 2013-12-14 | Revert "Allowed running GIS form tests that don't require spatial database" | Claude Paroz | |
| This reverts commit 07fe0bf3f4a49a734f83f5ea30130449dacf9660. This was not working properly on system without geos library installed. | |||
| 2013-12-14 | Fixed #21250 -- Made HTTP auth user header configurable in tests | Bartolomé Sánchez | |
| Currently, if the authentication mechanism uses a custom HTTP header and not REMOTE_USER, it is not easy to test. This commit modifies remote user tests in order to make them more generic. | |||
| 2013-12-14 | Clarifed table rewrites in migration docs. | Marti Raudsepp | |
| Small nitpicks. All column-related ALTER TABLE commands take an exclusive table lock in PostgreSQL. The difference is that adding a column without default doesn't cause a table rewrite, so the lock is held only for a short time. The time taken is more accurately proportional to table size, not row count. | |||
| 2013-12-14 | Fixed E127 pep8 warnings. | Loic Bistuer | |
| 2013-12-14 | Fixed #21614 -- improved docs on configuring email for development. | Chris Jerdonek | |
| 2013-12-14 | Removed usage of to-be-deprecated ADMIN_FOR setting in contributing docs | Bouke Haarsma | |
| 2013-12-14 | Fixed link text for "Testing in Django" in tutorial 5. | Chris Jerdonek | |
| 2013-12-14 | Allowed running GIS form tests that don't require spatial database | Jakub Gocławski | |
| 2013-12-14 | Fixed #21606 -- Fixed default_lat and default_lon override in OSMWidget | Jakub Gocławski | |
| 2013-12-13 | Fixed #21580 -- Clarified why render() does not return a TemplateResponse ↵ | johannes-gehrs | |
| object. | |||
| 2013-12-13 | Added 1.6.2 release notes stub. | Tim Graham | |
| 2013-12-13 | Merge pull request #2067 from dominicrodger/master | Tim Graham | |
| Moving notes for assertNumQueries next to the other changes to test infrastructure | |||
| 2013-12-13 | Changed documentation of HttpResponse.content to indicate it's a bytestring | Baptiste Mispelon | |
| 2013-12-12 | Copied 1.6.1 release notes from stable/1.6.x branch. | Tim Graham | |
| 2013-12-12 | Fixed #21574 -- Handle bytes consistently in utils.text.normalize_newlines. | Baptiste Mispelon | |
| All input is now coerced to text before being normalized. This changes nothing under Python 2 but it allows bytes to be passed to the function without a TypeError under Python3 (bytes are assumed to be utf-8 encoded text). Thanks to trac user vajrasky for the report. | |||
| 2013-12-12 | Fixed PEP257 violations (single-quoted docstrings) in utils.text. | Baptiste Mispelon | |
| 2013-12-12 | Moving notes for assertNumQueries next to the other changes to test ↵ | Dominic Rodger | |
| infrastructure | |||
| 2013-12-12 | Improved translation maintenance script | Claude Paroz | |
| Do not fetch 'en' catalogs, neither files with translation stats lower than 5%. Centralized resource filtering. | |||
| 2013-12-12 | Fixed #21591 -- Added documentation about contrib.messages.get_messages. | Rémy HUBSCHER | |
| Refs https://code.djangoproject.com/ticket/21591 Thanks to track user merb for the report. | |||
| 2013-12-12 | Fixed #21473 -- Limited language preservation to logout | Ludwik Trammer | |
| Current language is no longer saved to session by LocaleMiddleware on every response (the behavior introduced in #14825). Instead language stored in session is reintroduced into new session after logout. Forward port of c558a43fd6 to master. | |||
| 2013-12-11 | Brought comments in sync with the code in BaseAppCache. | Aymeric Augustin | |
| 2013-12-11 | Fixed #21462 -- Made `assertNumQueries` print executed queries on failure. | Dominic Rodger | |
| 2013-12-11 | Fixed #21563 -- Single related object descriptors should work with `hasattr`. | Simon Charette | |
| Thanks to Aymeric Augustin for the review and Trac alias monkut for the report. | |||
| 2013-12-11 | Fixed #21510 -- Readded search reset link in changelist search bar | Claude Paroz | |
| Thanks moritz.pfeiffer at alp-phone.ch for the report and Tim Graham for the initial patch. | |||
| 2013-12-11 | Fix altering of SERIAL columns and InnoDB being picky about FK changes | Andrew Godwin | |
| 2013-12-11 | Better default name for migrations we can't give nice names to | Andrew Godwin | |
| 2013-12-11 | Change FKs when what they point to changes | Andrew Godwin | |
| 2013-12-11 | Fix sqlmigrate's output for parameters | Andrew Godwin | |
| 2013-12-10 | Moved imports to the top of the defaultfilters module. | Aymeric Augustin | |
| 2013-12-10 | Fixed E124 pep8 warnings. | Loic Bistuer | |
| 2013-12-10 | Merge pull request #2058 from c-schmitt/fixes_21560 | Claude Paroz | |
| Fixed #21560 -- missing 'slug' field in example code | |||
| 2013-12-09 | Fixed #21560 -- missing 'slug' field in example code | Christian Schmitt | |
| I updated the documentation, that the modelform now includes the 'slug' field. | |||
| 2013-12-08 | Removed an erroneous leading slash introduced by a626bdf648a. | Simon Charette | |
| 2013-12-08 | Updated a bunch of hyperlinks in documentation | Claude Paroz | |
| 2013-12-08 | (Re-)added GeoDjango instructions for building pysqlite2 correctly. | Ramiro Morales | |
| This is a partial undo of 1b142ef5dd. | |||
| 2013-12-08 | Merge pull request #2052 from loic/setup.cfg | Florian Apolloner | |
| Made flake8 ignore the .git directory. | |||
