summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2014-05-13[1.7.x] Removed an unnecessary anchor in the docs.Tim Graham
Backport of a06808d370 from master
2014-05-13[1.7.x] Fixed #22618 -- Improved import_string example.Tim Graham
Thanks ewjoachim for the sugggestion. Backport of c501662f3c from master
2014-05-12[1.7.x] Fixed #22613 -- Added formfield_for_choice_field() to the list of ↵Tim Graham
methods that InlineModelAdmin supports. Backport of 986bd41f8a from master
2014-05-11[1.7.x] Insert space.Markus Amalthea Magnuson
Backport of 8eb51a8cf6 from master
2014-05-07[1.7.x] Fixed #22496: Data migrations get transactions again!Andrew Godwin
2014-05-06[1.7.x] Updated the messages context processor docsClaude Paroz
Refs #20610. Backport of 7951f125e frmo master.
2014-05-05[1.7.x] Fixed #1349 -- Clarified docs on serving files from STATIC/MEDIA_URL.Tim Graham
Backport of fb7c347f7b from master
2014-04-30[1.7.x] Fixed #19195 -- Allow explicit ordering by a relation `_id` field.Simon Charette
Thanks to chrisedgemon for the report and shaib, akaariai and timgraham for the review. Backport of 24ec9538b7 from master
2014-04-30[1.7.x] Fixed #22537 -- Add tests and improved docs for field subclass with ↵Mike Fogel
choices. Backport of 7fd1b35ed7 from master
2014-04-27[1.7.x] Improved formatting and links of migration docs.Tim Graham
Backport of ab8d8e00c9 from master
2014-04-26[1.7.x] Documented django.setup().Aymeric Augustin
Thanks Eric Holscher and Tim Graham for the review. Backport of 58ed387 from master
2014-04-26[1.7.x] Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
Avoided introducing a new regex-based SQL splitter in the migrations framework, before we're bound by backwards compatibility. Adapted this change to the legacy "initial SQL data" feature, even though it's already deprecated, in order to facilitate the transition to migrations. sqlparse becomes mandatory for RunSQL on some databases (all but PostgreSQL). There's no API to provide a single statement and tell Django not to attempt splitting. Since we have a more robust splitting implementation, that seems like a good tradeoff. It's easier to add a new keyword argument later if necessary than to remove one. Many people contributed to both tickets, thank you all, and especially Claude for the review. Refs #22401. Backport of 8b5b199 from master
2014-04-26[1.7.x] Updated doc links to point to Python 3 documentationClaude Paroz
Backport of 680a0f08b from master.
2014-04-25[1.7.x] Fixed a confusing heading in applications docs.Aymeric Augustin
Refs #22422. Backport of 0315f01 from master
2014-04-25[1.7.x] Fixed #22422 -- Moved information about the application loading ↵Víðir Valberg Guðmundsson
process to refs/applications.txt. Backport of deb561bbe2 from master
2014-04-25[1.7.x] Fixed #22493 - Added warnings to raw() and extra() docs about SQL ↵Moayad Mardini
injection Thanks Erik Romijn for the suggestion. Backport of 3776926cfe from master
2014-04-25[1.7.x] Fixed #22516 -- Added versionchanged annotation for STATIC_ROOT ↵Malcolm Box
default value.
2014-04-22[1.7.x] Various documentation typo/spelling fixesMarti Raudsepp
Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand. Backport of 11d453bcad from master
2014-04-21[1.7.x] Fixed queries that may return unexpected results on MySQL due to ↵Erik Romijn
typecasting. This is a security fix. Disclosure will follow shortly. Backport of 75c0d4ea3ae48970f788c482ee0bd6b29a7f1307 from master
2014-04-21[1.7.x] Corrected the section identifier for MySQL unicode reference.Matt Lauber
Backport of b2514c02e1 from master
2014-04-18[1.7.x] Moved RemoteUserBackend documentation to reference guide.Tim Graham
Backport of 26d118c3fe from master
2014-04-18[1.7.x] Fixed #22458 -- Added a note about MySQL utf8_unicode_ci collationMoayad Mardini
Thanks tobami at gmail.com for the report. Backport of 11ac50b18e from master
2014-04-18[1.7.x] Fixed #22473 -- Emphasized that Model.clean() is not called from ↵Tim Graham
Model.save(). Backport of b43bbd6d39 from master
2014-04-17[1.7.x] Confirmed support for PostGIS 2.1 and GDAL 1.10Claude Paroz
Refs #22456. Backport of 3cea917e3e from master.
2014-04-16[1.7.x] Fixed #22220 -- Added more examples to reverse() documention.Ben Davis
Thanks EvilDMP for the suggestions. Backport of 030dd4f72c from master
2014-04-16[1.7.x] Fixed spelling errors in documentation.Tim Graham
Backport of b5ce21accb from master
2014-04-16[1.7.x] Added RemoteUserMiddleware to middleware reference page.Tim Graham
Backport of 465980d070 from master
2014-04-14[1.7.x] Improve migrations/schema docsAndrew Godwin
2014-04-13[1.7.x] Fixed #22398 -- Added detail about callable in KEY_FUNCTION docsarachnegl
Backport of 8da86fd19b from master
2014-04-10[1.7.x] Fixed #21353 -- Noted that description is ignored for TabularInlines.Tim Graham
Thanks nofinator for the report. Backport of d5031ecf88 from master
2014-04-10[1.7.x] Fixed #22194 -- Added --list-tags option to check command.Tim Graham
Thanks Elvard for the patch. Backport of 395d75ea6b from master
2014-04-10[1.7.x] Documentation fixes for the select_for_update change.Shai Berger
Refs #22343; thanks Tim Graham for the fixes. Backport of 59b1d30 from master
2014-04-10[1.7.x] Fixed #22343 -- Disallowed select_for_update in autocommit modeShai Berger
The ticket was originally about two failing tests, which are fixed by putting their queries in transactions. Thanks Tim Graham for the report, Aymeric Augustin for the fix, and Simon Charette, Tim Graham & Loïc Bistuer for review. Backport of b990df1d63 from master
2014-04-09[1.7.x] Fixed small typo in django-admin.txtejstronge
The word 'by' seemed to be missing from the first line of the compilemessages command. Backport of 5ca522b9ed from master
2014-04-08[1.7.x] Fixed #9535 -- Added a reference guide for file upload classes.Anubhav Joshi
Backport of c8c2b8a638 from master
2014-04-08[1.7.x] Fixed #22405 -- Fixed string error in models/queries docs.Anubhav Joshi
Backport of 36de29200e1ea713c278f7672ab1790e1500c423 from master.
2014-04-07[1.7.x] Added missing request parameter to get_current_site().Yin Jifeng
Backport of d6c9bdd825 from master
2014-04-05[1.7.x] Fixed #22216 -- Added Form.non_field_errors to form API doc.Tim Graham
Backport of d2f4553d705951ca8043d687f9493c559f494a0c from master
2014-04-05[1.7.x] Fixed #21649 -- Added optional invalidation of sessions when user ↵Tim Graham
password changes. Thanks Paul McMillan, Aymeric Augustin, and Erik Romijn for reviews. Backport of fd23c06023 from master
2014-04-04[1.7.x] Fixed #22380 -- Missing SECRET_KEY variable in sample settings file ↵Vishal Lal
for testing Backport of 8f621b83e9 from master.
2014-04-03[1.7.x] Fixed #22372 -- Improved description of WizardView.get_context_data().Vishal Lal
Thanks simon29 for the report. Backport of a8e2ec0e82 from master
2014-04-02[1.7.x] Fixed #22347 -- Unified FileSystemStorage documentation.Vishal Lal
Thanks nliberg for the report. Backport of ca93f02c62 from master
2014-03-31[1.7.x] Replaced urllib/urlparse imports with from django.utils.six.moves.Tim Graham
Backport of 981b864fbd from master
2014-03-27[1.7.x] Fixed #21941 -- Documented the kwargs param of django.conf.urls.url().Tim Martin
Thanks cjerdonek for the report. Backport of a779757706 from master
2014-03-26[1.7.x] Fixed #22029 -- Removed obsolete advice on registering ↵Tim Graham
migrate/syncdb signal handlers. All signals should now be registered in AppConfig.ready(). Thanks un33k for the report. Backport of 5233b36693 from master
2014-03-25[1.7.x] Fixed #22322 -- Fixed incorrect explanation of what managed=False does.Tim Graham
refs #14305. Thanks Adrian Klaver for the report. Backport of 9b7ba8af1b from master
2014-03-24[1.7.x] Fixed #22048 - Enhanced docs to cover nonexistent one-to-one ↵Adam Kaliński
relationships. Thanks EvilDMP for the suggestion. Backport of ec08d62a20 from master
2014-03-23[1.7.x] Fixed #22317 -- Fixed documented handler400 default valueClaude Paroz
Backport of 3f7615cddc from master.
2014-03-22[1.7.x] Improved strip_tags and clarified documentationClaude Paroz
The fact that strip_tags cannot guarantee to really strip all non-safe HTML content was not clear enough. Also see: https://www.djangoproject.com/weblog/2014/mar/22/strip-tags-advisory/ Backport of 6ca6c36f82b from master.
2014-03-21[1.7.x] Small doc changes missed in 66076268.Aymeric Augustin
Partial backport of 253e8ac2 from master.