summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
AgeCommit message (Collapse)Author
2014-01-29[1.6.x] Fix typo CRSF -> CSRFIan Foote
Backport of af64f829d7 from master
2014-01-22[1.6.x] Always use parentheses when documenting a method with no arguments.Baptiste Mispelon
Backport of 05d36dc06e6d767bb28993c65a54b703f319a386 from master.
2014-01-22[1.6.x] Don't show `self` in the list of arguments of a method.Baptiste Mispelon
This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855. Backport of 79e1d6ebd70898d514a44b85648e3d24104c4243 from master.
2014-01-02[1.6.x] Fixed minor typos.Nathan Smith
Backport of 44d40ba521 from master
2013-12-30[1.6.x] Fixed #21710 -- Documented User.get_short_name()Tim Graham
Thanks Keryn Knight for the report. Backport of 0150830687 from master
2013-12-28[1.6.x] Fixed #21618 -- Added hints about openlayers.js hostingClaude Paroz
Thanks kz26 for the report and Tim Graham for the excellent review. Backport of b7a7baa554 from master.
2013-12-19[1.6.x] Fixed #21213 -- Added docs for Django's mailing lists.Unai Zalakain
Added docs/internals/mailing-lists.txt documenting the use of django's mailing lists. All references across docs changed to point to this page. The referencing makes use of substitution because there's no way to make a :ref: link in a non-inline fashion in Sphinx. It also makes use of rst_epilog Sphinx conf for making this substitutions across all the docs. Backport of 3895d8899d from master
2013-12-08[1.6.x] Updated a bunch of hyperlinks in documentationClaude Paroz
Backport of 626bdf648 from master.
2013-11-24[1.6.x] Fixed typo in previous commit; refs #21490.Tim Graham
Backport of 03bc0a8ac5 from master
2013-11-24[1.6.x] Fixed #21490 -- Fixed custom admin URL reverse example.Tim Graham
Thanks glarrain for the report. Backport of bfe7377adb from master
2013-11-18[1.6.x] Fixed #20852 - Fixed incorrectly generated left quotes in docs.Dominic Rodger
Sphinx generates left single quotes for apostrophes after code markup, when right single quotes are required. The easiest way to fix this is just by inserting the unicode character for a right single quote. Instances of the problem were found by looking for ">‘" in the generated HTML. Backport of c33d1ca1d98003de29cdecb6080b52c5c52139bd from master.
2013-11-09[1.6.x] Fixed versionadded misuse in the admin documentation.Baptiste Mispelon
Backport of c82e850eed2eb3957ed792908b73622ebd3034a7 from master.
2013-09-25[1.6.x] Fixed #21116 -- Made usage of manage.py in docs more consistent.Tim Graham
Thanks daniel.quattro at gmail.com for the report. d1c9802811 from master.
2013-09-12[1.6.x] Fixed a couple of typos in GeoDjango docs.Ramiro Morales
8b366a50f4 from master.
2013-09-11[1.6.x] Minor typo fix in django.contrib.auth.models.User docsPhaneendra Chiruvella
Backport of bd72c2acb6 from master
2013-09-06[1.6.x] Fixed #19295 -- Documented that CachedStaticFilesStorage isn't ↵Keith Edmiston
compatible with runserver --insecure. Backport of 028db97503 from master
2013-09-05[1.6.x] Fixed #21035 -- Changed docs to treat the acronym SQL phonetically.Eric Boersma
The documentation and comments now all use 'an' to refer to the word SQL and not 'a'. Backport of 4d13cc56de from master
2013-09-04[1.6.x] Fixed #20958 -- Documented that GenericForeignKey fields can't be ↵Tim Graham
accessed in forms. Thanks marky1991. Backport of 533d1ab334 from master
2013-09-02[1.6.x] Fixed #20998 -- Allow custom (de)serialization for GIS widgetsClaude Paroz
Thanks Mathieu Leplatre for the report and the initial patch. Backport of 102f26c92 from master.
2013-08-31[1.6.x] Fixed copy/paste error in measurement docsClaude Paroz
Backport of e87997dd33 frmo master.
2013-08-15[1.6.x] Updated docs following deprecation of django.views.defaults.shortcutAlasdair Nicol
Follows 3f2befc Backport of 354009d67e from master
2013-08-14[1.6.x] Added some doc links for django.contrib.messagesTim Graham
Backport of b6178fa24b from master
2013-08-08[1.6.x] Clarifed meaning of models.User.is_authenticated()Jaime Irurzun
Backport of f96fe3cd1e from master
2013-08-04[1.6.x] Fixed #20860 -- Removed references to defunct chicagocrime.orgTim Graham
Backport of 1593a86494 from master
2013-07-31[1.6.x] Fixed #20779 -- Documented AdminSite.app_index_template; refs #8498.SusanTan
Thanks CollinAnderson for the report. Backport of 7de35a9ef3 from master
2013-07-18[1.6.x] Atom specification URL updatedMatt Deacalion Stevens
Changed to the URL of the official RFC for Atom, since Atomenabled.org is just a holding page. Backport of beefc97171 from master
2013-07-08[1.6.x] Fixed #19695 -- Retitle "Form Media" to "Form Assets".James Bennett
Backport of c0f03175ce from master
2013-07-08[1.6.x] Fixed #12346 -- Added a note on how to validate InlineFormSets.Tim Graham
Thanks johnsmith for the suggestion. Backport of 181f63c22d from master
2013-07-05[1.6.x] Fixed #20224 -- Update docs examples which mention __unicode__Claude Paroz
Thanks Marc Tamlyn and Tim Graham for the review. Backport of 7442eb1a24 from master.
2013-06-29[1.6.x] Fixed #20677 - Typos in generic_inlineformset_factory docs.Tim Graham
Thanks Riley Strong for the report. Backport of 3fd0ee5b46 from master
2013-06-27Fixed #20665 -- Missing backslash in sitemaps documentationBaptiste Mispelon
Thanks to roman for the report.
2013-06-26Fixed #14881 -- Modified password reset to work with a non-integer UserModel.pk.Tim Graham
uid is now base64 encoded in password reset URLs/views. A backwards compatible password_reset_confirm view/URL will allow password reset links generated before this change to continue to work. This view will be removed in Django 1.7. Thanks jonash for the initial patch and claudep for the review.
2013-06-19Fixed #6903 - Preserve admin changelist filters after saving or deleting an ↵Loic Bistuer
object
2013-06-18Fixed #20593 -- Allow blank passwords in check_password() and set_password()Erik Romijn
2013-06-13Added release notes for auth views being reversed by name, not by path.Tim Graham
Refs #20532
2013-06-11Fixed #20500 - Updated flatpages URLconf example to work with APPEND_SLASH.Tim Graham
Thanks josh.23.french@.
2013-06-10Fixed #20578 - Typo in BaseFormSet module nameTim Graham
2013-06-08Update flatpages.txtCamilo Nova
Fixed typo
2013-06-06Merge pull request #1245 from oinopion/list_select_relatedMarc Tamlyn
Fixed #19080 -- Fine-grained control over select_related in admin
2013-06-05Fixed #19080 -- Fine-grained control over select_related in adminTomek Paczkowski
2013-06-05Proofed the 1.6 release notesTim Graham
2013-06-01Fixed #18388 - Added InlineModelAdmin.get_max_num hook.Tim Graham
Thanks d.willy.c.c@ for the suggestion and Melevir and Areski Belaid for work on the patch.
2013-05-31Fixed #20326 - Corrected form wizard get_form() example.Tim Graham
Thanks tris@ for the report.
2013-05-30Fixed #19425 - Added InlineModelAdmin.get_extra hook.Tim Graham
Thanks dave@ for the suggestion and Rohan Jain for the patch.
2013-05-24Fixed #20492 - Removed a broken link in GIS docs.Tim Graham
2013-05-24Update link to jQuery Cookie plugin siteAlasdair Nicol
2013-05-23Fixed #17648 -- Add `for_concrete_model` to `GenericForeignKey`.Gavin Wahl
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.
2013-05-22Fixed a broken link introduced in a542b808baf.Tim Graham
2013-05-21Fixed #17308 -- Enabled the use of short_description on properties in the admin.Wiktor Kolodziej
2013-05-20Fixed warnings in admindocs; refs #20126.Tim Graham