Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #18388 - Added InlineModelAdmin.get_max_num hook.Tim Graham2013-06-021-0/+26
| | | | | Thanks d.willy.c.c@ for the suggestion and Melevir and Areski Belaid for work on the patch.
* Fixed #20326 - Corrected form wizard get_form() example.Tim Graham2013-05-311-2/+9
| | | | Thanks tris@ for the report.
* Fixed #20511 -- Corrected link about isolation levels in ↵Claude Paroz2013-05-311-5/+4
| | | | | | databases docs Thanks tinodb for the report.
* Tweak caching decorators/utility functions xrefs.Ramiro Morales2013-05-311-2/+2
|
* Fixed #19425 - Added InlineModelAdmin.get_extra hook.Tim Graham2013-05-301-0/+25
| | | | Thanks dave@ for the suggestion and Rohan Jain for the patch.
* Fixed #16856 - Added a way to clear select_related.Tim Graham2013-05-301-0/+7
| | | | Thanks Carl for the suggestion and David Cramer for the patch.
* Fixed regroup example.Gavin Wahl2013-05-301-0/+2
| | | | Chicago was missing.
* Fixed #20525 -- Added versionadded for clearsessions.Tim Graham2013-05-291-0/+2
| | | | Thanks wiml@.
* Fixed #20228 - Documented unique_for_date and exclude ↵Tim Graham2013-05-281-1/+6
| | | | | | behavior. Thanks Deepak Thukral for the patch.
* Fixed #16137 - Removed kwargs requirement for ↵Tim Graham2013-05-271-2/+6
| | | | | | | QuerySet.get_or_create Thanks wilfred@, poirier, and charettes for work on the patch.
* Fix #20505: Typo in BinaryField documentation.Baptiste Mispelon2013-05-271-1/+1
|
* Fixed #19866 -- Added security logger and return 400 for ↵Preston Holmes2013-05-261-3/+18
| | | | | | | | | | | | SuspiciousOperation. SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
* Fixed #20492 - Removed a broken link in GIS docs.Tim Graham2013-05-241-3/+1
|
* Merge pull request #1210 from ↵Tim Graham2013-05-241-1/+1
|\ | | | | | | | | alasdairnicol/jquery_cookie_plugin_link Updated link to jQuery Cookie plugin site
| * Update link to jQuery Cookie plugin siteAlasdair Nicol2013-05-241-1/+1
| |
* | Link to active fork for ODBC backendPaul Tax2013-05-241-1/+1
|/ | | | | | | | | | | It took me quite some time to find if and where the ODBC backend was maintained. I found (on djangoproject.com): http://code.google.com/p/django-pyodbc/ (last commit about 3 years ago) then: https://github.com/avidal/django-pyodbc avidal fork. then: https://github.com/aurorasoftware/django-pyodbc/ aurorasoftware version which has avidal improvements merged. Avidals version now links to https://github.com/aurorasoftware/django-pyodbc/ which is also the version installed through PIP.
* Fixed #17648 -- Add `for_concrete_model` to ↵Gavin Wahl2013-05-241-1/+16
| | | | | | | | | | | `GenericForeignKey`. Allows a `GenericForeignKey` to reference proxy models. The default for `for_concrete_model` is `True` to keep backwards compatibility. Also added the analog `for_concrete_model` kwarg to `generic_inlineformset_factory` to provide an API at the form level.
* Fixed #19237 (again) - Made strip_tags consistent ↵Claude Paroz2013-05-231-2/+8
| | | | between Python versions
* Fixed #11398 - Added a pre_syncdb signalDonald Stufft2013-05-231-0/+47
|
* Merge pull request #1198 from KrzysiekJ/http-patch-methodRussell Keith-Magee2013-05-231-1/+1
|\ | | | | Fixed #20478 – Added support for HTTP PATCH method in generic views.
| * Fixed #20478 – Added support for HTTP PATCH method in ↵Krzysztof Jurewicz2013-05-221-1/+1
| | | | | | | | generic views.
* | Fixed a broken link introduced in a542b808baf.Tim Graham2013-05-221-1/+0
|/
* Merge pull request #1196 from selwin/last-doc-fixTim Graham2013-05-221-1/+1
|\ | | | | Slightly reworded 'last()' docs
| * Slightly reworded 'last()' docs.Selwin Ong2013-05-211-1/+1
| |
* | Fixed #20476 -- Typo.Aymeric Augustin2013-05-211-1/+1
|/
* Fixed #19326 -- Added first() and last() methods to QuerySetSelwin Ong2013-05-211-0/+30
|
* Fixed #17308 -- Enabled the use of short_description on ↵Wiktor Kolodziej2013-05-211-1/+22
| | | | properties in the admin.
* Removed a confusing duplicate SESSION_COOKIE_DOMAIN headerŁukasz Langa2013-05-211-12/+3
| | | | | | The note is clearly a part of MESSAGE_STORAGE documentation. As a separate section, it broke automatic link generation on the HTML version of the documentation.
* Fixed warnings in admindocs; refs #20126.Tim Graham2013-05-201-5/+4
|
* Fix typo in redirect view docsAlasdair Nicol2013-05-201-1/+1
|
* Fixed #20459 - Improved example for setting HTTP header ↵Tim Graham2013-05-191-2/+9
| | | | | | fields. Thanks Jérémie Blaser.
* Fixed #16330 -- added --pks option in dumpdata commandPreston Holmes2013-05-191-0/+9
| | | | | Thanks to guettli for the initial ticket and patch, with additional work from mehmetakyuz and Kevin Brolly.
* Fixed #15961 -- Modified ModelAdmin to allow for custom ↵Bozidar Benko2013-05-191-0/+36
| | | | | | | | | search methods. This adds a get_search_results method that users can override to provide custom search strategies. Thanks to Daniele Procida for help with the docs.
* Merge pull request #1162 from sspross/patch-docsMarc Tamlyn2013-05-198-60/+136
|\ | | | | Add needed Imports to the Documentation, Part II
| * Add missing imports and models to the examples in the ↵vkuzma2013-05-191-12/+54
| | | | | | | | admin documentation
| * add missing imports to the examples in the 'Forms'leandrafinger2013-05-195-48/+74
| |
| * Add missing imports and models to the examples in ↵Silvan Spross2013-05-191-0/+1
| | | | | | | | security documentation
| * Add missing imports and models to the examples in the ↵Silvan Spross2013-05-191-0/+7
| | | | | | | | template layer documentation
* | Fixes #18896. Add tests verifying that you can get ↵Pablo Recio2013-05-191-0/+35
| | | | | | | | IntegrityErrors using get_or_create through relations like M2M, and it also adds a note into the documentation warning about it
* | Fixed #20126 -- XViewMiddleware moved to ↵Łukasz Langa2013-05-193-19/+6
|/ | | | django.contrib.admindocs.middleware
* Fixed #12747 -- Made reason phrases customizable.Aymeric Augustin2013-05-191-6/+21
|
* Merge pull request #1098 from zsiciarz/ticket-16829Marc Tamlyn2013-05-191-0/+40
|\ | | | | Added example of using sitemaps with static views.
| * Added example of using sitemaps with static views.Zbigniew Siciarz2013-05-181-0/+40
| | | | | | | | References #16829.
* | Fixed #20452 -- Rename 'headers' to 'header fields'.bbjay2013-05-191-6/+6
| |
* | Merge pull request #1129 from frog32/masterMarc Tamlyn2013-05-196-2/+42
|\ \ | | | | | | Add needed Imports to the Documentation
| * | Add missing imports and models to the examples in the ↵Silvan Spross2013-05-181-0/+3
| | | | | | | | | | | | view layer documentation
| * | Add missing imports and models to the examples in the ↵Marc Egli2013-05-185-2/+39
| | | | | | | | | | | | the model layer documentation
* | | Fixed #20004 -- Moved non DB-related assertions to ↵Ramiro Morales2013-05-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | SimpleTestCase. Thanks zalew for the suggestion and work on a patch. Also updated, tweaked and fixed testing documentation.
* | | Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as ↵Łukasz Langa2013-05-181-2/+6
| | | | | | | | | | | | deprecated
* | | Merge branch 'allow-any-iterable-for-choices'Donald Stufft2013-05-181-3/+4
|\ \ \