Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #25369 -- Corrected syndication's get_object() ↵Tim Graham2015-09-141-2/+1
| | | | example.
* Refs #25386 -- Added links to the OPTIONS of the ↵Tim Graham2015-09-131-1/+4
| | | | built-in template backends.
* Cleaned up surrounding documentationMarkus Holtermann2015-09-121-3/+5
|
* Fixed #24919 -- Allowed disabling of migrations on a per ↵Markus Holtermann2015-09-121-0/+9
| | | | app basis
* Refs #25381 -- Clarified that AppConfig model methods ↵Tim Graham2015-09-111-3/+4
| | | | search only the current app.
* Fixed #25382 -- Removed obsolete references to DateQuerySet.Renato Oliveira2015-09-112-19/+13
|
* Renamed admin doc image files to match the documentation ↵Ryan Allen2015-09-117-5/+5
| | | | they are for.
* Fixed #25200 -- Updated admin screenshots in docs.Ryan Allen2015-09-116-0/+0
|
* Fixed #25351 -- Added example for database test settings ↵Jose Carlos Menezes2015-09-111-2/+16
| | | | to docs.
* Fixed #25380 -- Added Postgres.app to the PostGIS ↵Flavio Curella2015-09-111-5/+21
| | | | options on OS X.
* Fixed #25379 -- Removed obsolete information from ↵Flavio Curella2015-09-112-30/+7
| | | | | | | GeoDjango tutorial. Django 1.9 drops support for PostgreSQL 9.0 where creating a database using a template was needed.
* Documented that the parallel test runner doesn't work on ↵Aymeric Augustin2015-09-101-1/+2
| | | | Windows.
* Avoided running more test processes than necessary.Aymeric Augustin2015-09-101-0/+4
| | | | | | This reduces the time spent cloning databases. Thanks Tim for the suggestion.
* Test parallelization isn't implemented on Oracle.Aymeric Augustin2015-09-091-0/+2
|
* Acknoweldeged a limitation of the parallel test runner.Aymeric Augustin2015-09-091-0/+11
| | | | | | Notably it will fail to report a Model.DoesNotExist exceptions because the class itself isn't pickleable. (Django has specific code to make its instances pickleable.)
* Allowed a port range for the liveserver by default.Aymeric Augustin2015-09-091-1/+5
| | | | This is required for running tests in parallel.
* Cloned databases for running tests in parallel.Aymeric Augustin2015-09-091-0/+4
|
* Implemented a parallel test runner.Aymeric Augustin2015-09-091-0/+20
|
* Fixed #25371 -- Added reverse_sql and reverse_code ↵Bibhas2015-09-091-3/+21
| | | | examples to docs.
* Fixed #25135 -- Deprecated the contrib.admin allow_tags ↵Ola Sitarska2015-09-091-11/+12
| | | | | | attribute. Thanks Jaap Roes for the idea and initial patch.
* Fixed #25350 -- Added alias --no-input for --noinput to ↵Raphael Michel2015-09-082-2/+12
| | | | management commands.
* Fixed #24857 -- Added "python -m django" entry point.Ryan Hiebert2015-09-081-1/+7
|
* Fixed #25356 -- Removed default_app_config from startapp ↵Tim Graham2015-09-072-2/+4
| | | | | | template. Also discouraged its use outside the intended use case.
* Fixed #24917 -- Made admindocs display model methods ↵Zan Anderle2015-09-071-4/+9
| | | | that take arguments.
* Removed some discussion of deprecated {% url %} behavior.Tim Graham2015-09-051-15/+10
|
* Fixed #25334 -- Provided a way to allow cross-origin ↵Joshua Kehn2015-09-052-1/+21
| | | | | | | | unsafe requests over HTTPS. Added the CSRF_TRUSTED_ORIGINS setting which contains a list of other domains that are included during the CSRF Referer header verification for secure (HTTPS) requests.
* Added default value for default kwargs for QueryDict.David Sanders2015-09-051-4/+4
|
* Fixed #25144 -- Allowed migrate to create tables for ↵Tim Graham2015-09-041-0/+8
| | | | apps without migrations.
* Refs #25345 -- Updated links to code.google.com.Maxime Lorant2015-09-041-3/+1
|
* Documented a limitation of Options.required_db_features.Tim Graham2015-09-031-1/+2
|
* Moved misplaced versionadded annotation.Tim Graham2015-09-031-2/+2
|
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-2/+0
|
* Fixed #25289 -- Updated admin's jQuery to 2.1.4.Tim Graham2015-08-311-1/+7
|
* Cleaned up example migration files in docsTyson Clugg2015-08-311-1/+3
|
* Fixed #25262 -- Removed the enable_comments field from ↵Y3K2015-08-292-1/+35
| | | | FlatPageAdmin.
* Fixed #25318 -- Made SILENCED_SYSTEM_CHECKS suppress all ↵Tim Graham2015-08-281-2/+6
| | | | | | | messages. Previously, messages of ERROR level or higher were printed to the console.
* Refs #2495 -- Documented that MySQL cannot have ↵Tim Graham2015-08-271-0/+8
| | | | TextField(unique=True).
* Updated PROJ.4 link to new GitHub wiki.David Sanders2015-08-251-1/+1
|
* Fixed #25309 -- Corrected that ATOMIC_REQUESTS applies ↵Tim Graham2015-08-251-2/+2
| | | | per view not per request.
* Recommended the JavaScript Cookie library instead of ↵Marc2015-08-191-3/+3
| | | | | | | jQuery cookie. jQuery cookie is no longer maintained in favor of the JavaScript cookie library. This also removes the jQuery dependency.
* Refs #24451 -- Corrected Django version for {% cycle %} ↵Tim Graham2015-08-191-1/+1
| | | | deprecation.
* Used consistent capitalization and hyphenation of ↵Anton Strogonoff2015-08-193-3/+3
| | | | "class-based views" in docs.
* Limited line length in docs/ref/contrib/messages.txt ↵Anton Strogonoff2015-08-171-2/+4
| | | | example.
* Fixed #25268 -- Tweaked wording in docs/ref/forms/api.txtTim Graham2015-08-141-2/+2
|
* Fixed #24988 -- Documented passing a dictionary of ↵Adam Brenecki2015-08-131-2/+11
| | | | ValidationErrors to ValidationError
* Fixed #25254 -- Added JsonResponse json_dumps_params ↵Sambhav Satija2015-08-121-1/+8
| | | | parameter.
* Corrected indentation of JsonResponse docs.Tim Graham2015-08-121-18/+16
|
* Fixed #25205 -- Removed doc references to deprecated ↵Brendan Hayward2015-08-116-39/+36
| | | | GeoManager class.
* Fixed typo in docs/ref/contrib/gis/geoquerysets.txtTim Graham2015-08-111-3/+2
|
* Fixed #25160 -- Moved unsaved model instance data loss ↵Tim Graham2015-08-102-37/+0
| | | | | | | | | check to Model.save() This mostly reverts 5643a3b51be338196d0b292d5626ad43648448d3 and 81e1a35c364e5353d2bf99368ad30a4184fbb653. Thanks Carl Meyer for review.