Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #25386 -- Warned about differences between Engine ↵Tim Graham2015-09-241-0/+7
| | | | and DjangoTemplates.
* Added some more links in form field docsClaude Paroz2015-09-231-5/+6
|
* Fixed typo in docs/topics/db/examples/one_to_one.txtDon Kirkby2015-09-231-1/+1
|
* Refs #25373 -- Doc'd logging of exceptions during {% ↵Tim Graham2015-09-231-2/+8
| | | | include %} rendering.
* Refs #24526 -- Made the django logger handle INFO messages.Tim Graham2015-09-231-1/+2
| | | | | | | Without an explicit 'level', only messages at WARNING or higher are handled. This makes the config consistent with the docs which say, "The django catch-all logger sends all messages at the INFO level or higher to the console."
* Refs #21927 -- Added examples to urls.include() changes ↵Tim Graham2015-09-231-6/+50
| | | | in 1.9 release notes.
* Fixed #25447 -- Emphasized the need to restart dev ↵Henry Jordan2015-09-231-2/+6
| | | | server when adding template tags.
* Refs #24115 -- Added docs for password updates on bcrypt ↵Tim Graham2015-09-231-3/+7
| | | | rounds change.
* Fixed #24509 -- Added Expression support to ↵Alex Hill2015-09-222-6/+26
| | | | SQLInsertCompiler
* Added link to Babel's message extracting functionality.Rik2015-09-221-2/+3
|
* Recommended against default_app_config.Aymeric Augustin2015-09-221-0/+8
| | | | | | | | Most likely this is a losing fight -- people seem to love this small convention -- but at least the reasons for avoiding it will be documented. Refs #25356.
* Fixed #25373 -- Added warning logging for exceptions ↵Nick Johnson2015-09-222-5/+17
| | | | during {% include %} tag rendering.
* Added "readded" to the docs wordlist.Tim Graham2015-09-211-0/+1
|
* Fixed #24921 -- set_autocommit(False) + ORM queries.Aymeric Augustin2015-09-212-2/+10
| | | | | | | | | | | | | This commits lifts the restriction that the outermost atomic block must be declared with savepoint=False. This restriction was overly cautious. The logic that makes it safe not to create savepoints for inner blocks also applies to the outermost block when autocommit is disabled and a transaction is already active. This makes it possible to use the ORM after set_autocommit(False). Previously it didn't work because ORM write operations are protected with atomic(savepoint=False).
* Fixed #15760 -- Added JavaScript events for admin inline ↵ramez2015-09-213-0/+81
| | | | forms.
* Fixed #25431 -- Readded inline foreign keys to ↵Claude Paroz2015-09-211-0/+3
| | | | | | | | modelformset instances Too much field exclusions in form's construct_instance() in _post_clean() could lead to some unexpected missing ForeignKey values. Fixes a regression from 45e049937. Refs #13776.
* Fixed #23813 -- Added checks for common URL pattern errorsAlasdair Nicol2015-09-212-0/+18
| | | | | Thanks jwa and lamby for the suggestions, and timgraham and jarshwah for their reviews.
* Fixed #12856 -- Documented BoundField API.Moritz Sichert2015-09-213-75/+165
|
* Fixed #24629 -- Unified Transform and Expression APIsJosh Smeaton2015-09-214-27/+50
|
* Refs #25135 -- Corrected the timeline section of ↵Tim Graham2015-09-201-3/+3
| | | | allow_tags deprecation.
* Removed unused sections in 1.9 release notes.Tim Graham2015-09-201-35/+0
|
* Alphabetized a few sections in the 1.9 release notes + ↵Tim Graham2015-09-201-85/+89
| | | | made a few tweaks.
* Fixed #25430 -- Fixed incorrect RunSQL examples.Flavio Curella2015-09-201-4/+4
|
* Fixed #25160 (again) -- Moved data loss check on reverse ↵Aymeric Augustin2015-09-192-0/+7
| | | | | | | | relations. Moved data loss check when assigning to a reverse one-to-one relation on an unsaved instance to Model.save(). This is exactly the same change as e4b813c but for reverse relations.
* Fixed #25390 -- Allowed specifying a start migration in ↵Markus Holtermann2015-09-193-3/+13
| | | | | | squashmigrations Thanks Tim Graham for the review.
* Fixed #24743, #24745 -- Optimized migration plan handlingMarkus Holtermann2015-09-192-0/+20
| | | | | | | | | | | | | | | | The change partly goes back to the old behavior for forwards migrations which should reduce the amount of memory consumption (#24745). However, by the way the current state computation is done (there is no `state_backwards` on a migration class) this change cannot be applied to backwards migrations. Hence rolling back migrations still requires the precomputation and storage of the intermediate migration states. This improvement also implies that Django does not handle mixed migration plans anymore. Mixed plans consist of a list of migrations where some are being applied and others are being unapplied. Thanks Andrew Godwin, Josh Smeaton and Tim Graham for the review as well as everybody involved on the ticket that kept me looking into the issue.
* Fixed #25269 -- Allowed method_decorator() to accept a ↵fabrizio ettore messina2015-09-193-6/+35
| | | | list/tuple of decorators.
* Fixed #24944 -- Added extra_email_context parameter to ↵sujayskumar2015-09-192-1/+11
| | | | password_reset() view.
* Fixed #13110 -- Added support for multiple enclosures in ↵Unai Zalakain2015-09-194-9/+61
| | | | | | | | | | | | | Atom feeds. The ``item_enclosures`` hook returns a list of ``Enclosure`` objects which is then used by the feed builder. If the feed is a RSS feed, an exception is raised as RSS feeds don't allow multiple enclosures per feed item. The ``item_enclosures`` hook defaults to an empty list or, if the ``item_enclosure_url`` hook is defined, to a list with a single ``Enclosure`` built from the ``item_enclosure_url``, ``item_enclosure_length``, and ``item_enclosure_mime_type`` hooks.
* Fixed #25417 -- Added a field check for invalid default ↵Simon Charette2015-09-182-0/+4
| | | | values.
* Fixed #24636 -- Added model field validation for decimal ↵Iulia Chiriac2015-09-181-0/+16
| | | | places and max digits.
* Made assorted improvements to the Oracle documentation.Mariusz Felisiak2015-09-185-14/+24
|
* Dropped support for Oracle 11.1.Tim Graham2015-09-183-2/+8
|
* Fixed #25034 -- Converted caches ImproperlyConfigured ↵Tom Christie2015-09-181-0/+10
| | | | error to a system check.
* Refs #20625 -- Forwardported tests and release notes for ↵Aric Coady2015-09-181-0/+3
| | | | | | | | queryset chaining fix. The issue was fixed on master due to the removal of ValuesQuerySet. Partial forwardport of 7d471fe6626de2b36b97ac04086d8ea307be8288 from stable/1.8.x
* Removed obsolete pysqlite documentation.Tim Graham2015-09-182-55/+1
| | | | | These steps are no longer needed as of pysqlite 2.7.0. https://github.com/ghaering/pysqlite/commit/76f34850be582249d9048e6acb2993943b07d31b
* Refs #14091 -- Fixed connection.queries on SQLite.Aymeric Augustin2015-09-173-12/+2
|
* Fixed #24496 -- Added CSRF Referer checking against ↵Matt Robenolt2015-09-163-4/+22
| | | | | | | CSRF_COOKIE_DOMAIN. Thanks Seth Gottlieb for help with the documentation and Carl Meyer and Joshua Kehn for reviews.
* Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert2015-09-163-0/+48
|
* Updated docs coverage example to run in a single process.David Gibbons2015-09-161-2/+3
|
* Remove unnecessarily rude terminology.Stephen Paulger2015-09-161-1/+1
|
* Fixed #25369 -- Corrected syndication's get_object() ↵Tim Graham2015-09-141-2/+1
| | | | example.
* Reverted "Fixed #25203 -- Documented how to pass Apache ↵Tim Graham2015-09-141-41/+0
| | | | | | | | environment variables to Django." As discussed on the ticket, this isn't a pattern we should recommend. This reverts commit 47016d4322574860f90431e1c87d19f7a1f778c6.
* Fixed #25377 -- Changed Count queries to execute ↵Adam Chainz2015-09-141-0/+4
| | | | COUNT(*) instead of COUNT('*').
* Fixed #25393 -- Fixed MySQL crash when adding text/blob ↵Ville Skyttä2015-09-142-0/+4
| | | | field with unhashable default.
* Refs #25386 -- Added links to the OPTIONS of the ↵Tim Graham2015-09-131-1/+4
| | | | built-in template backends.
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-3/+7
|
* Fixed #25384 -- Ordered imports in newly created ↵Markus Holtermann2015-09-121-0/+3
| | | | | | | | migration files Partial forwardport of 3cc5cc79584b66dafac54264d072ac1206426471 from stable/1.8.x as the issue was already fixed in master in a7bc00e17bebe34cdf23f744937b3c386ee73d81
* Cleaned up surrounding documentationMarkus Holtermann2015-09-121-3/+5
|
* Fixed #24919 -- Allowed disabling of migrations on a per ↵Markus Holtermann2015-09-122-0/+12
| | | | app basis