summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2014-06-26[1.7.x] Fixed and enhanced new HTML form docs.Matt Deacalion Stevens
Backport of ec85df2fa5 from master
2014-06-26[1.7.x] Fixed copy/paste typos in StreamingHttpResponse doc.Éric Araujo
Backport of e9c730f6be from master
2014-06-26[1.7.x] Fixed typo in parameter name doc for BaseCommand.check().Gert Van Gool
Backport of a8c5630c98 from master
2014-06-25[1.7.x] Fixed typo in revamped forms intro doc.Ramiro Morales
Backport of 77c0a904cb from master
2014-06-24[1.7.x] Improved documentation for QueryDict.Duncan Parkes
Backport of 7f4e2ef1e9 from master
2014-06-24[1.7.x] Fixed typo in middleware docs.Peter Kowalczyk
Function definition should have an ending colon. Backport of 48241ec9c4 from master
2014-06-24[1.7.x] Fixed #22796 -- Added a more basic explanations of forms.Daniele Procida
Thanks bmispelon, kezabelle, jorgecarleitao, and timgraham for reviews. Backport of cd20b5d186 from master
2014-06-24[1.7.x] Fixed #22880 -- Added FAQ entry about UnicodeDecodeErrorClaude Paroz
Thanks Víðir Valberg Guðmundsson for the report and Tim Graham for the review. Backport of 460ec09d2e from master.
2014-06-23[1.7.x] Fixed #22888 -- Removed some unnecessary text in tutorial 3.Tim Graham
Backport of 1bbffe7867 from master
2014-06-23[1.7.x] Fixed #8033 -- Explained app registry error during translation setupClaude Paroz
Thanks Tim Graham and Aymeric Augustin for the review. Backport of 9618d68b34 from master.
2014-06-20[1.7.x] Added refs #22514 to 1.6.6 release notes.Tim Graham
Backport of 1892ced10a from master
2014-06-20[1.7.x] Fixed #22862 -- Added --noinput option to makemigrations.Huu Nguyen
Thanks artortenburger for the report. Backport of fbb684d95e from master
2014-06-20[1.7.x] Fixed #22836 -- Linked tutorial05 to the right section of tutorial04.Maxime Turcotte
Backport of 608aa8d101 from master
2014-06-19[1.7.x] Fixed #22874: Document that AUTH_USER_MODEL must be in first migrationAndrew Godwin
2014-06-19[1.7.x] Fixed #22863: Improve clarity of makemigrations for non-db paramsAndrew Godwin
2014-06-18[1.7.x] Fixed #22859 -- Improved crossDomain technique in CSRF example.Tim Graham
Thanks flisky for the report. Backport of 0be4d64487 from master
2014-06-18[1.7.x] Fixed #14481 -- Documented implicit "through" class created by ↵Jorge C. Leitão
ManyToManyField. Thanks to jonathanmorgan for the report and initial patch. Backport of de90129070 from master
2014-06-17[1.7.x] Fixed #22853: Swapped models are now ignored for migration operations.Andrew Godwin
2014-06-17[1.7.x] Fixed #22819 -- Renamed output_type -> output_field in query ↵Tim Graham
expression API. Thanks jorgecarleitao for the suggestion. Backport of 95cc0e15b4 from master
2014-06-16[1.7.x] Fixed #22842vagrant
Backport of 7a1f8414c3b71b6af03e5be9f5f8db115551c410 from master.
2014-06-15[1.7.x] Fixed #22470: Full migration support for order_with_respect_toAndrew Godwin
2014-06-15[1.7.x] Fixed #22660: Doc'd you can't have unmigrated apps depend on migratedAndrew Godwin
2014-06-14[1.7.x] Complemented dwithin docs about using geographic geometriesClaude Paroz
Refs #22830. Thanks django@gfairchild.com for the suggestion. Backport of c281831a5c from master.
2014-06-13[1.7.x] Fixed #22477 -- Removed contrib middleware from the global settings ↵mlavin
defaults. Also added a compatibility check for changed middleware defaults.
2014-06-12[1.7.x] Fixed #22349 -- Added a note clarifying `RawQuerySet` has no `__len__`.Moayad Mardini
Thanks cdestigter for the report. Backport of 2d425116e2 from master
2014-06-12[1.7.x] Fixed #22811 -- Allowed setting both the old and new TEST database ↵Tim Graham
settings. An ImproperlyConfigured exception will be raised they mismatch. Backport of 1c58cabad7 and a2cd0e12c9 from master
2014-06-12[1.7.x] Fixed #22818 -- Clarified you need to cd into the Django clone.Tim Graham
Thanks Josh Parris. Backport of bcc3d2b978 from master
2014-06-12[1.7.x] Fixed #22813 -- Updated Pillow URL in documentationClaude Paroz
Backport of dfa3505ff1 from master.
2014-06-11[1.7.x] Fixed typo in docs/ref/forms/validation.txt.Maxime Lorant
Backport of c307383ec9 from master
2014-06-11[1.7.x] Added link to data migrations in initial data deprecation noteGreg Chapple
Backport of 4123f55c33 from master
2014-06-11[1.7.x] Fixed #22680 -- I/O operation on closed file.Florian Apolloner
This patch is two-fold; first it ensure that Django does close everything in request.FILES at the end of the request and secondly the storage system should no longer close any files during save, it's up to the caller to handle that -- or let Django close the files at the end of the request. Backport of e2efc8965edf684aaf48621680ef54b84e116576 from master.
2014-06-10[1.7.x] Fixed #22801 -- Added 'www.' to diveintopython.net linksMaxime Turcotte
Backport of f97c53c098 from master
2014-06-10[1.7.x] Fixed #22770 -- Removed create_superuser from post_migrate signals.Tim Graham
Moved logic to syncdb command for backwards compatibility. Backport of 93d05536fd from master
2014-06-10[1.7.x] Corrected some indentation in docs/topics/auth/default.txt.Tim Graham
Backport of 34f4fd7024 from master
2014-06-09[1.7.x] Doc edits for refs #22487.Tim Graham
Backport of c17cd151d8 from master
2014-06-09[1.7.x] Added missing deprecation note for fastcgi in 1.7 release notes; ↵Tim Graham
refs #20766. Backport of 67ce2e74e1 from master
2014-06-08[1.7.x] Fixed #22487: Optional rollback emulation for migrated appsAndrew Godwin
Conflicts: django/db/backends/creation.py django/test/runner.py docs/ref/settings.txt docs/topics/testing/advanced.txt
2014-06-07[1.7.x] Fixed #22436: More careful checking on method ref'ce serializationAndrew Godwin
2014-06-07[1.7.x] Removed duplicate "Deprecated in Django A.B" text in docs.Tim Graham
sphinx 1.2+ adds this text itself. Backport of 7f4347b176 from master
2014-06-06[1.7.x] Added formatting and line wrapping to checks reference doc.Tim Graham
Backport of 5472bf4df0 from master
2014-06-05[1.7.x] Fix missing highlighting in some code examplesÉric Araujo
Backport of 84cafc2b35 from master
2014-06-04[1.7.x] Fixed #22710 -- Amended aggregation note for empty QuerySetsGuillaume Pannatier
Thanks smeaton for report and Joël Rochat for spell check Backport of 7f27cca5c5 from master
2014-06-04[1.7.x] Fixed #22747 -- Add backwards compatibility tip for new behavior of ↵Tim Graham
formset.save(commit=False). Thanks django at patjack.co.uk. Backport of 2f7a7842ba from master
2014-06-03[1.7.x] Updated current state of MySQL Connector/Python.INADA Naoki
Backport of 7be646425f from master
2014-06-02[1.7.x] Fixed #22753 -- Documented ability to use a note with the {% comment ↵Bryce Nesbitt
%} tag. Backport of e020894470 from master
2014-06-02[1.7.x] Fixed #22748 -- Corrected post_migrate usage example.Tim Graham
Thanks Rudolph for the report. Backport of a00efa30d6 from master
2014-06-02[1.7.x] Fixed #22690 -- Added a check for proxy models containing fields.Craig de Stigter
Removed the FieldError raised by ModelBase.__new__ in this case. Backport of ce993efda8 from master
2014-06-01[1.7.x] Fixed #21938 -- Moved documentation for error views to reference guide.Jonathan Lindén
Backport of 5b98ba08e2cc8760525fc1e0a2c917c063b0d5e2 from master
2014-05-30[1.7.x] Fixed #22299 -- Cleanup wizard temp files when possible.Simon Charette
Thanks to @erikr for the review. Backport of fa8b4735287c92b03d23823de8a4e1168d1951d9 from master.
2014-05-30[1.7.x] Fixed #22710 -- Documented aggregation behavior for empty QuerySets.Guillaume Pannatier
Thanks matklad for the report. Backport of 7c6e96ec1f from master