summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2014-11-13Fixed #23765 -- Removed BooleanField default check which often yielded false ↵Tim Graham
positives.
2014-11-13Added missing docs for 1_7.W001 check.Tim Graham
2014-11-13Removed doc reference to pre-1.5 PostGISClaude Paroz
2014-11-13Updated Fink doc section to be version-agnosticClaude Paroz
2014-11-12Fixed #23774 -- Clarified QuerySet.order_by() and related models.Tim Graham
2014-11-10Fixed #23789 -- TemplateResponse handles context differently from renderLuke Plant
2014-11-05Removed confusing paragraph from the docs.Loic Bistuer
This snippet wasn't particularly helpful as `add_error()` is described in greater details in the following section. Thanks Claude Paroz for the report.
2014-11-04Fixed #23531 -- Added CommonMiddleware.response_redirect_class.Berker Peksag
2014-11-04Fix minor typo in documentation.Marc Tamlyn
2014-11-04Fixed #13181 -- Added support for callable choices to forms.ChoiceFieldPeter Inglesby
Thanks vanschelven and expleo for the initial patch.
2014-11-04Fixed links to mysqlclient in database notes.Tim Graham
2014-11-04Added HStoreField.Marc Tamlyn
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
2014-11-03Fixed versionchanged indentation in docs/.Berker Peksag
2014-11-03Fixed spelling mistake in docs/ref/request-response.txtTim Graham
2014-11-03Fixed #18523 -- Added stream-like API to HttpResponse.Michael Kelly
Added getvalue() to HttpResponse to return the content of the response, along with a few other methods to partially match io.IOBase. Thanks Claude Paroz for the suggestion and Nick Sanford for review.
2014-11-03Fixed #18456 -- Added path escaping to HttpRequest.get_full_path().Unai Zalakain
2014-11-03Moved CSRF docs out of contrib.Thomas Chaumeny
2014-10-31Fixed #23732 -- Corrected and enhanced select_related() docs.Tim Graham
Thanks Daniele Procida for the report and review.
2014-10-30Fixed #23656 -- Made FormMixin.get_form's form_class argument optional.Simon Charette
Thanks Tim Graham for the review.
2014-10-30Fixed #23736 -- Corrected the description of the value that ↵Tim Graham
silent_variable_failure uses. Thanks Aymeric Augustin for the report.
2014-10-30Fixed #23737 -- Recommended the render() shortcut more strongly.Tim Graham
Thanks Aymeric Augustin for the report.
2014-10-30Explained why admindocs omits model methods with arguments.Zan Anderle
2014-10-30Removed extra period.Aymeric Augustin
2014-10-30Fixed #8149 -- Made File.__iter__() support universal newlines.Jon Dufresne
The following are recognized as ending a line: the Unix end-of-line convention '\n', the Windows convention '\r\n', and the old Macintosh convention '\r'. http://www.python.org/dev/peps/pep-0278 Thanks tchaumeny for review.
2014-10-30Fixed #23558 -- documented slugify limitationsDavid Hoffman
2014-10-30Added missing imports to example from previous commit.Tim Graham
2014-10-30Fixed #23575 -- Added a code example for custom AdminSite.Berker Peksag
2014-10-30Fixed #23725 -- Substituted AUTH_USER_MODEL for User in docs.Raul Cumplido
2014-10-30Fixed #18731 -- Added an example about customizing "makemessages" command.Berker Peksag
Thanks claudp for the suggestion and review.
2014-10-29Added cross reference in admin docs to topic about saving objects in formsets.P.A. SCHEMBRI
2014-10-28Fixed spelling errors in docs.Tim Graham
2014-10-28Required MySQLdb >= 1.2.5 for fractional seconds supportClaude Paroz
On MySQLdb < 1.2.5, MySQLdb returns None when fetching datetime/time values with fractional seconds. See https://github.com/farcepest/MySQLdb1/issues/24
2014-10-28Fixed #19716 -- Added support for microseconds with MySQL 5.6.4 and upClaude Paroz
Thanks erik@cederstrand.dk for the report and Tim Graham for the review.
2014-10-28Fixed #23493 -- Added bilateral attribute to TransformThomas Chaumeny
2014-10-27Fixed QuerySet datetimes argument name in docs.Oliver Meinusch
2014-10-27Fixed #23446 -- Officially recommended mysqlclient as MySQL driverClaude Paroz
Thanks Corey Farwell for the report and Tim Graham for the review. Thanks also to Inada Naoki for creating and maintaining mysqlclient.
2014-10-24Fixed typo in docs/ref/request-response.txtJames Doherty
2014-10-21Fixed firstof docs error introduced in 1ea44a; refs #17906.Ralph Broenink
2014-10-20Fixed #23668 -- Changed make_aware() and make_naive() to use the current ↵Jon Dufresne
timezone by default Thanks Aymeric Augustin for review.
2014-10-19Fixed a typo in urlencode documentation.wrwrwr
2014-10-18Fixed #23676 -- Rearranged sentence; "by default" applies only to max lengthJon Dufresne
2014-10-17Fixed #23469 -- Removed test runner compatibility check which often yielded ↵Tim Graham
false positives.
2014-10-16Fixed #23667 -- Incorrect settings reference for language cookie.Tim Graham
Thanks jamesbeith for the report.
2014-10-16Fixed #23615 -- Validate that a Model instance's "check" attribute is a method.Rigel Di Scala
The "check" name is a reserved word used by Django's check framework, and cannot be redefined as something else other than a method, or the check framework will raise an error. This change amends the django.core.checks.model_check.check_all_models() function, so that it verifies that a model instance's attribute "check" is actually a method. This new check is assigned the id "models.E020".
2014-10-16Fixed #12008 -- Clarified relationship between template blocks and includes.mcgeeco
Thanks Daniele Procida for suggested wording.
2014-10-16Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi
Thanks Loic Bistuer for helping in shaping the patch and Claude Paroz for the review.
2014-10-12Fixed #23639 -- Fixed doc error in RegexValidator.regexDori
Thanks to @claudep for the report and the original patch.
2014-10-10Fixed #23631 -- Removed outdated note on MySQL timezone support.Tim Graham
Thanks marfire for the report.
2014-10-09Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL column ↵Markus Holtermann
into a NOT NULL one due to existing rows Thanks to Simon Charette, Loic Bistuer and Tim Graham for the review.
2014-10-06Fixed #23607 -- Typo in docs/ref/contrib/staticfiles.txt.Tim Graham
Thanks Rolandde for the report.