summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2015-07-20Fixed #25141 -- Diminished GDAL dependence during geojson serializationClaude Paroz
Only require GDAL if contained geometries need coordinate transformations. Thanks drepo for the report and Tim Graham for the review.
2015-07-20Fixed signature of ModelAdmin.get_paginator() in docs.Ali Vakilzade
2015-07-17Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson
Thanks Flavio Curella and Berker Peksag for the initial patch.
2015-07-17Fixed #25125 -- Updated docs on cookie naming conventions.Konrad Świat
Thanks Tim Graham for the review and kezabelle for the report.
2015-07-16Fixed #25078 -- Added support for disabled form fieldsClaude Paroz
Thanks Keryn Knight and Tim Graham for the reviews.
2015-07-16Fixed #25120 -- Deprecated egg template loader.Tim Graham
2015-07-15Refs #24219 -- Removed inaccurate sentence after move of SelectDateWidget.Tim Graham
2015-07-15Fixed typo in SelectDateWidget docs.Tim Graham
2015-07-15Fixed #24966 -- Added deployment system check for empty ALLOWED_HOSTS.rroskam
2015-07-13Fixed #25079 -- Added warning if both TEMPLATES and TEMPLATE_* settings are ↵Daniel Roseman
defined. Django ignores the value of the TEMPLATE_* settings if TEMPLATES is also set, which is confusing for users following older tutorials. This change adds a system check that warns if any of the TEMPLATE_* settings have changed from their defaults but the TEMPLATES dict is also non-empty. Removed the TEMPLATE_DIRS from the test settings file; this was marked for removal in 1.10 but no tests fail if it is removed now.
2015-07-13Documented templates system check type.Tim Graham
2015-07-13Fixed #25116 -- Removed long-broken admindocs bookmarkletsBen Spaulding
These were broken back in commit 64e11a6.
2015-07-13Fixed #24984 -- Added link to Jinja2 static tag instructions in staticfiles ↵Chris McCollister
docs.
2015-07-10Fixed #25103 -- Corrected versionadded for FileResponseMatthew Madurski
2015-07-09Fixed #25048 -- Documented that runservers strips headers with underscores.Tim Graham
refs 316b8d49746933d1845d600314b002d9b64d3e3d
2015-07-04Fixed #25051 -- Clarified return type of {% now %} tag.Tim Graham
2015-07-03Fixed mistake in Model.from_db() example.Luke
2015-07-02Fixed #25029 -- Added PersistentRemoteUserMiddleware for login-page-only ↵Jan Pazdziora
external authentication.
2015-07-02Fixed #24997 -- Enabled bulk_create() on proxy modelsWilliam Schwartz
2015-07-01Fixed #4960 -- Added "strip" option to CharFieldCurtis
2015-06-30Fixed #25038 -- Reverted incorrect documentation about inspectdb ↵Tim Graham
introspecting views. This reverts commit bd691f4586c8ad45bd059ff9d3621cbf8afdcdce (refs #24177).
2015-06-27Fixed #25033 -- Added context_processors.auth to documented admin dependencies.Tim Graham
2015-06-25Refs #24127 -- Added documentation for HttpRequest.current_app.Marten Kenbeek
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-24Refs #24840 -- Added GDALRaster Warp and transform methodsDaniel Wiesmann
Thanks to Tim Graham for the review.
2015-06-22Fixed #25001 -- Doc'd caveat about collectstatic and removing INSTALLED_APPS.Tim Graham
Thanks aRkadeFR for the initial patch.
2015-06-22Fixed #24983 -- Clarified contrib.sites Site.domain is fully qualified.Bipin Suresh
2015-06-22Fixed #24970 -- Added --managers and --admins options to the sendtestemail ↵Rolo
management command.
2015-06-21Fixed #24985 -- Added note about possible invalid feed contentClaude Paroz
Thanks Michael Wood for the report and Tim Graham for the review.
2015-06-20Fixed #25010 -- Documented APP_DIRS default in startproject's settings.pyTim Graham
2015-06-20Fixed #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-20Added GDAL 2.0 supportClaude Paroz
2015-06-19Fixed #23804 -- Added RasterField for PostGIS.Daniel Wiesmann
Thanks to Tim Graham and Claude Paroz for the reviews and patches.
2015-06-19Fixed #24881 -- Clarified Meta.order_with_respect_to documentationjohannes.linke
2015-06-18Fixed #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-16Fixed #24948 -- Fixed crash when uploading bitmap images in forms.ImageFieldAndriy Sokolovskiy
2015-06-16Fixed #24971 -- Made startapp generate an apps.pyMounir Messelmeni
2015-06-15Fixed #24894 -- Added contrib.postgres.functions.TransactionNowAdam Chainz
2015-06-12Fixed #24963 -- Added File.seekable() on Python 3.Carson Gee
2015-06-11Used PEP 8 style indentation in forms docs.Nick Smith
2015-06-10Refs #16860 -- Minor edits and fixes to password validation.Tim Graham
2015-06-09Fixed import in docs/ref/contrib/syndication.txtargaen
2015-06-09Clarified the default form widgets for model number fields in docsMatt Deacalion Stevens
2015-06-08Fixed #24956 -- Fixed typo in docs/ref/forms/widgets.txtTim Graham
2015-06-08Fixed #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-08Fixed #24796 -- Added a hint on placement of SecurityMiddleware in ↵Marissa Zhou
MIDDLEWARE_CLASSES. Also moved it in the project template.
2015-06-08Fixed #24952 -- Fixed example SQL in Func() expressions docsAlasdair Nicol
2015-06-07Fixed #16860 -- Added password validation to django.contrib.auth.Erik Romijn
2015-06-06Fixed #24922 -- Added system check for templates settingSergei 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-06Fixed #24906 -- Fixed ResolverMatch.app_name for nested namespaces.Marten Kenbeek
Set ResolverMatch.app_name to the full path of nested application namespaces.