summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-25Fixed #21873 -- Removed duplicate import.Aymeric Augustin
Thanks Sephi for the report.
2014-01-25Fixed #21836 -- Improved transaction docs about autocommit modeChris Jerdonek
Clarified that queries in autocommit mode are committed immediately only if a transaction has not already been started. Added to the main transaction docs that Django's TestCase class implicitly wraps its tests in transactions.
2014-01-25Merge pull request #2213 from dnerdy/ticket-14007-contributorsTim Graham
Added ticket #14007 contributors to AUTHORS
2014-01-25Fixed a failing schema assertion.Simon Charette
BooleanFields are stored as TINYINT(1) on MySQL.
2014-01-25Added ticket #14007 contributors to AUTHORSMark Sandstrom
2014-01-25Merge pull request #2211 from carljm/t21867Jannis Leidel
Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job.
2014-01-25Fixed #21829 -- Added default AppConfigs.Aymeric Augustin
Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion.
2014-01-24Fixed #21871 -- Fixed Apps.is_installed() for apps with custom label.Carl Meyer
Thanks Aymeric for design discussion.
2014-01-25Unroll choices iterators in field deconstructionAndrew Godwin
2014-01-25Fixed #21783: More SQLite default fun with nulls.Andrew Godwin
2014-01-24Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job.Carl Meyer
AppStaticStorage only provided one thing over FileSystemStorage, which was taking an app name (import path) and translating it into a filesystem path. This is now something that should be done via app_config.path instead, leaving AppStaticStorage with no reason for existence. It should be safe to remove, as it was undocumented internal API. There was some kind of feature in the AppDirectoriesFinder code related to a "prefix" attribute on the storage class used by AppDirectoriesFinder. Since this feature was undocumented, untested, and of unclear purpose, I removed it as well.
2014-01-24Fixed typo in error message.Arne Brodowski
2014-01-24Fixed #21870 -- Admin check for list_editable_itemArne Brodowski
During the admin check for list_editable _check_list_editable_item should return an empty list if all checks pass. Additionally the Testcase test_readonly_and_editable was changed to test what the name implies instead of duplicating the logic of test_readonly.
2014-01-24Fixed #21869 -- Fixed docs building with Sphinx 1.2.1.Tim Graham
Thanks tragiclifestories for the report.
2014-01-24Fixed #21824 -- Added reference to LTS in docs/internals/security.txtJames Turley
2014-01-24Fix soft-apply detection of migrations with dependenciesAndrew Godwin
2014-01-24Fixed #21787 -- regression in MTI .exclude() queriesAnssi Kääriäinen
2014-01-23Fixed #21865 -- Incorrect signs in documented example.Marc Tamlyn
Maths is hard.
2014-01-23Merge branch 'stable/1.7.X'Marc Tamlyn
We fork at beta. This branch will be recreated when the first beta is created. It has been merged in to maintain the version number bump and tag.
2014-01-23Merge pull request #2203 from mjtamlyn/post-beta-branchingTim Graham
We should branch after the first beta.
2014-01-23We should branch after the first beta.Marc Tamlyn
We did this for 1.6 and it was very effective. 95%+ of fixes which merge during the alpha are backported, as the policy is "all but really major features". It's easier to just not merge any really major features. After beta, we have feature freeze so we need to backport bugs to stable but not features, so then the branch makes sense.
2014-01-23Fixed #21847 -- Clarified where ContactForm was definedTom Atkins
2014-01-23Merge pull request #2205 from ctbarna/21864-custom-lookup-unclosed-stringAlex Gaynor
Fixes #21864: Close string in example of custom lookups doc page.
2014-01-23Fixed #21864 -- Fixed missing quote in custom lookup example.Baptiste Mispelon
Thanks to Chris Barna for the report.
2014-01-23Fixes #21864: Close string in example of custom lookups doc page.Chris Barna
2014-01-23Fixed #21861 -- Fixed typo in 1.7 release notes.Tim Graham
Thanks marktranchant.
2014-01-23Fixed some punctuation; thanks Chris Jerdonek.Tim Graham
2014-01-23Add docs about converting from SouthAndrew Godwin
2014-01-23We should branch after the first beta.Marc Tamlyn
We did this for 1.6 and it was very effective. 95%+ of fixes which merge during the alpha are backported, as the policy is "all but really major features". It's easier to just not merge any really major features. After beta, we have feature freeze so we need to backport bugs to stable but not features, so then the branch makes sense.
2014-01-22[1.7.x] Bump version number for 1.7 alpha 1.1.7a1James Bennett
2014-01-22Always use parentheses when documenting a method with no arguments.Baptiste Mispelon
2014-01-22Don't show `self` in the list of arguments of a method.Baptiste Mispelon
This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855.
2014-01-22Fixed #20834 -- Described how caching of user permissions works.Tim Graham
Thanks Giggaflop and Jennifer Casavantes.
2014-01-22Added a link to the 1.6 release notes which also fixed a rendering issue.Tim Graham
2014-01-22Fixed #21529 -- Noted that {% url %} encodes its output (refs #13260).Tim Graham
2014-01-22Added some missing whitespace around arithmetic operatorsAlex Gaynor
2014-01-22Fixed #21726 -- Clarified that password should not be included in ↵Tim Graham
REQUIRED_FIELDS. Thanks russellm for the report.
2014-01-22Fixed some markup that caused broken links in the static files docs.Tim Graham
2014-01-22Fixed #21846 -- Made NestedObjects handle related_name with %(app_label)s or ↵Loic Bistuer
%(class)s.
2014-01-22Merge pull request #2198 from Markush2010/ticket21852Andrew Godwin
Fixed #21852 -- Make migration writer serialize iterators
2014-01-22Fixed #21850 -- Made GeometryField.geodetic case insensitiveOliver George
2014-01-22Fixed #21852 -- Make migration writer serialize iteratorsMarkus Holtermann
2014-01-21Fixed #21827 -- Install django-admin and django-admin.pyFlorian Apolloner
We need to figure out how to deprecate django-admin.py, but for now this should do the trick.
2014-01-21Merge pull request #2186 from zemanel/masterTim Graham
Fixed typo on docstring
2014-01-21Corrected problem with MySQL checks handler and related fields.Russell Keith-Magee
2014-01-21Changed django-admin back to django-admin.py. Refs #21827Florian Apolloner
2014-01-20Removed some stray newlines which caused flake8 issuesAlex Gaynor
2014-01-20Fix a check_framework test so it doesn't fail when TEST_RUNNER is set (e.g. ↵Carl Meyer
on CI).
2014-01-20Fixes #21833 -- Fix UserSettingsHolder.is_overridden() and add tests.Carl Meyer
2014-01-21Refs #21831 -- Softened the TestClient dependency on contrib.auth.Russell Keith-Magee
This is to prevent an import of django.test causing an import (and thus an implicit checks regisration) for an app that may not be in `INSTALLED_APPS`. Better fixes may be possible when #20915 and/or #21829 are addressed. Thanks to @carljm for the report.