summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2013-09-11Fixed #20887 -- Added a warning to GzipMiddleware in light of BREACH.Tim Graham
Thanks EvilDMP for the report and Russell Keith-Magee for the draft text.
2013-09-11Documentation -- Improved description of cache argumentsKevin Christopher Henry
- Fixed some grammar and formatting mistakes - Added the type and default for CULL_FREQUENCY - Made the note on culling the entire cache more precise. (It's actually slower on the filesystem backend.)
2013-09-10Fixed #20919 -- Extended assertRedirects to be able to avoid fetching ↵Juan Catalano
redirect's response. Thanks mjtamlyn for the suggestion.
2013-09-10Fixed #16534 -- Improved ability to customize DiscoverRunnerTim Graham
Added DiscoverRunner.test_suite and .test_runner attributes. Thanks tomchristie for the suggestion and jcd for the patch.
2013-09-09Fixed #19885 -- cleaned up the django.test namespaceKevin Christopher Henry
* override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion.
2013-09-09Fixed #16895 -- Warned about cost of QuerySet orderinge0ne
Thanks outofculture at gmail.com for the suggestion.
2013-09-07Fixed #21068 -- Added some docs for DiscoverRunnerTim Graham
Thanks jcd.
2013-09-06Fixed a link in topics/testing/overview.txtTim Graham
2013-09-06Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDSTim Graham
Thanks craigbruce.
2013-09-06Consolidated documentation for F() and Q()evildmp
2013-09-05Fixed #21035 -- Changed docs to treat the acronym SQL phonetically.Eric Boersma
The documentation and comments now all use 'an' to refer to the word SQL and not 'a'.
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-09-05Fixed #21000 -- Made cached_db session backend respect SESSION_CACHE_ALIASCHI Cheng
2013-09-05Removed "makemigrations --force" from docs since it doesn't actually exist.Loic Bistuer
2013-09-03Fixed #21002 -- Documented JSON session serialization requires string keysTim Graham
Thanks jeroen.pulles at redslider.net for the report.
2013-09-02Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-08-31Made django.test.testcases not depend on staticfiles contrib app.Ramiro Morales
Do this by introducing a django.contrib.staticfiles.testing.StaticLiveServerCase unittest TestCase subclass. Fixes #20739.
2013-08-31Made the doc about translating string literals in templates more prominent.Loic Bistuer
2013-08-29Fixed #20997 -- Added SessionStore note to docs.Tim Graham
Thanks jsdalton.
2013-08-28Minor spelling correction in ModelForms docsPhaneendra Chiruvella
2013-08-27Fixed #20981 -- Noted the default value of disable_existing_loggers.Krzysztof Jurewicz
2013-08-27Fixed #20976 -- Fixed labels in migration docs.Tim Graham
Thanks chrismedrela for the report.
2013-08-26Fixed typo in docs/topics/conditional-view-processing.txtJan Böcker
2013-08-23Merge remote-tracking branch 'core/master' into schema-alterationAndrew 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-22Typos introduced in 297f5af222.Ramiro Morales
2013-08-22Fixed #20922 -- Allowed customizing the serializer used by contrib.sessionsTim 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-22Documentation -- Clarified use of 'view' in test client introduction.Kevin Christopher Henry
2013-08-22Made description of LANGUAGE_CODE setting more clear.Ramiro Morales
2013-08-21Fixed #18967 -- Don't base64-encode message/rfc822 attachments.Ramiro Morales
Thanks Michael Farrell for the report and his work on the fix.
2013-08-20Fixed #18967 -- Don't base64-encode message/rfc822 attachments.Ramiro Morales
Thanks Michael Farrell for the report and his work on the fix.
2013-08-19Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: docs/ref/django-admin.txt
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-08-15Fixed some ReST errors regarding backticksTim Graham
2013-08-12Fixed #13518 -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS settingMel Collins
This setting does for new directories what FILE_UPLOAD_PERMISSIONS does for new files. Thanks jacob@ for the suggestion.
2013-08-10Fixed #20890 -- Added missing import in class-based view docs.Tim Graham
Thanks André Augusto.
2013-08-10Docs tweaks (thanks timgraham)Andrew Godwin
2013-08-10Fixed #20828 -- Allowed @permission_required to take a list of permissionsersran9
Thanks Giggaflop for the suggestion.
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew 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-06Added section labels in cache docsLeandro Regueiro
2013-08-06Fixed #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-05Fixed #20832 -- Enabled HTML password reset emailJustin Michalicek
Added optional html_email_template_name parameter to password_reset view and PasswordResetForm.
2013-08-05Fixed #20862 -- Updated startproject MIDDLEWARE_CLASSES in docs.Tim Graham
Thanks Keryn Knight.
2013-08-04Fixed #20855 -- Added documentation of current_app and extra_context params ↵Justin Michalicek
to django.contrib.auth views refs #5298 and refs #8342
2013-08-03Added missing request argument to example in URL dispatcher docsAlasdair Nicol
2013-08-01Fixed #20667 - Removed discussion of DEBUG from tutorial.Tim Graham
Forward-port of 3493f18d78 from master.
2013-07-31Fixed #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-30Doc tweaks for html_message parameter to send_mail(); refs #20817Tim Graham
2013-07-30Implement allow_migrate for migration operationsAndrew Godwin
2013-07-30Rename allow_syncdb to allow_migrateAndrew Godwin
2013-07-30Rename pre_ and post_syncdb to *_migrate, with aliases from old namesAndrew Godwin