summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2014-05-16Fixed #22167 -- Improved documentation on context processorsMoritz
Clarified the explanation on the order in which user provided variables to render_to_response, RequestContext and context processors are loaded.
2014-05-16Fixed #22622 -- Added ugettext_lazy import in docsNiclas Åhdén
2014-05-16Refs #21798 - Modified error number to provide room for future expansion.Russell Keith-Magee
2014-05-16Remove old compatibility shims from d.c.gis.Marc Tamlyn
2014-05-16Fixed #21798 -- Added check for DateTime mutually exclusive optionsDaniel Pyrathon
Added DateTimeCheckMixin to avoid the use of default, auto_now, and auto_now_add options together. Added the fields.E151 Error that is raised if one or more of these options are used together.
2014-05-16Simplified an unnecessarily complex paragraph in view docsErik Romijn
2014-05-15Harmonized some PEP 0263 coding preamblesClaude Paroz
2014-05-15Fixed #17642 -- Added min_num support to modelformsets, inlines, and the admin.Anders Steinlein
Thanks Stephen Burrows for work on the patch as well. Forwardport of 2914f66983a92fcae55673c517dd8d01e8c238c4 from stable/1.7.x
2014-05-15Minor edits to latest release notes.Tim Graham
2014-05-14Fix typo that disabled code example highlightingÉric Araujo
2014-05-14Added release notes for 1.4.13, 1.5.8, 1.6.5.Jacob Kaplan-Moss
2014-05-13Removed an unnecessary anchor in the docs.Tim Graham
2014-05-13Fixed spelling mistake and added a word to the word list.Tim Graham
2014-05-13Fixed #22533 -- Added label_suffix parameter to form fields.Julen Ruiz Aizpuru
Fields can now receive the `label_suffix` attribute, which will override a form's `label_suffix`. This enhances the possibility to customize form's `label_suffix`, allowing to use such customizations while using shortcuts such as `{{ form.as_p }}`. Note that the field's own customization can be overridden at runtime by using the `label_prefix` parameter to `BoundField.label_tag()`. Refs #18134.
2014-05-13Fixed typo in transactions.txtHaris Ibrahim K. V
2014-05-13Removed some references to django.contrib.comments which has been removed.Tim Graham
2014-05-13Fixed #22618 -- Improved import_string example.Tim Graham
Thanks ewjoachim for the sugggestion.
2014-05-12Fixed #22619 -- Corrected description of os.path.Tim Graham
Thanks Collin Anderson for the report.
2014-05-12Added 1.6.5 release note for refs #22508.Tim Graham
2014-05-12Fixed #22613 -- Added formfield_for_choice_field() to the list of methods ↵Tim Graham
that InlineModelAdmin supports.
2014-05-11Completed long overdue sqlinitialdata deprecation.Ramiro Morales
2014-05-11Fixed #20936 -- When logging out/ending a session, don't create a new, empty ↵Matt Robenolt
session. Previously, when logging out, the existing session was overwritten by a new sessionid instead of deleting the session altogether. This behavior added overhead by creating a new session record in whichever backend was in use: db, cache, etc. This extra session is unnecessary at the time since no session data is meant to be preserved when explicitly logging out.
2014-05-10Link new testing tools document from main index.Ramiro Morales
2014-05-10Fixed a few release notes typos.Ramiro Morales
2014-05-07Merge pull request #2639 from alimony/patch-1Alex Gaynor
Insert space
2014-05-07Fixed #22496: Data migrations get transactions again!Andrew Godwin
2014-05-07Insert space.Markus Amalthea Magnuson
2014-05-07Updated some docs for the delayed deprecation of legacy table creation; refs ↵Tim Graham
#22340.
2014-05-07Forward ported docs of security issues from df81625da6.Tim Graham
2014-05-06Improve docs around deconstruction/serialisation (refs #22337)Andrew Godwin
2014-05-06Bump DatabaseCreation deprecation to 2.0 (refs #22340)Andrew Godwin
2014-05-06Updated the messages context processor docsClaude Paroz
Refs #20610.
2014-05-05Reordered tutorial 1 so that the database is configured first.Tom
This change is required after the introduction of SessionAuthenticationMiddleware to the default middleware
2014-05-05Fixed #1349 -- Clarified docs on serving files from STATIC/MEDIA_URL.Tim Graham
2014-05-05Fixed #22575 -- Fixed typo in docs/topics/class-based-views/generic-editing.txt.Tim Graham
Thanks adminq80 at gmail.com.
2014-05-05Fixed #22429 -- Incorrect SQL when using ~Q and FAnssi Kääriäinen
2014-05-03Fix docs error with deconstruct() docsAndrew Godwin
2014-05-02Fixed #22565 -- Prevented pgettext_lazy crash with bytestring inputClaude Paroz
Thanks ygbo for the report.
2014-05-02Fixed clash caused by the newly introduced -e shorthand for makemessages ↵Loic Bistuer
--exclude. This fixes a regression caused by 0707b82. Refs #22328.
2014-05-02Fixed #22558 -- Added missing word in contributing docsBrenda J. Butler
2014-05-01Fixed #22551 -- Made oracle backend method Python 3 compatibleClaude Paroz
Thanks fatal10110 at gmail.com for the report. The fix is 1.6-only because that code has been refactored in 1.7 (6983201cfb). 'Docs-only' forward port of 120a98120 from 1.6.x.
2014-04-30Fixed #22547 -- Added some links to tutorial 2.Tim Graham
Thanks bjb at sourcer.ca for the suggestion.
2014-04-30Fixed #22546 -- Removed idioms in tutorial 2.Moayad Mardini
Thanks bjb at sourcerer.ca for the suggestion.
2014-04-30Fixed #19195 -- Allow explicit ordering by a relation `_id` field.Simon Charette
Thanks to chrisedgemon for the report and shaib, akaariai and timgraham for the review.
2014-04-30Fixed #22537 -- Add tests and improved docs for field subclass with choices.Mike Fogel
2014-04-30Fixed #22442 -- Provided additional documentation regarding id fields clashing.Tim Graham
Thanks benjaoming for raising the issue and Loic for the examples.
2014-04-29Fixed #22523 -- Clarified pytz requirement.Aymeric Augustin
Thanks z for the report and timo for the proposal.
2014-04-28Added stub release notes for 1.6.5.Tim Graham
2014-04-28Added dates to release notes of today's release.Tim Graham
2014-04-28Revert "Fixed #15179 -- middlewares not applied for test client login()"Tim Graham
This reverts commit 4fdd51b73240bf9c8d9472fcc45df699f0714755. See the ticket for concerns with this implementation; it will be revisited.