summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2015-02-24[1.8.x] Reverted "Fixed #24325 -- Documented change in ModelForm.save() ↵Tim Graham
foreign key access." This reverts commit 0af3822dc362b6253bda1c9699466dd0bbbf6066. It's obsoleted by refs #24395. Backport of d298b1ba5043eaa40f3f4bebe3c7634b359ba34b from master
2015-02-23[1.8.x] Fixed #23762 -- clarified CACHE_MIDDLEWARE_ANONYMOUS_ONLY ↵Kenneth Kam
deprecation in docs Backport of e83aba0e2cce16cd1b32d1c172239a4e20867e95 from master
2015-02-23[1.8.x] Broke long lines in code examples.Ian Lee
The website only renders code blocks at 96 chars, and therefore long code lines get wrapped. Manually breaking the lines prevents the wrapping from occurring. Backport of 00fbd8fd527fd6ee0319361bf194cd51a1ac1bfb from master
2015-02-23[1.8.x] Added formats for the Azerbaijani locale.Emin Mastizada
Backport of dda2a3cf4cc29d01de180f66d19441f300732e52 from master
2015-02-23Fixed signature of BaseDatabaseOperations.date_interval_sql()Michael Manfre
Backport of 7fa7dd48c4 from master
2015-02-22[1.8.x] Updated tutorial to use explicit relative imports.Tim Graham
Backport of b2f331dc68ec3c5a34285f7af9614e4178e9a371 from master
2015-02-22[1.8.x] Corrected sqlmigrate output in tutorial 1.Tim Graham
Backport of ff5e47e7a4a638a30424331222e0abdb60842ddd from master
2015-02-22[1.8.x] Fixed #24371 -- Cautioned against trying to switch databases.Tim Graham
Backport of 7901eccf2e591447850be00011a7bb556a3c53f2 from master
2015-02-22[1.8.x] Fixed #24358 -- Corrected code-block directives for console sessions.Sean Wang
Backport of eba6dff581aa8bd6a1c08456e83e68ad09ae4ec3 from master
2015-02-20[1.8.x] Fixed #24351, #24346 -- Changed the signature of allow_migrate().Loic Bistuer
The new signature enables better support for routing RunPython and RunSQL operations, especially w.r.t. reusable and third-party apps. This commit also takes advantage of the deprecation cycle for the old signature to remove the backward incompatibility introduced in #22583; RunPython and RunSQL won't call allow_migrate() when when the router has the old signature. Thanks Aymeric Augustin and Tim Graham for helping shape up the patch. Refs 22583. Conflicts: django/db/utils.py Backport of bed504d70bede3431a213203c13a33905d6dbf77 from master
2015-02-20[1.8.x] Fixed #23932 -- Added how-to on migrating unique fields.Andrei Kulakov
Backport of 1f9e44030e9c5300b97ef7b029f482c53a66f13b from master
2015-02-20[1.8.x] Fixed typo in path to is_safe_url()Tim Graham
Backport of dd0b487872de4e3ff966da51e3610bac996e44f0 from master
2015-02-20[1.8.x] Update converters to take a consistent set of parameters.Marc Tamlyn
As suggested by Anssi. This has the slightly strange side effect of passing the expression to Expression.convert_value has the expression passed back to it, but it allows more complex patterns of expressions. Backport of 32d4db66b9 from master
2015-02-19[1.8.x] Set context.template instead of context.engine while rendering.Aymeric Augustin
This opens more possibilities, like accessing context.template.origin. It also follows the chain of objects instead of following a shortcut. Backport of 1bfcc95 from master
2015-02-17[1.8.x] Added an import to docs/topics/testing/advanced.txt example.Tim Graham
Backport of 32b67b3fd1d252566f60cf38fe1459bb83de2ce2 from master
2015-02-17[1.8.x] Fixed #24335 -- Bumped required psycopg2 version to 2.4.5 (2.5 for ↵Tim Graham
contrib.postgres). Backport of 3adc5f1ee6618a615db07d4a868b366a15c39f82 from master
2015-02-16[1.8.x] Fixed #24350 -- Freshened up database install topic section.Tim Graham
Backport of 35f0cae19de226d9d7771304fc8dd2619e644998 from master
2015-02-16[1.8.x] Removed a note about old versions of MySQLdb.Tim Graham
Backport of f3bc7c5447a1e4bfa428a7ff32ea3336850c5c2d from master
2015-02-16[1.8.x] Fixed #23892 -- Clarified compatibility policy for migrations.Carl Meyer
Backport of e35c70bef44805d47f6a4ae692be878184c4fe1f from master
2015-02-15[1.8.x] Deprecated TEMPLATE_DEBUG setting.Aymeric Augustin
Backport of 15b711b from master.
2015-02-15[1.8.x] Documented how to set up the Jinja2 environment.Aymeric Augustin
This may also help with "Why do context processors not work in Jinja2 templates?" etc. Backport of 9fbd302 from master
2015-02-14[1.8.x] Fixed #24318 -- Set the transaction isolation level with psycopg >= ↵Aymeric Augustin
2.4.2. Backport of 76356d96 from master
2015-02-14[1.8.x] Fixed #24144 -- Documented that GEOSGeometry.envelope can return a pointClaude Paroz
Thanks Manel Clos for the report. Backport of 1379165b35 from master.
2015-02-14[1.8.x] Fixed #24325 -- Documented change in ModelForm.save() foreign key ↵Tim Graham
access. Backport of 0af3822dc362b6253bda1c9699466dd0bbbf6066 from master
2015-02-14[1.8.x] Fixed #24289 -- Reversed usage of Field.many_to_one and one_to_many.Loic Bistuer
Thanks Carl Meyer and Tim Graham for the reviews and to all involved in the discussion. Backport of 18c0aaa9123579375294fcc4a8ee7e3530176b88 from master
2015-02-13[1.8.x] Added each_context() and a template tip to custom admin view docs.Joe Simpson
Backport of 648e516b8d5694c01a225fe27429f0bf7776fb43 from master
2015-02-13[1.8.x] Fixed #24184 -- Prevented automatic soft-apply of migrationsMarkus Holtermann
Previously Django only checked for the table name in CreateModel operations in initial migrations and faked the migration automatically. This led to various errors and unexpected behavior. The newly introduced --fake-initial flag to the migrate command must be passed to get the same behavior again. With this change Django will bail out in with a "duplicate relation / table" error instead. Thanks Carl Meyer and Tim Graham for the documentation update, report and review. Backport of f287bec5833d75750fa6368bc2802741b7924533 from master
2015-02-13[1.8.x] Fixed #24332 -- Fixed contrib.sites create_default_site() when ↵Tim Graham
'default' DATABASES is empty. Backport of e8cf4f8abec87b9da6ed8e5c8cf833af9b27f4dd from master
2015-02-12[1.8.x] Forwardported item in 1.7.5 release notes.Tim Graham
Backport of a93c5fb2bfbadd4628a2a5d6b6aecbd64bd527cb from master
2015-02-12[1.8.x] Clarified timeout=0 in cache docs.Thomas Güttler
Backport of e519ee1d352e0e36fcb8edc9d33ec2845f663d3a from master
2015-02-12[1.8.x] Refs #14030 -- Improved expression support for python valuesJosh Smeaton
Backport of e2d6e14662d780383e18066a3182155fb5b7747b from master
2015-02-11[1.8.x] Updated docs and runtests.py for removal of tests from contrib.Tim Graham
Backport of 7cf3a5786bc76374e743fbc0c1a1c8470a61f6c0 from master
2015-02-10[1.8.x] Fixed #24200 -- Made introspection bypass statement cacheJosh Smeaton
Backport of 1fbe8a2de3 from master
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
Backport of 0ed7d155635da9f79d4dd67e4889087d3673c6da from master
2015-02-07[1.8.x] Revert "Fixed #24075 -- Prevented running post_migrate signals when ↵Markus Holtermann
unapplying initial migrations of contenttypes and auth" This reverts commit 737d24923ac69bb8b89af1bb2f3f4c4c744349e8. Backport of 2832a9b028c267997b2fd3dd0989670d57cdd08f from master
2015-02-07[1.8.x] Fixed docs typoPeter Inglesby
Backport of a8f1c70dce792831688588f271efb3a825dffef8 from master
2015-02-06[1.8.x] Fixed E265 comment styleCollin Anderson
Backport of db77915c9fd35a203edd8206f702ee4082f04d4a from master
2015-02-06[1.8.x] Removed gather_profile_stats.pyTim Graham
This script uses the unmaintained hotshot module (gone on Python 3) and doesn't seem to be Django specific in any way. Backport of 388d986b8a6bb1363dab9f53ea435dff4dfe92cb from master
2015-02-06[1.8.x] Removed inaccurate sentence about PO files in translation docs.minusf
Backport of aea103b6a599a5e4c71a355b2cac237f067be13b from master
2015-02-05[1.8.x] Improved nested ArrayField exampleTom Christie
Backport of 737b184d914d5cc4a6ed8fe2a1d66ec1b7369f46 from master
2015-02-04[1.8.x] Fixed typos of "select_related" in docs and tests.Josh Schneier
Backport of 7d363ed43247a80d2b764723e1bf6e0e6da4e82f from master
2015-02-03[1.8.x] Demoted "Installing a distribution-specific package" in install notes.Tim Graham
Backport of 281fc03474ac18c8281ed4cf289128c87bda2030 from master
2015-02-03[1.8.x] Added a "Writing migrations" how-to.Tim Graham
Backport of 570912a97d5051fa3aeacd9d16c3be9afcf92198 from master
2015-02-03[1.8.x] Fixed typos in docs/ref/forms/validation.txt.minusf
Backport of 66f5aa9fa5d53ddd7fbdb7ddac39c429f0c1b4fd from master
2015-02-03[1.8.x] Fixed #23617 -- Added get_pk_value_on_save()Anssi Kääriäinen
The method is mainly intended for use with UUIDField. For UUIDField we want to call the field's default even when primary key value is explicitly set to None to match the behavior of AutoField. Thanks to Marc Tamlyn and Tim Graham for review. Backport of 8adc59038cdc6ce4f9170e4de2d716d940e136b3 from master
2015-02-03[1.8.x] Fixed broken links in class based views flattend index; refs #24250.Tim Graham
Backport of 9a391fbd6102176d576aa96ed3aeee9e9661b455 from master
2015-02-03[1.8.x] Fixed #24250 -- Corrected mistakes in FormMixin docs.Tim Graham
Backport of 5d193d042a3cc49033f0e8b5125913650d779496 from master
2015-02-03[1.8.x] Fixed #24168 -- Allowed selecting a template engine in a few APIs.Aymeric Augustin
Specifically in rendering shortcuts, template responses, and class-based views that return template responses. Also added a test for render_to_response(status=...) which was missing from fdbfc980. Thanks Tim and Carl for the review. Backport of 2133f31 from master. Conflicts: docs/topics/http/shortcuts.txt tests/generic_views/test_base.py
2015-02-02[1.8.x] Fixed #24255 -- Specifed 'fields' parameter in modelformset_factory ↵Matt Westcott
/ inlineformset_factory examples. Backport of 8d64aae883f7721c33f88276e7c999844085659f from master
2015-02-01[1.8.x] Simplified a versionchanged notes for LiveServerTestCase.Tim Graham