| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-28 | Minor spelling correction in ModelForms docs | Phaneendra Chiruvella | |
| 2013-08-27 | Fixed #20981 -- Noted the default value of disable_existing_loggers. | Krzysztof Jurewicz | |
| 2013-08-27 | Fixed #20976 -- Fixed labels in migration docs. | Tim Graham | |
| Thanks chrismedrela for the report. | |||
| 2013-08-26 | Fixed typo in docs/topics/conditional-view-processing.txt | Jan Böcker | |
| 2013-08-23 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/oracle/base.py django/db/backends/postgresql_psycopg2/base.py django/db/models/signals.py tests/queries/tests.py | |||
| 2013-08-22 | Typos introduced in 297f5af222. | Ramiro Morales | |
| 2013-08-22 | Fixed #20922 -- Allowed customizing the serializer used by contrib.sessions | Tim Graham | |
| Added settings.SESSION_SERIALIZER which is the import path of a serializer to use for sessions. Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews. | |||
| 2013-08-22 | Documentation -- Clarified use of 'view' in test client introduction. | Kevin Christopher Henry | |
| 2013-08-22 | Made description of LANGUAGE_CODE setting more clear. | Ramiro Morales | |
| 2013-08-21 | Fixed #18967 -- Don't base64-encode message/rfc822 attachments. | Ramiro Morales | |
| Thanks Michael Farrell for the report and his work on the fix. | |||
| 2013-08-20 | Fixed #18967 -- Don't base64-encode message/rfc822 attachments. | Ramiro Morales | |
| Thanks Michael Farrell for the report and his work on the fix. | |||
| 2013-08-19 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: docs/ref/django-admin.txt | |||
| 2013-08-19 | Removed versionadded/changed annotations for 1.5 | Tim Graham | |
| 2013-08-15 | Fixed some ReST errors regarding backticks | Tim Graham | |
| 2013-08-12 | Fixed #13518 -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS setting | Mel Collins | |
| This setting does for new directories what FILE_UPLOAD_PERMISSIONS does for new files. Thanks jacob@ for the suggestion. | |||
| 2013-08-10 | Fixed #20890 -- Added missing import in class-based view docs. | Tim Graham | |
| Thanks André Augusto. | |||
| 2013-08-10 | Docs tweaks (thanks timgraham) | Andrew Godwin | |
| 2013-08-10 | Fixed #20828 -- Allowed @permission_required to take a list of permissions | ersran9 | |
| Thanks Giggaflop for the suggestion. | |||
| 2013-08-09 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew 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-06 | Added section labels in cache docs | Leandro Regueiro | |
| 2013-08-06 | Fixed #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-05 | Fixed #20832 -- Enabled HTML password reset email | Justin Michalicek | |
| Added optional html_email_template_name parameter to password_reset view and PasswordResetForm. | |||
| 2013-08-05 | Fixed #20862 -- Updated startproject MIDDLEWARE_CLASSES in docs. | Tim Graham | |
| Thanks Keryn Knight. | |||
| 2013-08-04 | Fixed #20855 -- Added documentation of current_app and extra_context params ↵ | Justin Michalicek | |
| to django.contrib.auth views refs #5298 and refs #8342 | |||
| 2013-08-03 | Added missing request argument to example in URL dispatcher docs | Alasdair Nicol | |
| 2013-08-01 | Fixed #20667 - Removed discussion of DEBUG from tutorial. | Tim Graham | |
| Forward-port of 3493f18d78 from master. | |||
| 2013-07-31 | Fixed #12103 -- Added AuthenticationForm.confirm_login_allowed to allow ↵ | Tim Graham | |
| customizing the logic policy. Thanks ejucovy and lasko for work on the patch. | |||
| 2013-07-30 | Doc tweaks for html_message parameter to send_mail(); refs #20817 | Tim Graham | |
| 2013-07-30 | Implement allow_migrate for migration operations | Andrew Godwin | |
| 2013-07-30 | Rename allow_syncdb to allow_migrate | Andrew Godwin | |
| 2013-07-30 | Rename pre_ and post_syncdb to *_migrate, with aliases from old names | Andrew Godwin | |
| 2013-07-29 | Fixed #20817 -- Added html_message parameter to django.core.mail.send_mail() | Justin Michalicek | |
| 2013-07-29 | Misc doc cleanups. | minusf | |
| 2013-07-29 | Fixed #20774 -- Mention the new django-localflavor app as a replacement for ↵ | Jannis Leidel | |
| the contrib app. | |||
| 2013-07-28 | Fixed ReST typo in topics/class-based-views/mixins.txt | Tim Graham | |
| 2013-07-27 | Fixed a number of minor misspellings. | Julien Phalip | |
| 2013-07-26 | A bit more documentation | Andrew Godwin | |
| 2013-07-26 | Fixed #20625 -- Chainable Manager/QuerySet methods. | Loic Bistuer | |
| Additionally this patch solves the orthogonal problem that specialized `QuerySet` like `ValuesQuerySet` didn't inherit from the current `QuerySet` type. This wasn't an issue until now because we didn't officially support custom `QuerySet` but it became necessary with the introduction of this new feature. Thanks aaugustin, akaariai, carljm, charettes, mjtamlyn, shaib and timgraham for the reviews. | |||
| 2013-07-25 | More migration docs, and conversion of all easy syncdb references | Andrew Godwin | |
| 2013-07-25 | Small start to migrations documentation | Andrew Godwin | |
| 2013-07-24 | Fixed #20766 -- Deprecated FastCGI support. | Tim Graham | |
| 2013-07-23 | Fixed #10284 -- ModelFormSet.save(commit=False) no longer deletes objects | Tim Graham | |
| Thanks laureline.guerin@ and Wedg. | |||
| 2013-07-19 | Fixed #18551 -- Enabled skipIfDBFeature/skipUnlessDBFeature to decorate a class | Claude Paroz | |
| Thanks Tim Graham for the review and improved patch. | |||
| 2013-07-19 | Merge pull request #1374 from seocam/fix_i18n_docs | Tim Graham | |
| LocaleMiddleware isn't default anymore (corrected docs) | |||
| 2013-07-19 | Merge pull request #1375 from Matt-Stevens/master | Tim Graham | |
| Fixed Croatia's country code in `localflavor` docs | |||
| 2013-07-19 | Merge pull request #1378 from loic/docs | Tim Graham | |
| Fixed #20772 -- Fixed minor typo in form media docs. | |||
| 2013-07-19 | Fixed #20772 -- Fixed minor typo in form media docs. | Loic Bistuer | |
| 2013-07-19 | Fix Croatia's country code in `localflavor` docs | Matt Deacalion Stevens | |
| Croatia's country code is 'HR', not 'CR'. | |||
| 2013-07-18 | LocaleMiddleware isn't default anymore | Sergio Oliveira | |
| Changed in @23229061fcb836ecca2195cc75f91e331279a5d1 | |||
| 2013-07-18 | Fixed #20762 -- Clarified that add_fieldsets is not a standard ModelAdmin ↵ | Tim Graham | |
| attribute. | |||
