| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-16 | Renamed qn to compiler | Josh Smeaton | |
| 2014-11-16 | Merge pull request #3549 from psagers/master | Julien Phalip | |
| Fixes a race condition in the documentation. The example for django.contrib.admin.ModelAdmin.get_form was modifying self.exclude. However, since ModelAdmin instances are global and have no thread- or request-locality, this is not safe for concurrent requests. This updated documentation demonstrates a safe method to override admin forms on a per-request basis. | |||
| 2014-11-15 | Removed old version note in layermapping.txt | Claude Paroz | |
| 2014-11-15 | Fixes a race condition in the documentation. | Peter Sagerson | |
| The example for django.contrib.admin.ModelAdmin.get_form modifies self.exclude. However, since ModelAdmin instances are global and have no thread- or request-locality, this is not safe for concurrent requests.[1] This updated documentation demonstrates a safe method to override admin forms on a per-request basis. [1] https://groups.google.com/forum/#!topic/django-users/AmoUDtEefyA | |||
| 2014-11-15 | Fixed #23808 -- Documented that migrations table is created when using ↵ | Andreas Madsack | |
| runserver without migrating first. | |||
| 2014-11-15 | Fixed #23825 -- Added links for decorating class-based views to the CSRF docs. | Fabio Natali | |
| 2014-11-15 | Added a new GeoJSON serialization format for GeoDjango | Claude Paroz | |
| Thanks Reinout van Rees for the review. | |||
| 2014-11-15 | Fixed #14030 -- Allowed annotations to accept all expressions | Josh Smeaton | |
| 2014-11-15 | Fixed #23827 -- TZ behavior in Storage API ref doc | James Aylett | |
| This is derived from the current behaviour of FileSystemStorage. Note that since this was not previously documented, other implementations may not currently conform. | |||
| 2014-11-15 | Fixed #23665 -- Noted precedence of settings.USE_L10N in MONTH_DAY_FORMAT ↵ | Berker Peksag | |
| and YEAR_MONTH. | |||
| 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 | |
