Cody Scott
f787869d8c
[1.6.x] Minor edits to docs/topics/db/queries.txt.
...
Backport of 8bfc7cc64c
from master
2013-10-11 15:35:48 -04:00
Cody Scott
2069dfeaef
[1.6.x] Small improvements to docs/topics/db/models.txt
...
Backport of 695bc0d191
from master
2013-10-10 20:57:16 -04:00
Claude Paroz
7a58fde7a6
[1.6.x] Fixed grammar/typos in auth customization docs
...
Backport of 1b9c72fc4f
from master.
2013-10-09 16:22:36 +02:00
Dan Loewenherz
af46932b57
[1.6.x] Fix grammatical errors in email documentation
...
Backport of 43f213e475
from master
2013-10-08 20:30:43 -04:00
Russell Keith-Magee
1ab84b6c65
[1.6.x] Fixed #21164 -- Added documentation for issue with test users.
...
The package renaming restores the older package names (which were also the
documented package names). This doesn't affect test discovery because the
module in question doesn't contain any tests.
Thanks to Carl for the design discussion.
Backport of ddb5385
from master.
2013-10-08 10:37:48 +08:00
Ramiro Morales
563b5c2000
[1.6.x] Re-added link to SQLite notes from DB section of install doc.
...
67f5dffbec
from master.
2013-10-07 07:42:28 -03:00
Tim Graham
06b149e220
[1.6.x] Fixed #10913 -- Documented how related_name affects QuerySet filtering
...
Thanks neithere for the suggestion.
Backport of 75bb6ba966
from master
2013-10-02 12:13:44 -04:00
Tim Graham
9b89fcc0b0
[1.6.x] Clarified session replay attack differences with cookie backend.
...
Backport of 00a0d3de02
from master
2013-10-02 10:15:36 -04:00
Aymeric Augustin
0d74bdaf0c
Fixed #21134 -- Prevented queries in broken transactions.
...
Backport of 728548e4
from master.
Squashed commit of the following:
commit 63ddb271a44df389b2c302e421fc17b7f0529755
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 29 22:51:00 2013 +0200
Clarified interactions between atomic and exceptions.
commit 2899ec299228217c876ba3aa4024e523a41c8504
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 22 22:45:32 2013 +0200
Fixed TransactionManagementError in tests.
Previous commit introduced an additional check to prevent running
queries in transactions that will be rolled back, which triggered a few
failures in the tests. In practice using transaction.atomic instead of
the low-level savepoint APIs was enough to fix the problems.
commit 4a639b059ea80aeb78f7f160a7d4b9f609b9c238
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Sep 24 22:24:17 2013 +0200
Allowed nesting constraint_checks_disabled inside atomic.
Since MySQL handles transactions loosely, this isn't a problem.
commit 2a4ab1cb6e83391ff7e25d08479e230ca564bfef
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sat Sep 21 18:43:12 2013 +0200
Prevented running queries in transactions that will be rolled back.
This avoids a counter-intuitive behavior in an edge case on databases
with non-atomic transaction semantics.
It prevents using savepoint_rollback() inside an atomic block without
calling set_rollback(False) first, which is backwards-incompatible in
tests.
Refs #21134 .
commit 8e3db393853c7ac64a445b66e57f3620a3fde7b0
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 22 22:14:17 2013 +0200
Replaced manual savepoints by atomic blocks.
This ensures the rollback flag is handled consistently in internal APIs.
2013-09-30 10:14:22 +02:00
Tim Graham
d1047c8b4c
[1.6.x] Fixed #21116 -- Made usage of manage.py in docs more consistent.
...
Thanks daniel.quattro at gmail.com for the report.
d1c9802811
from master.
2013-09-25 21:11:17 -03:00
Tim Graham
d30d66b907
[1.6.x] Fixed #21137 -- Corrected ULRconf include example.
...
Thanks marfire for the report.
Backport of 77f6b468e5
from master
2013-09-24 09:41:39 -04:00
Tim Graham
34f4053409
[1.6.x] Removed implication that six is part of Python stdlib.
...
Backport of 45969bdeb5
from master
2013-09-23 18:30:18 -04:00
Daley Chetwynd
5e549e7efe
[1.6.x] Fixed #20830 -- Clarified that Django uses a customized version of six.
...
Thanks glarrain for the suggestion.
Backport of a53caf28bf
from master
2013-09-23 11:07:36 -04:00
Ramiro Morales
b2876c0c91
[1.6.x] A few doc additions for changes from d228c1192e
.
...
ce0c5c38ea
from master.
2013-09-22 13:54:54 -03:00
Ramiro Morales
aef809f90c
[1.6.x] Reference Meta.index_together in DB performance guide.
...
9dc45efeba
from master.
2013-09-22 13:54:02 -03:00
Michael DiBernardo
bb8a087949
[1.6.x] Fixed #21137 -- Documented best practice for URLconfs with repeated pattern prefixes.
...
Backport of 222460a994
from master
2013-09-21 18:18:16 -04:00
Aymeric Augustin
0ad178c43d
[1.6.x] Clarified why one must not catch database errors inside atomic.
...
Backport of 4db2752
from master.
2013-09-20 21:57:39 +02:00
Markus Amalthea Magnuson
9888bb28ee
[1.6.x] Added missing "in" in sentence.
...
Backport of 2c5c422d34
from master
2013-09-19 13:29:48 -04:00
Ramiro Morales
c0625a74ce
[1.6.x] Reworded a paragraph in the logging docs.
...
9d12f68a53
from master.
2013-09-16 17:52:13 -03:00
Tim Graham
b05639dcac
[1.6.x] Fixed #20887 -- Added a warning to GzipMiddleware in light of BREACH.
...
Thanks EvilDMP for the report and Russell Keith-Magee
for the draft text.
Backport of da843e7dba
from master
2013-09-11 08:18:48 -04:00
Kevin Christopher Henry
4f0ea1aca4
[1.6.x] Documentation -- Improved description of cache arguments
...
- 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.)
Backport of 5eca021d48
from master
2013-09-11 07:43:24 -04:00
Aymeric Augustin
f9f792eb04
[1.6.x] Took advantage of django.utils.six.moves.urllib.*.
...
Backport of 6a6428a36
from master.
2013-09-10 21:29:31 +02:00
e0ne
276e053803
[1.6.x] Fixed #16895 -- Warned about cost of QuerySet ordering
...
Thanks outofculture at gmail.com for the suggestion.
Backport of cbf08c6b0c
from master
2013-09-09 09:49:15 -04:00
Tim Graham
c03848b540
[1.6.x] Fixed #21068 -- Added some docs for DiscoverRunner
...
Thanks jcd.
Backport of e4b012feeb
from master
2013-09-07 16:11:03 -04:00
Tim Graham
2ab2d0fb25
[1.6.x] Fixed a link in topics/testing/overview.txt
...
Backport of 0c295a7718
from master
2013-09-06 17:41:43 -04:00
Tim Graham
da44a8bdc2
[1.6.x] Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDS
...
Thanks craigbruce.
Backport of db3de52807
from master
2013-09-06 16:06:46 -04:00
Eric Boersma
180b9955cc
[1.6.x] Fixed #21035 -- Changed docs to treat the acronym SQL phonetically.
...
The documentation and comments now all use 'an' to
refer to the word SQL and not 'a'.
Backport of 4d13cc56de
from master
2013-09-05 20:16:14 -04:00
Aymeric Augustin
115318051c
[1.6.x] Replaced "not PY3" by "PY2", new in six 1.4.0.
...
Conflicts:
django/db/backends/oracle/base.py
django/db/backends/sqlite3/base.py
django/db/models/base.py
Backport of 365c3e8b
from master.
2013-09-03 07:34:45 -05:00
Tim Graham
c0fb6bdde3
[1.6.x] Fixed #21002 -- Documented JSON session serialization requires string keys
...
Thanks jeroen.pulles at redslider.net for the report.
Backport of 3baf1d1042
from master
2013-09-03 07:49:59 -04:00
Loic Bistuer
64383e8349
[1.6.x] Made the doc about translating string literals in templates more prominent.
...
Backport of 9885f07757
from master
2013-08-31 08:00:33 -04:00
Phaneendra Chiruvella
68eca2b36f
[1.6.x] Minor spelling correction in ModelForms docs
...
Backport of 2fbf949760
from master
2013-08-28 07:12:38 -04:00
Krzysztof Jurewicz
544a190ebf
[1.6.x] Fixed #20981 -- Noted the default value of disable_existing_loggers.
...
Backport of 095643e691
from master
2013-08-27 10:27:44 -04:00
Jan Böcker
c4e2e4f630
[1.6.x] Fixed typo in docs/topics/conditional-view-processing.txt
...
Backport of 5fd2c979cb
from master
2013-08-27 09:22:31 -04:00
Ramiro Morales
2a166623a6
[1.6.x] Typos introduced in 57c82f909b
.
2013-08-22 22:33:59 -03:00
Tim Graham
5f061986b9
[1.6.x] Fixed #20922 -- Allowed customizing the serializer used by contrib.sessions
...
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.
Backport of b0ce6fe656
from master
2013-08-22 17:55:01 -04:00
Kevin Christopher Henry
bf9382fb02
[1.6.x] Documentation -- Clarified use of 'view' in test client introduction.
...
Backport of 2e926b041c
from master
2013-08-22 09:39:14 -04:00
Ramiro Morales
26a4c83598
[1.6.x] Made description of LANGUAGE_CODE setting more clear.
...
297f5af222
from master.
2013-08-22 08:29:59 -03:00
Tim Graham
43f12f368b
[1.6.x] Fixed #20890 -- Added missing import in class-based view docs.
...
Thanks André Augusto.
Backport of ab680725bf
from master
2013-08-10 18:08:27 -04:00
Leandro Regueiro
4c90081b5b
[1.6.x] Added section labels in cache docs
...
Backport of 709cd2c4b7
from master
2013-08-06 11:56:31 -04:00
Tim Graham
06f484dcf9
[1.6.x] Fixed #20862 -- Updated startproject MIDDLEWARE_CLASSES in docs.
...
Thanks Keryn Knight.
Backport of 26c4bd38ac
from master
2013-08-05 08:16:56 -04:00
Justin Michalicek
77293f9354
[1.6.x] Fixed #20855 -- Added documentation of current_app and extra_context params to django.contrib.auth views
...
refs #5298 and refs #8342
Backport of 61ecb5f48a
from master
2013-08-04 08:05:36 -04:00
Alasdair Nicol
ccef8b2aa2
[1.6.x] Added missing request argument to example in URL dispatcher docs
...
Backport of a0c58113b9
from master
2013-08-03 19:36:15 -04:00
minusf
518faa19c1
[1.6.x] Misc doc cleanups.
...
Backport of 70c080fcdb
from master
2013-07-29 07:06:29 -04:00
Jannis Leidel
c456a27725
[1.6.x] Fixed #20774 -- Mention the new django-localflavor app as a replacement for the contrib app. Backport from master.
2013-07-29 12:05:47 +02:00
Tim Graham
192154fb17
[1.6.x] Fixed ReST typo in topics/class-based-views/mixins.txt
...
Backport of 0b35a2cce3
from master
2013-07-28 14:10:11 -04:00
Sergio Oliveira
496f319970
[1.6.x] LocaleMiddleware isn't default anymore (corrected docs)
...
Changed in @23229061fcb836ecca2195cc75f91e331279a5d1
Backport of cf6c754629
from master
2013-07-19 06:36:26 -04:00
Matt Deacalion Stevens
e7435fbe2f
[1.6.x] Fixed Croatia's country code in `localflavor` docs
...
Backport of 97e5398629
from master
2013-07-19 05:30:55 -04:00
Loic Bistuer
b7556a4980
[1.6.x] Fixed #20772 -- Fixed minor typo in form media docs.
...
Backport of aa41eb9b8b
from master
2013-07-19 05:19:46 -04:00
Tim Graham
579ca9ee8d
[1.6.x] Fixed #20762 -- Clarified that add_fieldsets is not a standard ModelAdmin attribute.
...
Backport of dce8945ea6
from master
2013-07-18 12:41:51 -04:00
Loic Bistuer
ed473d61e5
[1.6.x] Reworked docs for ModelForm validation.
...
Backport of fba6c2ede7
from master
2013-07-16 19:21:55 -04:00
David Binetti
f8fd38b560
[1.6.x] Fixed grammatical error in auth docs
...
Backport of 51b50c47c7
from master
2013-07-14 12:35:26 -04:00
Tim Graham
fe0a563f81
[1.6.x] Fixed #20730 -- Fixed "Programmatically creating permissions" error.
...
Thanks glarrain for the report.
Backport of 684a606a4e
from master
2013-07-11 11:07:51 -04:00
SusanTan
c1b24b09f4
[1.6.x] Fixed #18261 -- Clarified 'project root directory'
...
Backport of ef3fddf26e
from master
2013-07-09 07:16:31 -04:00
James Bennett
b2afe39663
[1.6.x] Fixed #19695 -- Retitle "Form Media" to "Form Assets".
...
Backport of c0f03175ce
from master
2013-07-08 14:09:02 -04:00
Tim Graham
730069197f
[1.6.x] Fixed #16965 -- Clarified Formset can_delete docs.
...
Thanks gregcorey@ for the suggestion.
Backport of 660c30ed95
from master
2013-07-08 12:21:25 -04:00
Tim Graham
cf8d0933cb
[1.6.x] Fixed #12346 -- Added a note on how to validate InlineFormSets.
...
Thanks johnsmith for the suggestion.
Backport of 181f63c22d
from master
2013-07-08 08:31:46 -04:00
Claude Paroz
a9dd6221af
[1.6.x] Fixed #20224 -- Update docs examples which mention __unicode__
...
Thanks Marc Tamlyn and Tim Graham for the review.
Backport of 7442eb1a24
from master.
2013-07-05 19:30:08 +02:00
Tim Graham
541a30c376
[1.6.x] Fixed #20134 -- Correct list of fields that UserManager requires.
...
Thanks semenov and pegler.
Backport of da5069f68f
from master.
2013-07-04 10:20:02 -04:00
Tim Graham
25b9939fed
[1.6.x] Fixed #20690 -- Mentioned LOCALE_PATHS earlier in translation docs.
...
Thanks rene@ for the suggestion.
Backport of 231e31c690
from master.
2013-07-04 05:45:16 -04:00
SusanTan
75041d5ea3
[1.6.x] Fixed #20609 -- Documented how to use request.user with RequestFactory
...
Thanks michel@ for the suggestion.
Backport of 067e0424ce
from master.
2013-07-03 11:11:04 -04:00
Tomáš Ehrlich
2f9e5483f6
[1.6.x] Fixed #20687 -- Added documentation for django.core.signing API.
...
Thanks Baptiste Mispelon for the suggestion.
Backport of c5bc98d7e1
from master.
2013-07-03 10:38:53 -04:00
Tim Graham
5ecdf0eb9c
[1.6.x] A couple more semicolon -> colon fixes; refs #18134 .
...
Backport of 3632d289de
from master.
2013-07-02 14:16:22 -04:00
Baptiste Mispelon
e03a88ba21
[1.6.x] Fixed #20659 -- Fixed PublisherDetail in CBV topic documentation.
...
Backport of 88de53d4a8
from master.
2013-07-01 14:10:03 +02:00
Aymeric Augustin
0de21a6a7a
Stopped branding Python 3 support as experimental.
2013-07-01 11:52:00 +02:00
Tim Graham
3493f18d78
[1.6.x] Fixed #20667 - Removed discussion of DEBUG from tutorial.
...
Backport of 0d642aac86 from master.
2013-06-30 14:56:10 -04:00
Shai Berger
d097417025
Support 'pyformat' style parameters in raw queries, Refs #10070
...
Add support for Oracle, fix an issue with the repr of RawQuerySet,
add tests and documentations. Also added a 'supports_paramstyle_pyformat'
database feature, True by default, False for SQLite.
Thanks Donald Stufft for review of documentation.
2013-06-28 06:59:10 +03:00
Aymeric Augustin
c1284c3d3c
Fixed #20571 -- Added an API to control connection.needs_rollback.
...
This is useful:
- to force a rollback on the exit of an atomic block without having to
raise and catch an exception;
- to prevent a rollback after handling an exception manually.
2013-06-27 22:19:54 +02:00
Andrew Godwin
e26b589b8c
Fixed #20590 : Documented new test case ordering
2013-06-27 14:02:00 +01:00
Tim Graham
1184d07789
Fixed #14881 -- Modified password reset to work with a non-integer UserModel.pk.
...
uid is now base64 encoded in password reset URLs/views. A backwards compatible
password_reset_confirm view/URL will allow password reset links generated before
this change to continue to work. This view will be removed in Django 1.7.
Thanks jonash for the initial patch and claudep for the review.
2013-06-26 13:11:47 -04:00
Loic Bistuer
c6862d57c1
Fixed #20658 -- Fixed bad reST formatting and missing parentheses in the docs for CBV mixins
...
Thanks to Keryn Knight for the report.
2013-06-26 14:07:52 +02:00
Tim Graham
e161e4ff11
Clarified get_list_or_404 docs, refs #14150 .
2013-06-24 07:00:53 -04:00
Baptiste Mispelon
cd000dacc7
Fixed #20643 -- Fixed implementation of JSONResponseMixin in CBV docs
...
Thanks to Michal Sládek for the report and initial patch,
and to loic84 for the review.
2013-06-24 11:55:43 +02:00
Simon Meers
6466a0837b
Corrected minor typos in FileUploadHandler.receive_data_chunk docs.
2013-06-24 13:59:03 +10:00
Baptiste Mispelon
bd9fbd1497
Fixed errors and inconsistencies in CBV topic documentation.
...
The code examples should now work correctly.
The `get_context_data` method in the examples was changed when
necessary to adopt a singular style (get context with super(...),
add the extra keys to the dict then return it).
Thanks to Remco Wendt for the initial report and to Tim Graham
for the review.
2013-06-23 00:18:23 +02:00
Baptiste Mispelon
b53ed5ac55
Fixed #20612 -- Fixed incorrect wording in CBV documentation
...
Thanks to ndokos for the report.
2013-06-21 17:50:43 +02:00
Baptiste Mispelon
b0b506b933
Fixed broken reference in documentation.
2013-06-19 10:37:24 +02:00
Erik Romijn
2c4fe761a0
Fixed #20593 -- Allow blank passwords in check_password() and set_password()
2013-06-18 13:32:54 -04:00
Baptiste Mispelon
1b7634a0d0
Fixed #20464 -- Added a `total_error_count` method on formsets.
...
Thanks to frog32 for the report and to Tim Graham for the review.
2013-06-16 15:49:30 -04:00
Tim Graham
a1122e14a6
Fixed #20604 - Fixed file example in docs.
...
Thanks Chris Lasher for the report.
2013-06-14 21:28:17 -04:00
Loic Bistuer
9e50833e22
Fixed #20000 -- Allowed ModelForm meta overrides for label, help_text and error_messages
2013-06-13 15:06:25 -04:00
Danilo Bargen
cd7d7452bc
Fixed order of base classes in CBV mixin docs
2013-06-13 14:59:13 +02:00
Aymeric Augustin
55cbd65985
Fixed #20579 -- Improved TransactionTestCase.available_apps.
...
Also moved its documentation to the 'advanced' section. It doesn't
belong to the 'overview'. Same for TransactionTestCase.reset_sequences.
When available_apps is set, after a TransactionTestCase, the database
is now totally empty. post_syncdb is fired at the beginning of the next
TransactionTestCase.
Refs #20483 .
2013-06-12 20:01:41 +02:00
Wilfred Hughes
b79aa796d8
FormSet.forms is an iterable, so just iterate over it
2013-06-11 16:05:19 +01:00
Tim Graham
9ff5f100dd
Fixed #20578 - Typo in BaseFormSet module name
2013-06-10 14:36:40 -04:00
Gabe Jackson
584bd14dcf
Fixed #18134 -- BoundField.label_tag now includes the form's label_suffix
...
There was an inconsistency between how the label_tag for forms were
generated depending on which method was used: as_p, as_ul and as_table
contained code to append the label_suffix where as label_tag called on a
form field directly did NOT append the label_suffix. The code for
appending the label_suffix has been moved in to the label_tag code of
the field and the HTML generation code for as_p, as_ul and as_table now
calls this code as well.
This is a backwards incompatible change because users who have added the
label_suffix manually in their templates may now get double label_suffix
characters in their forms.
2013-06-10 14:23:15 -04:00
Aymeric Augustin
4daf570b98
Added TransactionTestCase.available_apps.
...
This can be used to make Django's test suite significantly faster by
reducing the number of models for which content types and permissions
must be created and tables must be flushed in each non-transactional
test.
It's documented for Django contributors and committers but it's branded
as a private API to preserve our freedom to change it in the future.
Most of the credit goes to Anssi. He got the idea and did the research.
Fixed #20483 .
2013-06-10 11:24:10 +02:00
Tim Graham
4e94c84e50
Fixed #19875 - Added warnings regarding DEBUG=False and empty ALLOWED_HOSTS
2013-06-09 15:05:15 -04:00
Kenny Rachuonyo
4bd6e5e895
Update media.txt
...
Fixed typo: froms -> forms
2013-06-09 08:23:48 +03:00
Jacob Kaplan-Moss
357d62d9f2
Explained that timezone.now() always returns times in UTC.
...
The docs were ambiguous about the time zone for now(), leading people to
assume that it would be the current time zone rather that UTC.
2013-06-06 11:05:33 -05:00
Tim Graham
bb863faecd
Proofed the 1.6 release notes
2013-06-05 12:55:58 -04:00
Tim Graham
a35ed20241
Fixed #18924 -- Made test.Client.logout send user_logged_out signal.
...
Thanks awsum for the suggestion and Pavel Ponomarev and
Florian Hahn for the patch.
2013-06-04 12:39:09 -04:00
Tim Graham
f315693304
Fixed #20543 - Typo in db model fields docs.
...
Thanks i.amber.jain@ for the report.
2013-06-01 05:48:38 -04:00
Tim Graham
f10e9af227
Fixed #20166 - Corrected TEST_DEPENDENCIES example in testing docs.
...
Thanks czambran.
2013-05-31 08:18:29 -04:00
Claude Paroz
3d883e8bd9
Merge pull request #1232 from fusionbox/normalize_email
...
Fixed #20531 -- Don't hard-code class names when calling static methods
2013-05-31 00:56:56 -07:00
Ramiro Morales
ac90aee55c
Tweak caching decorators/utility functions xrefs.
2013-05-30 20:38:44 -03:00
Gavin Wahl
01ae881bb4
Don't hard-code class names when calling static methods
...
normalize_email should be called on the instance, not the class. This
has the same effect normally but is more helpful to subclassers. When
methods are called directly on the class, subclasses can't override
them.
2013-05-29 16:11:26 -06:00
Tim Graham
1fdc3d256d
Fixed #20523 - Incorrect form field for FilePathField.
...
Thanks sane4ka.sh@ for the report.
2013-05-28 11:54:53 -04:00
Tim Graham
8365d76da0
Fixed #20513 - Expanded docs on QuerySet caching.
...
Thanks seddonym.
2013-05-28 08:41:13 -04:00
Tim Graham
d194714c0a
Fixed #11603 - Added django.test.SimpleTestCase.assertFormsetError
...
Thank-you Martin Green for the patch.
2013-05-27 12:25:35 -04:00
yishaibeeri
f077f89198
Patch for ticket #20506 - documentation type
2013-05-27 11:14:38 +03:00