summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2014-02-06Updated 1.6.2 release notes for release (and linkified tickets).Jacob Kaplan-Moss
2014-02-06Fixed #17713 -- Renamed BaseDatabaseFeatures.allows_primary_key_0 to ↵Vajrasky Kok
allows_auto_pk_0. MySQL does allow primary key with value 0. It only forbids autoincrement primary key with value 0. Thanks Claude Paroz for the report.
2014-02-06Fixed #17005 -- Added CurrentSiteMiddleware to set the current site on each ↵Christopher Medrela
request. Thanks jordan at aace.org for the suggestion.
2014-02-05Added missing items to 1.6.2 release notes.Tim Graham
2014-02-05Extended the release notes for chainable Manager/QuerySet methods.Loic Bistuer
Refs #20625.
2014-02-05Added previous commit to 1.6.2 release notes.Baptiste Mispelon
2014-02-05Fixed gendered examples in the docs.Loic Bistuer
2014-02-04Removed the this_is_the_login_form hackClaude Paroz
Refs #21911. Now that we have a more traditional login form, we don't need any more a special field telling us we are dealing with the login form.
2014-02-04Fixed #21911 -- Made admin views redirect to login when neededClaude Paroz
Historically, the Django admin used to pass through the request from an unauthorized access to the login view directly. Now we are using a proper redirection, which is also preventing inadvertantly changing data when POSTing login data to an admin view when user is already authorized. Thanks Marc Tamlyn and Tim Graham for the reviews.
2014-02-04Made some PEP8 fixes in docs/ref/forms/widgets.txtTim Graham
Thanks Siecje.
2014-02-03Reordered deprecation timeline and added back old info; refs #21920.Tim Graham
2014-02-02Added a note about a possible name clash.Aymeric Augustin
Thanks Russell for the advice.
2014-02-02Fixed typo.Aymeric Augustin
2014-01-29Fix typo CRSF -> CSRFIan Foote
2014-01-28Add an extra warning about custom save methods in migrations docs.Andrew Godwin
2014-01-27Fixed #21874 -- Require Django applications to have a filesystem path.Carl Meyer
Wherever possible this filesystem path is derived automatically from the app module's ``__path__`` and ``__file__`` attributes (this avoids any backwards-compatibility problems). AppConfig allows specifying an app's filesystem location explicitly, which overrides all autodetection based on ``__path__`` and ``__file__``. This permits Django to support any type of module as an app (namespace packages, fake modules, modules loaded by other hypothetical non-filesystem module loaders), as long as the app is configured with an explicit filesystem path. Thanks Aymeric for review and discussion.
2014-01-26Added release note stubs for 1.5.6 and 1.4.11.Tim Graham
2014-01-26Added missing items to 1.6.2 release notes.Tim Graham
2014-01-26Fixed #19774 -- Deprecated the contenttypes.generic module.Simon Charette
It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review.
2014-01-26Fixed #21702 -- get_model('app_label.ModelName').Aymeric Augustin
Also added tests for get_model.
2014-01-26Fixed typo. Refs #21836.Aymeric Augustin
2014-01-26Moved RequestSite and get_current_site.Aymeric Augustin
Following the app-loading refactor, these objects must live outside of django.contrib.sites.models because they must be available without importing the django.contrib.sites.models module when django.contrib.sites isn't installed. Refs #21680. Thanks Carl and Loic for reporting this issue.
2014-01-25Docs correction: apps loaded from eggs do not have appconfig.path None.Carl Meyer
2014-01-25Fixed #17304 -- Allow single-path and configured-path namespace packages as ↵Carl Meyer
apps. Also document the conditions under which a namespace package may or may not be a Django app, and raise a clearer error message in those cases where it may not be. Thanks Aymeric for review and consultation.
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-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 #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-23Fixed #21865 -- Incorrect signs in documented example.Marc Tamlyn
Maths is hard.
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-23Fixed #21864 -- Fixed missing quote in custom lookup example.Baptiste Mispelon
Thanks to Chris Barna for the report.
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-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-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-20Added ManifestStaticFilesStorage to staticfiles contrib app.Jannis Leidel
It uses a static manifest file that is created when running collectstatic in the JSON format.
2014-01-20Added a missing command to the command line examples for check.Russell Keith-Magee
Thanks to Bruno Renie for the report.
2014-01-20Corrected documentation typo.Russell Keith-Magee
Thanks to @cjerdonek for the report.
2014-01-20Corrected minor typo.Russell Keith-Magee
Thanks to @cjerdonek for the report.
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
2014-01-19Fixed some admin sphinx definitions so links work properly.Tim Graham
2014-01-19Fixed #21290: Documented migration serializing and improved errorAndrew Godwin
2014-01-19Implement swappable model support for migrationsAndrew Godwin