summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2013-06-28Support 'pyformat' style parameters in raw queries, Refs #10070Shai Berger
Add support for Oracle, fix an issue with the repr of RawQuerySet, add tests and documentations. Also added a 'supports_paramstyle_pyformat' database feature, True by default, False for SQLite. Thanks Donald Stufft for review of documentation.
2013-06-27Fix typoKen Bolton
2013-06-27Docs for related_query_nameAndrew Godwin
2013-06-27Fixed LOGGING setting docsClaude Paroz
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-25Doc cleanup for FormMixin.prefix; refs #18872.Tim Graham
2013-06-25Fixed #20654 -- Fixed type of `m2m_changed`'s `pk_set` arg in docsDaniel Izquierdo
2013-06-24Fixed #20644 -- Add ModelFormMixin.fields to the CBV flattened indexBaptiste Mispelon
Thanks to Tim Graham for the report and review.
2013-06-22Added missing `versionadded` for `FormMixin.prefix`.Simon Charette
2013-06-22Fixed #18872 -- Added prefix to FormMixinGilberto Gonçalves
Thanks @ibustama for the initial patch and dragonsnaker for opening the report.
2013-06-21Fixed #20634 - Corrected doc mistake re: staticfiles finders strategy.Tim Graham
Thanks claudep for the catch and bmispelon for the research.
2013-06-21Fixed #19881 -- Documented that get_next/previous_by_FOO uses default manager.James Bennett
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-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵Loic Bistuer
fields
2013-06-17Fixed #20614 -- Typo in documentation.Baptiste Darthenay
2013-06-15Adjusted the docs to reflect when the checksetup command was added.Daniel Lindsley
2013-06-15Fixed #20606 -- Fixed 'for' example in template tag docsClaude Paroz
Thanks batisteo for the report.
2013-06-14Added missing docs for the checksetup command.Daniel Lindsley
2013-06-14Merge pull request #1271 from batisteo/ticket-20565Marc Tamlyn
Fixed #20565 -- Added template examples for GCBV.
2013-06-14Fixed #20565 -- Added template examples for GCBV.Baptiste Darthenay
Thanks to David Reitter for the report, and to Marc Tamlyn and Baptiste Mispelon for the review.
2013-06-14Fixed #15273 -- Extend RedirectView to allow reversal by name.Marc Tamlyn
Thanks to @DrMeers for the report and @ludwigkraatz for the initial patch.
2013-06-13Added release notes for auth views being reversed by name, not by path.Tim Graham
Refs #20532
2013-06-13Fixed #20000 -- Allowed ModelForm meta overrides for label, help_text and ↵Loic Bistuer
error_messages
2013-06-12Warned that `request_finished` isn't sent by some buggy setups.Jaap Roes
Older versions of uWSGI and Sentry's middleware do not adhere to the WSGI spec and cause the `request_finished` signal to never fire. Added notes to the appropriate places in the docs. Fixed #20537.
2013-06-12Fixed #20591: added version in docs for utils.module_loading.import_by_path.Baptiste Darthenay
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-10Fixed #18134 -- BoundField.label_tag now includes the form's label_suffixGabe Jackson
There was an inconsistency between how the label_tag for forms were generated depending on which method was used: as_p, as_ul and as_table contained code to append the label_suffix where as label_tag called on a form field directly did NOT append the label_suffix. The code for appending the label_suffix has been moved in to the label_tag code of the field and the HTML generation code for as_p, as_ul and as_table now calls this code as well. This is a backwards incompatible change because users who have added the label_suffix manually in their templates may now get double label_suffix characters in their forms.
2013-06-10Merge pull request #1255 from camilonova/patch-2Tim Graham
Made URL patterns consistent in docs/ref/contrib/flatpages.txt
2013-06-09Fixed #19875 - Added warnings regarding DEBUG=False and empty ALLOWED_HOSTSTim Graham
2013-06-09Fixed #20567 - Documented BoundField.id_for_label.Tim Graham
Thanks littlepig for the suggestion.
2013-06-08Update flatpages.txtCamilo Nova
Fixed typo
2013-06-06Explained that timezone.now() always returns times in UTC.Jacob Kaplan-Moss
The docs were ambiguous about the time zone for now(), leading people to assume that it would be the current time zone rather that UTC.
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-04Fixed #17601 -- expose underlying db exceptions under py2James Aylett
Use __cause__ to expose the underlying database exceptions even under python 2.
2013-06-03Fixed #20545 - Made class-based view MRO lists consistent.Tim Graham
Thanks wim@ for the suggestion.
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-31Fixed #20511 -- Corrected link about isolation levels in databases docsClaude Paroz
Thanks tinodb for the report.
2013-05-30Tweak caching decorators/utility functions xrefs.Ramiro Morales
2013-05-30Fixed #19425 - Added InlineModelAdmin.get_extra hook.Tim Graham
Thanks dave@ for the suggestion and Rohan Jain for the patch.
2013-05-30Fixed #16856 - Added a way to clear select_related.Tim Graham
Thanks Carl for the suggestion and David Cramer for the patch.
2013-05-29Fixed regroup example.Gavin Wahl
Chicago was missing.
2013-05-28Fixed #20525 -- Added versionadded for clearsessions.Tim Graham
Thanks wiml@.
2013-05-28Fixed #20228 - Documented unique_for_date and exclude behavior.Tim Graham
Thanks Deepak Thukral for the patch.
2013-05-27Fixed #16137 - Removed kwargs requirement for QuerySet.get_or_createTim Graham
Thanks wilfred@, poirier, and charettes for work on the patch.