| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-09 | Clarified thread safety note in class based views; thanks rafadura for the ↵ | Tim Graham | |
| patch. | |||
| 2012-08-09 | [py3] Fixed mail tests with Python 3 | Claude 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 tests | Claude Paroz | |
| 2012-08-08 | [py3] Fixed Python 3 compatibility in localflavor forms | Claude Paroz | |
| 2012-08-08 | [py3] Made Element instances hashable | Claude Paroz | |
| 2012-08-08 | [py3] Replaced raw_input by input | Claude Paroz | |
| The six addition has been borrowed from: https://bitbucket.org/gutworth/six/changeset/733ef740 | |||
| 2012-08-08 | Merge pull request #256 from ubernostrum/model-choice-docs | James Bennett | |
| Fix #18062: Document best practices for choices in model fields. | |||
| 2012-08-08 | Fix #18062: Document best practices for choices in model fields. | James Bennett | |
| 2012-08-08 | [py3] Fixed 'iterable but non string' detection | Claude 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-08 | Switched to using the standard method for comparing querysets in teh templates. | Alex Gaynor | |
| 2012-08-08 | Fix TestCase.assertQuerysetEqual on python 3, this is needed for a large ↵ | Alex Gaynor | |
| number of tests | |||
| 2012-08-08 | remove a bunch of unnescesarry iterkeys() calls | Alex 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-compatible | Claude Paroz | |
| 2012-08-08 | [py3] Fixed filesystem encoding handling | Aymeric Augustin | |
| in the app directories template loader. | |||
| 2012-08-08 | [py3] abspathu doesn't exist under Python 3. | Aymeric Augustin | |
| 2012-08-07 | Put all the security-related notes in the same notice box. | James Bennett | |
| 2012-08-07 | And link security policies from documentation index. | James Bennett | |
| 2012-08-07 | Link security policies from internals index. | James Bennett | |
| 2012-08-07 | Merge pull request #253 from ubernostrum/security-documentation | James Bennett | |
| Add new security-policy documentation. | |||
| 2012-08-07 | Add 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-07 | Fix 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 starts | Aymeric 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-06 | Merge pull request #252 from MichaelBlume/patch-1 | Tim Graham | |
| Grammar fix in 1.5 release notes. | |||
| 2012-08-06 | change "has now" -> "now has" in 1.5 release notes | Michael Blume | |
| I believe this is standard. | |||
| 2012-08-06 | Fixed #17053 - Added a note about USE_THOUSAND_SEPARATOR setting to ↵ | Tim Graham | |
| localizations docs. Thanks shelldweller for the draft patch. | |||
| 2012-08-06 | Fixed #15754 -- avoid recursively computing the tree of media widgets more ↵ | Alex Gaynor | |
| times than is necessary for a wiget | |||
| 2012-08-06 | Fixed #18724 -- Fixed IntegerField validation with value 0 | Brendan MacDonell | |
| 2012-08-05 | Fixed a rst error introduced in f2abfe1e. | Aymeric Augustin | |
| 2012-08-05 | Merge pull request #233 from rafikdraoui/modeladmin-doc | Tim Graham | |
| Updated example of customized ModelAdmin in documentation for 1.4 | |||
| 2012-08-04 | Fixed some typos on the documentation's index page. | Julien Phalip | |
| 2012-08-04 | Fixed testing on SpatiaLite 2.4, which has support for `InitSpatialMetaData`. | Justin Bronn | |
