summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
AgeCommit message (Collapse)Author
2013-09-12Minor typo fix in django.contrib.auth.models.User docsPhaneendra Chiruvella
2013-09-07Improved docs for `contrib.admin.options.ModelAdmin.response_*`Pablo Mouzo
Added links to code references in the docs for `response_add`, `response_change` and `response_delete`.
2013-09-07Add docs for `response_add`, `response_change` and `response_delete`Pablo Mouzo
2013-09-06Fixed #19295 -- Documented that CachedStaticFilesStorage isn't compatible ↵Keith Edmiston
with runserver --insecure.
2013-09-06Fixed some sphinx errors and added some links.Tim Graham
2013-09-06Fixed versionadded and ordering of note in admin/index.txtAdrian Holovaty
2013-09-06Added AdminSite attributes for easily changing admin title.Adrian Holovaty
AdminSite now has overridable site_header, site_title and index_title attributes. Changed each admin view to pass these to the context (in a new AdminSite.each_context() method). The intent here is to make it easier to override these things in the common case, instead of having to override a template, which is a bigger burden.
2013-09-05Fixed #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'.
2013-09-04Fixed #20958 -- Documented that GenericForeignKey fields can't be accessed ↵Tim Graham
in forms. Thanks marky1991.
2013-09-02Fixed #20998 -- Allow custom (de)serialization for GIS widgetsClaude Paroz
Thanks Mathieu Leplatre for the report and the initial patch.
2013-08-31Made django.test.testcases not depend on staticfiles contrib app.Ramiro Morales
Do this by introducing a django.contrib.staticfiles.testing.StaticLiveServerCase unittest TestCase subclass. Fixes #20739.
2013-08-31Fixed copy/paste error in measurement docsClaude Paroz
2013-08-26Fixed #20972 -- Make messages cookie follow session cookie secure/httponlyErik Romijn
2013-08-19Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: docs/ref/django-admin.txt
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-08-15Fixed some ReST errors regarding backticksTim Graham
2013-08-15Updated docs following deprecation of django.views.defaults.shortcutAlasdair Nicol
Follows 3f2befc
2013-08-14Added some doc links for django.contrib.messagesTim Graham
2013-08-14Fixed #11400 -- Passed kwargs from AbstractUser.email_user() to send_mail()SusanTan
Thanks Jug_ for suggestion, john_scott for the initial patch, and Tim Graham for code review.
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt
2013-08-08Clarify meaning of models.User.is_authenticated()Jaime Irurzun
2013-08-06Fixed #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.
2013-08-04Fixed #20860 -- Removed references to defunct chicagocrime.orgTim Graham
2013-08-04Introduced ModelAdmin.get_fields() and refactored get_fieldsets() to use it.Loic Bistuer
Refs #18681. This also starts the deprecation of ModelAdmin.declared_fieldsets
2013-08-03Added ModelAdmin.get_search_fields.Loic Bistuer
2013-07-31Fixed #20793 -- Added Last-Modified header to sitemaps.Julian Bez
2013-07-31Fixed some ReST errors; refs #20819.Tim Graham
2013-07-31Fixed #20779 -- Documented AdminSite.app_index_template; refs #8498.SusanTan
Thanks CollinAnderson for the report.
2013-07-31Fixed #20819 -- Return 404 instead of 500 error when ``staticfiles`` view is ↵Tai Lee
used in production.
2013-07-30Rename pre_ and post_syncdb to *_migrate, with aliases from old namesAndrew Godwin
2013-07-27Fixed a number of minor misspellings.Julien Phalip
2013-07-25More migration docs, and conversion of all easy syncdb referencesAndrew Godwin
2013-07-24Fixed #18168 -- clarified precedence of validationPreston Holmes
any choices set by formfield_for_choice_field are still subject to model validation of the model field's choices attribute
2013-07-19Fixed #14656 -- Added Atom1Feed `published` elementMatt Deacalion Stevens
Some feed aggregators make use of the `published` element as well as the `updated` element (within the Atom standard -- http://bit.ly/2YySb). The standard allows for these two elements to be present in the same entry. `Atom1Feed` had implemented the `updated` element which was incorrectly taking the date from `pubdate`.
2013-07-18Atom specification URL updatedMatt Deacalion Stevens
Changed to the URL of the official RFC for Atom, since Atomenabled.org is just a holding page.
2013-07-13Removed Python 2.6 references in GIS docsClaude Paroz
Refs #20746.
2013-07-08Fixed #19695 -- Retitle "Form Media" to "Form Assets".James Bennett
2013-07-08Fixed #12346 -- Added a note on how to validate InlineFormSets.Tim Graham
Thanks johnsmith for the suggestion.
2013-07-06[gis] Dropped official support for GDAL < 1.6Claude Paroz
2013-07-06Added release dates for gis libs as doc commentsClaude Paroz
2013-07-05Fixed #20224 -- Update docs examples which mention __unicode__Claude Paroz
Thanks Marc Tamlyn and Tim Graham for the review.
2013-06-29Fixed #20677 - Typos in generic_inlineformset_factory docs.Tim Graham
Thanks Riley Strong for the report.
2013-06-28Removed custom profile model functionality as per deprecation TL.Ramiro Morales
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