| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-13 | Fixed #23765 -- Removed BooleanField default check which often yielded false ↵ | Tim Graham | |
| positives. | |||
| 2014-11-13 | Added missing docs for 1_7.W001 check. | Tim Graham | |
| 2014-11-13 | Removed doc reference to pre-1.5 PostGIS | Claude Paroz | |
| 2014-11-13 | Updated Fink doc section to be version-agnostic | Claude Paroz | |
| 2014-11-12 | Fixed #23774 -- Clarified QuerySet.order_by() and related models. | Tim Graham | |
| 2014-11-10 | Fixed #23789 -- TemplateResponse handles context differently from render | Luke Plant | |
| 2014-11-05 | Removed 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-04 | Fixed #23531 -- Added CommonMiddleware.response_redirect_class. | Berker Peksag | |
| 2014-11-04 | Fix minor typo in documentation. | Marc Tamlyn | |
| 2014-11-04 | Fixed #13181 -- Added support for callable choices to forms.ChoiceField | Peter Inglesby | |
| Thanks vanschelven and expleo for the initial patch. | |||
| 2014-11-04 | Fixed links to mysqlclient in database notes. | Tim Graham | |
| 2014-11-04 | Added HStoreField. | Marc Tamlyn | |
| Thanks to `django-hstore` for inspiration in some areas, and many people for reviews. | |||
| 2014-11-03 | Fixed versionchanged indentation in docs/. | Berker Peksag | |
| 2014-11-03 | Fixed spelling mistake in docs/ref/request-response.txt | Tim Graham | |
| 2014-11-03 | Fixed #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-03 | Fixed #18456 -- Added path escaping to HttpRequest.get_full_path(). | Unai Zalakain | |
| 2014-11-03 | Moved CSRF docs out of contrib. | Thomas Chaumeny | |
| 2014-10-31 | Fixed #23732 -- Corrected and enhanced select_related() docs. | Tim Graham | |
| Thanks Daniele Procida for the report and review. | |||
| 2014-10-30 | Fixed #23656 -- Made FormMixin.get_form's form_class argument optional. | Simon Charette | |
| Thanks Tim Graham for the review. | |||
| 2014-10-30 | Fixed #23736 -- Corrected the description of the value that ↵ | Tim Graham | |
| silent_variable_failure uses. Thanks Aymeric Augustin for the report. | |||
| 2014-10-30 | Fixed #23737 -- Recommended the render() shortcut more strongly. | Tim Graham | |
| Thanks Aymeric Augustin for the report. | |||
| 2014-10-30 | Explained why admindocs omits model methods with arguments. | Zan Anderle | |
| 2014-10-30 | Removed extra period. | Aymeric Augustin | |
| 2014-10-30 | Fixed #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-30 | Fixed #23558 -- documented slugify limitations | David Hoffman | |
| 2014-10-30 | Added missing imports to example from previous commit. | Tim Graham | |
| 2014-10-30 | Fixed #23575 -- Added a code example for custom AdminSite. | Berker Peksag | |
| 2014-10-30 | Fixed #23725 -- Substituted AUTH_USER_MODEL for User in docs. | Raul Cumplido | |
| 2014-10-30 | Fixed #18731 -- Added an example about customizing "makemessages" command. | Berker Peksag | |
| Thanks claudp for the suggestion and review. | |||
| 2014-10-29 | Added cross reference in admin docs to topic about saving objects in formsets. | P.A. SCHEMBRI | |
| 2014-10-28 | Fixed spelling errors in docs. | Tim Graham | |
| 2014-10-28 | Required MySQLdb >= 1.2.5 for fractional seconds support | Claude 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-28 | Fixed #19716 -- Added support for microseconds with MySQL 5.6.4 and up | Claude Paroz | |
| Thanks erik@cederstrand.dk for the report and Tim Graham for the review. | |||
| 2014-10-28 | Fixed #23493 -- Added bilateral attribute to Transform | Thomas Chaumeny | |
| 2014-10-27 | Fixed QuerySet datetimes argument name in docs. | Oliver Meinusch | |
| 2014-10-27 | Fixed #23446 -- Officially recommended mysqlclient as MySQL driver | Claude 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-24 | Fixed typo in docs/ref/request-response.txt | James Doherty | |
| 2014-10-21 | Fixed firstof docs error introduced in 1ea44a; refs #17906. | Ralph Broenink | |
| 2014-10-20 | Fixed #23668 -- Changed make_aware() and make_naive() to use the current ↵ | Jon Dufresne | |
| timezone by default Thanks Aymeric Augustin for review. | |||
| 2014-10-19 | Fixed a typo in urlencode documentation. | wrwrwr | |
| 2014-10-18 | Fixed #23676 -- Rearranged sentence; "by default" applies only to max length | Jon Dufresne | |
| 2014-10-17 | Fixed #23469 -- Removed test runner compatibility check which often yielded ↵ | Tim Graham | |
| false positives. | |||
| 2014-10-16 | Fixed #23667 -- Incorrect settings reference for language cookie. | Tim Graham | |
| Thanks jamesbeith for the report. | |||
| 2014-10-16 | Fixed #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-16 | Fixed #12008 -- Clarified relationship between template blocks and includes. | mcgeeco | |
| Thanks Daniele Procida for suggested wording. | |||
| 2014-10-16 | Fixed #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-12 | Fixed #23639 -- Fixed doc error in RegexValidator.regex | Dori | |
| Thanks to @claudep for the report and the original patch. | |||
| 2014-10-10 | Fixed #23631 -- Removed outdated note on MySQL timezone support. | Tim Graham | |
| Thanks marfire for the report. | |||
| 2014-10-09 | Fixed #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-06 | Fixed #23607 -- Typo in docs/ref/contrib/staticfiles.txt. | Tim Graham | |
| Thanks Rolandde for the report. | |||
