| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-07-01 | Fixed #4960 -- Added "strip" option to CharField | Curtis | |
| 2015-06-30 | Fixed #25038 -- Reverted incorrect documentation about inspectdb ↵ | Tim Graham | |
| introspecting views. This reverts commit bd691f4586c8ad45bd059ff9d3621cbf8afdcdce (refs #24177). | |||
| 2015-06-27 | Fixed #25033 -- Added context_processors.auth to documented admin dependencies. | Tim Graham | |
| 2015-06-25 | Refs #24127 -- Added documentation for HttpRequest.current_app. | Marten Kenbeek | |
| 2015-06-24 | Renamed RemovedInDjangoXYWarnings for new roadmap. | Tim Graham | |
| Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more. | |||
| 2015-06-24 | Refs #24840 -- Added GDALRaster Warp and transform methods | Daniel Wiesmann | |
| Thanks to Tim Graham for the review. | |||
| 2015-06-22 | Fixed #25001 -- Doc'd caveat about collectstatic and removing INSTALLED_APPS. | Tim Graham | |
| Thanks aRkadeFR for the initial patch. | |||
| 2015-06-22 | Fixed #24983 -- Clarified contrib.sites Site.domain is fully qualified. | Bipin Suresh | |
| 2015-06-22 | Fixed #24970 -- Added --managers and --admins options to the sendtestemail ↵ | Rolo | |
| management command. | |||
| 2015-06-21 | Fixed #24985 -- Added note about possible invalid feed content | Claude Paroz | |
| Thanks Michael Wood for the report and Tim Graham for the review. | |||
| 2015-06-20 | Fixed #25010 -- Documented APP_DIRS default in startproject's settings.py | Tim Graham | |
| 2015-06-20 | Fixed #14200 -- Added a fallback if HttpRequest.urlconf is None. | Marten Kenbeek | |
| Made BaseHandler fall back to settings.ROOT_URLCONF if HttpRequest.urlconf is set to None, rather than raising ImproperlyConfigured. | |||
| 2015-06-20 | Added GDAL 2.0 support | Claude Paroz | |
| 2015-06-19 | Fixed #23804 -- Added RasterField for PostGIS. | Daniel Wiesmann | |
| Thanks to Tim Graham and Claude Paroz for the reviews and patches. | |||
| 2015-06-19 | Fixed #24881 -- Clarified Meta.order_with_respect_to documentation | johannes.linke | |
| 2015-06-18 | Fixed #24834 -- Fixed get_current_site() when Host header contains port. | Nick Pope | |
| When the Host header contains a port, looking up the Site record fails as the host will never match the domain. | |||
| 2015-06-16 | Fixed #24948 -- Fixed crash when uploading bitmap images in forms.ImageField | Andriy Sokolovskiy | |
| 2015-06-16 | Fixed #24971 -- Made startapp generate an apps.py | Mounir Messelmeni | |
| 2015-06-15 | Fixed #24894 -- Added contrib.postgres.functions.TransactionNow | Adam Chainz | |
| 2015-06-12 | Fixed #24963 -- Added File.seekable() on Python 3. | Carson Gee | |
| 2015-06-11 | Used PEP 8 style indentation in forms docs. | Nick Smith | |
| 2015-06-10 | Refs #16860 -- Minor edits and fixes to password validation. | Tim Graham | |
| 2015-06-09 | Fixed import in docs/ref/contrib/syndication.txt | argaen | |
| 2015-06-09 | Clarified the default form widgets for model number fields in docs | Matt Deacalion Stevens | |
| 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 | |
