summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-09Clarified thread safety note in class based views; thanks rafadura for the ↵Tim Graham
patch.
2012-08-09[py3] Fixed mail tests with Python 3Claude Paroz
2012-08-09[py3k] use the base64 module, instead of bytes.encode('base64')Alex Gaynor
2012-08-09[py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin
See PEP 3114. `next` is retained as an alias for Python 2.
2012-08-08[py3] Fixed compilemessages testsClaude Paroz
2012-08-08[py3] Fixed Python 3 compatibility in localflavor formsClaude Paroz
2012-08-08[py3] Made Element instances hashableClaude Paroz
2012-08-08[py3] Replaced raw_input by inputClaude Paroz
The six addition has been borrowed from: https://bitbucket.org/gutworth/six/changeset/733ef740
2012-08-08Merge pull request #256 from ubernostrum/model-choice-docsJames Bennett
Fix #18062: Document best practices for choices in model fields.
2012-08-08Fix #18062: Document best practices for choices in model fields.James Bennett
2012-08-08[py3] Fixed 'iterable but non string' detectionClaude Paroz
In Python 3, the str type has an __iter__ attribute. Therefore, the presence of an __iter__ attribute is not sufficient to distinguish 'standard' iterables (list, tuple) from strings.
2012-08-08Switched to using the standard method for comparing querysets in teh templates.Alex Gaynor
2012-08-08Fix TestCase.assertQuerysetEqual on python 3, this is needed for a large ↵Alex Gaynor
number of tests
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-08[py3] Replaced __nonzero__ by __bool__Claude Paroz
Of course, __nonzero__ alias has been kept for Python 2 compatibility.
2012-08-08[py3] Fixed a loop that changed dictionary size.Aymeric Augustin
2012-08-08[py3] Used compatible imports of StringIO.Aymeric Augustin
2012-08-08[py3] Made gis.measure Python 3-compatibleClaude Paroz
2012-08-08[py3] Fixed filesystem encoding handlingAymeric Augustin
in the app directories template loader.
2012-08-08[py3] abspathu doesn't exist under Python 3.Aymeric Augustin
2012-08-07Put all the security-related notes in the same notice box.James Bennett
2012-08-07And link security policies from documentation index.James Bennett
2012-08-07Link security policies from internals index.James Bennett
2012-08-07Merge pull request #253 from ubernostrum/security-documentationJames Bennett
Add new security-policy documentation.
2012-08-07Add new security-policy documentation.James Bennett
This formally describes our policies on reporting, notification and disclosure of security issues, and provides a detailed explanation of our full security-response process, for reference purposes.
2012-08-07Fix a test that relied on an exception outliving the `except` block, which ↵Alex Gaynor
doesn't happen on py3k.
2012-08-07[py3] Made a small fix in django.http.Aymeric Augustin
This is necessary for the 'utils' tests to pass.
2012-08-07[py3] Minor fix in django.contrib.gis.Aymeric Augustin
2012-08-07[py3] Ported django.utils.tzinfo.Aymeric Augustin
2012-08-07[py3] Ported django.utils.translation.Aymeric Augustin
2012-08-07[py3] Ported django.utils.regex_helper.Aymeric Augustin
2012-08-07[py3] Ported django.utils.functional.Aymeric Augustin
2012-08-07[py3] Ported django.utils.feedgenerator.Aymeric Augustin
2012-08-07[py3] Ported django.utils.decorators.Aymeric Augustin
2012-08-07[py3] Ported django.utils.crypto.Aymeric Augustin
2012-08-07[py3] Ported django.utils.baseconv.Aymeric Augustin
2012-08-07[py3] Minor cleanup in django.utils.archive.Aymeric Augustin
2012-08-07[py3] Ported django.test.doctest.Aymeric Augustin
Based on Vinay Sajip's branch.
2012-08-07[py3] Applied minor fixes so the test suite startsAymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
* Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str.
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-06Merge pull request #252 from MichaelBlume/patch-1Tim Graham
Grammar fix in 1.5 release notes.
2012-08-06change "has now" -> "now has" in 1.5 release notesMichael Blume
I believe this is standard.
2012-08-06Fixed #17053 - Added a note about USE_THOUSAND_SEPARATOR setting to ↵Tim Graham
localizations docs. Thanks shelldweller for the draft patch.
2012-08-06Fixed #15754 -- avoid recursively computing the tree of media widgets more ↵Alex Gaynor
times than is necessary for a wiget
2012-08-06Fixed #18724 -- Fixed IntegerField validation with value 0Brendan MacDonell
2012-08-05Fixed a rst error introduced in f2abfe1e.Aymeric Augustin
2012-08-05Merge pull request #233 from rafikdraoui/modeladmin-docTim Graham
Updated example of customized ModelAdmin in documentation for 1.4
2012-08-04Fixed some typos on the documentation's index page.Julien Phalip
2012-08-04Fixed testing on SpatiaLite 2.4, which has support for `InitSpatialMetaData`.Justin Bronn