Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #24983 -- Clarified contrib.sites Site.domain is ↵Bipin Suresh2015-06-221-1/+2
| | | | fully qualified.
* Fixed #24970 -- Added --managers and --admins options to ↵Rolo2015-06-221-0/+12
| | | | the sendtestemail management command.
* Fixed #24985 -- Added note about possible invalid feed ↵Claude Paroz2015-06-211-1/+4
| | | | | | content Thanks Michael Wood for the report and Tim Graham for the review.
* Fixed #25010 -- Documented APP_DIRS default in ↵Tim Graham2015-06-211-0/+5
| | | | startproject's settings.py
* Fixed #14200 -- Added a fallback if HttpRequest.urlconf ↵Marten Kenbeek2015-06-211-0/+8
| | | | | | | | is None. Made BaseHandler fall back to settings.ROOT_URLCONF if HttpRequest.urlconf is set to None, rather than raising ImproperlyConfigured.
* Added GDAL 2.0 supportClaude Paroz2015-06-201-1/+1
|
* Fixed #23804 -- Added RasterField for PostGIS.Daniel Wiesmann2015-06-194-19/+96
| | | | Thanks to Tim Graham and Claude Paroz for the reviews and patches.
* Fixed #24881 -- Clarified Meta.order_with_respect_to ↵johannes.linke2015-06-191-10/+18
| | | | documentation
* Fixed #24834 -- Fixed get_current_site() when Host ↵Nick Pope2015-06-181-4/+17
| | | | | | | header contains port. When the Host header contains a port, looking up the Site record fails as the host will never match the domain.
* Fixed #24948 -- Fixed crash when uploading bitmap images ↵Andriy Sokolovskiy2015-06-161-5/+8
| | | | in forms.ImageField
* Fixed #24971 -- Made startapp generate an apps.pyMounir Messelmeni2015-06-161-0/+5
|
* Fixed #24894 -- Added ↵Adam Chainz2015-06-153-1/+41
| | | | contrib.postgres.functions.TransactionNow
* Fixed #24963 -- Added File.seekable() on Python 3.Carson Gee2015-06-121-1/+6
|
* Used PEP 8 style indentation in forms docs.Nick Smith2015-06-113-24/+31
|
* Refs #16860 -- Minor edits and fixes to password validation.Tim Graham2015-06-101-4/+4
|
* Fixed import in docs/ref/contrib/syndication.txtargaen2015-06-091-1/+1
|
* Clarified the default form widgets for model number ↵Matt Deacalion Stevens2015-06-091-3/+8
| | | | fields in docs
* Fixed #24956 -- Fixed typo in docs/ref/forms/widgets.txtTim Graham2015-06-081-2/+5
|
* Fixed #21927 -- Made application and instance namespaces ↵Marten Kenbeek2015-06-083-11/+37
| | | | | | | | more distinct. 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.
* Fixed #24796 -- Added a hint on placement of ↵Marissa Zhou2015-06-081-0/+6
| | | | | | SecurityMiddleware in MIDDLEWARE_CLASSES. Also moved it in the project template.
* Fixed #24952 -- Fixed example SQL in Func() expressions docsAlasdair Nicol2015-06-081-1/+1
|
* Fixed #16860 -- Added password validation to ↵Erik Romijn2015-06-071-0/+13
| | | | django.contrib.auth.
* Fixed #24922 -- Added system check for templates settingSergei Maertens2015-06-071-0/+10
| | | | | | 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.
* Fixed #24906 -- Fixed ResolverMatch.app_name for nested ↵Marten Kenbeek2015-06-061-0/+9
| | | | | | | namespaces. Set ResolverMatch.app_name to the full path of nested application namespaces.
* Minor edits to Greatest/Least docs; refs #24767.Tim Graham2015-06-051-11/+11
|
* Fixed #22571 -- Added clarification about auto_now_add=TrueYamila Moreno2015-06-051-1/+5
|
* Capitalized "Python" in docs.Tim Graham2015-06-052-3/+3
|
* Fixed #24925 -- Document using Coalesce on MySQLIan Foote2015-06-051-0/+11
| | | | | Add warning for using Coalesce with python values on MySQL and document workaround.
* Fixed #24767 -- Added Greatest and Least expressionsIan Foote2015-06-051-0/+68
| | | | Greatest and Least are row-level Function versions of Min and Max.
* Fixed #22316 -- Added time filters to TimeField on SQLite.Matthew Somerville2015-06-051-12/+33
| | | | | This was implemented for non-SQLite backends in 1.7 (as a side effect of #16187).
* Fixed #24474 -- Allowed configuring the admin's empty ↵Loek van Gent2015-06-051-1/+64
| | | | change list value.
* Fixed #24159 -- Made compilemessages run across all apps.Matthew Somerville2015-06-051-0/+5
| | | | | Updated the command to match the documentation, which states it runs over all .po files.
* Fixed #24837 -- field__contained_by=RangeMarc Tamlyn2015-06-041-2/+22
| | | | | | | | 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.
* Fixed #24191 -- Documented Form.changed_dataAlasdair Nicol2015-06-041-2/+12
| | | | Thanks rhertzog and Björn Påhlsson for the suggestion.
* Fixed #24866 -- Added Now() database functionAdam Chainz2015-06-021-0/+15
|
* Fixed #24896 -- Doc'd clickjacking protection doesn't ↵Simeon J Morgan2015-06-021-0/+3
| | | | overwrite X-Frame-Options header.
* Fixed #9596 -- Added date transform for DateTimeField.Jon Dufresne2015-06-021-0/+21
|
* Fixed #24880 -- Added more explicit docs on ↵Przemysław Suliga2015-06-011-2/+5
| | | | select_for_update() on SQLite.
* Refs #24811 -- Fixed syntax error in CREATE EXTENSION ↵Tim Graham2015-05-311-1/+1
| | | | example query.
* Fixed #24604 -- Added JSONField to contrib.postgres.Marc Tamlyn2015-05-312-0/+120
|
* Add HasAnyKeys lookup for HStoreField.Marc Tamlyn2015-05-301-0/+17
|
* Optimise the rest of the PNGs in docsCurtis2015-05-296-0/+0
|
* Fixed typos in docs/ref/forms/widgets.txtI am Clinton2015-05-261-2/+2
|
* Fixed #24788 -- Allowed Forms to specify a prefix at the ↵Paweł Marczewski2015-05-261-0/+10
| | | | class level.
* Minor edits to docs/ref/forms/validation.txtI am Clinton2015-05-251-19/+18
|
* Fixed typos in docs/ref/forms/fields.txtI am Clinton2015-05-251-4/+4
|
* Fixed #24811 -- Added details on installing PostgreSQL ↵Tim Graham2015-05-231-0/+18
| | | | extensions.
* Fixed #16891 -- Made Model/QuerySet.delete() return the ↵Alexander Sosnovskiy2015-05-222-5/+20
| | | | number of deleted objects.
* Fixed #24839 -- Removed references to deprecated ↵Tim Graham2015-05-221-7/+0
| | | | contrib.webdesign.
* Cosmetic edits and minor fixes to ↵I am Clinton2015-05-221-29/+33
| | | | docs/ref/contrib/admin/index.txt