| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-06-08 | Fixed #24956 -- Fixed typo in docs/ref/forms/widgets.txt | Tim Graham | |
| 2015-06-08 | Fixed #21927 -- Made application and instance namespaces more distinct. | Marten Kenbeek | |
| Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces. | |||
| 2015-06-08 | Fixed #24796 -- Added a hint on placement of SecurityMiddleware in ↵ | Marissa Zhou | |
| MIDDLEWARE_CLASSES. Also moved it in the project template. | |||
| 2015-06-08 | Fixed #24952 -- Fixed example SQL in Func() expressions docs | Alasdair Nicol | |
| 2015-06-07 | Fixed #16860 -- Added password validation to django.contrib.auth. | Erik Romijn | |
| 2015-06-06 | Fixed #24922 -- Added system check for templates setting | Sergei Maertens | |
| If `'loaders'` is present in the `TEMPLATES` options together with `APP_DIRS` set to `True`, the template engine raises an exception. This conflict is now detected by the system check templates.E001. | |||
| 2015-06-06 | Fixed #24906 -- Fixed ResolverMatch.app_name for nested namespaces. | Marten Kenbeek | |
| Set ResolverMatch.app_name to the full path of nested application namespaces. | |||
| 2015-06-05 | Minor edits to Greatest/Least docs; refs #24767. | Tim Graham | |
| 2015-06-05 | Fixed #22571 -- Added clarification about auto_now_add=True | Yamila Moreno | |
| 2015-06-05 | Capitalized "Python" in docs. | Tim Graham | |
| 2015-06-05 | Fixed #24925 -- Document using Coalesce on MySQL | Ian Foote | |
| Add warning for using Coalesce with python values on MySQL and document workaround. | |||
| 2015-06-05 | Fixed #24767 -- Added Greatest and Least expressions | Ian Foote | |
| Greatest and Least are row-level Function versions of Min and Max. | |||
| 2015-06-04 | Fixed #22316 -- Added time filters to TimeField on SQLite. | Matthew Somerville | |
| This was implemented for non-SQLite backends in 1.7 (as a side effect of #16187). | |||
| 2015-06-04 | Fixed #24474 -- Allowed configuring the admin's empty change list value. | Loek van Gent | |
| 2015-06-04 | Fixed #24159 -- Made compilemessages run across all apps. | Matthew Somerville | |
| Updated the command to match the documentation, which states it runs over all .po files. | |||
| 2015-06-04 | Fixed #24837 -- field__contained_by=Range | Marc Tamlyn | |
| Provide `contained_by` lookups for the equivalent single valued fields related to the range field types. This acts as the opposite direction to rangefield__contains. With thanks to schinckel for the idea and initial tests. | |||
| 2015-06-04 | Fixed #24191 -- Documented Form.changed_data | Alasdair Nicol | |
| Thanks rhertzog and Björn Påhlsson for the suggestion. | |||
| 2015-06-02 | Fixed #24866 -- Added Now() database function | Adam Chainz | |
| 2015-06-02 | Fixed #24896 -- Doc'd clickjacking protection doesn't overwrite ↵ | Simeon J Morgan | |
| X-Frame-Options header. | |||
| 2015-06-02 | Fixed #9596 -- Added date transform for DateTimeField. | Jon Dufresne | |
| 2015-06-01 | Fixed #24880 -- Added more explicit docs on select_for_update() on SQLite. | Przemysław Suliga | |
| 2015-05-31 | Refs #24811 -- Fixed syntax error in CREATE EXTENSION example query. | Tim Graham | |
| 2015-05-30 | Fixed #24604 -- Added JSONField to contrib.postgres. | Marc Tamlyn | |
| 2015-05-30 | Add HasAnyKeys lookup for HStoreField. | Marc Tamlyn | |
| 2015-05-29 | Optimise the rest of the PNGs in docs | Curtis | |
| 2015-05-26 | Fixed typos in docs/ref/forms/widgets.txt | I am Clinton | |
| 2015-05-25 | Fixed #24788 -- Allowed Forms to specify a prefix at the class level. | Paweł Marczewski | |
| 2015-05-25 | Minor edits to docs/ref/forms/validation.txt | I am Clinton | |
| 2015-05-25 | Fixed typos in docs/ref/forms/fields.txt | I am Clinton | |
| 2015-05-23 | Fixed #24811 -- Added details on installing PostgreSQL extensions. | Tim Graham | |
| 2015-05-22 | Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted ↵ | Alexander Sosnovskiy | |
| objects. | |||
| 2015-05-22 | Fixed #24839 -- Removed references to deprecated contrib.webdesign. | Tim Graham | |
| 2015-05-21 | Cosmetic edits and minor fixes to docs/ref/contrib/admin/index.txt | I am Clinton | |
| 2015-05-21 | Fixed #24813 -- Documented {% include %} debug behavior variance | Andrei Kulakov | |
| 2015-05-21 | Cosmetic edits and minor corrections to docs/ref/django-admin.txt. | garwoodpr | |
| 2015-05-21 | Cosmetic edits and minor corrections to docs/ref/settings.txt. | garwoodpr | |
| 2015-05-21 | Fixed #17085, #24783 -- Refactored template library registration. | Preston Timmons | |
| * Converted the ``libraries`` and ``builtins`` globals of ``django.template.base`` into properties of the Engine class. * Added a public API for explicit registration of libraries and builtins. | |||
| 2015-05-20 | Fixed typo in docs/ref/contrib/admin/index.txt | latyas(懒) | |
| 2015-05-18 | Fixed typos in docs/ref/request-response.txt | I am Clinton | |
| 2015-05-17 | Fixed #24630 -- Clarified docs about RunPython transactions. | Tim Graham | |
| Thanks Markus Holtermann for review. | |||
| 2015-05-17 | Fixed #23820 -- Supported per-database time zone. | Aymeric Augustin | |
| The primary use case is to interact with a third-party database (not primarily managed by Django) that doesn't support time zones and where datetimes are stored in local time when USE_TZ is True. Configuring a PostgreSQL database with the TIME_ZONE option while USE_TZ is False used to result in silent data corruption. Now this is an error. | |||
| 2015-05-16 | Fixed #24774 -- Made contrib.site's Site.domain field unique | Piotr Jakimiak | |
| 2015-05-13 | Fixed broken link in settings docs | Piotr Jakimiak | |
| 2015-05-11 | Fixed #24733 -- Passed the triggering exception to 40x error handlers | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2015-05-11 | Fixed #24553 -- Added the list of available applications to ↵ | Riccardo Magliocchetti | |
| AdminSite.each_context() | |||
| 2015-05-08 | Fixed #24763 -- Moved DoesNotExist exception to model docs. | David Krisch | |
| 2015-05-07 | Fixed typo in docs/ref/models/expressions.txt | Ian Foote | |
| 2015-05-06 | Fixed #24520 -- Documented Widget.supports_microseconds | wdmgsm | |
| 2015-05-06 | Fixed typos in docs/ref/contrib/gis/geoquerysets.txt | Sławomir Ehlert | |
| 2015-05-05 | Fixed #24736 -- Documented the Sitemap.limit attribute | Abhaya Agarwal | |
