| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-07-25 | Merge pull request #224 from reclosedev/patch-1 | Florian Apolloner | |
| Documentation: Fix link to uWSGI deployment | |||
| 2012-07-25 | Merge pull request #230 from pjdelport/cleanup | Alex Gaynor | |
| Cleanup | |||
| 2012-07-25 | Merge pull request #228 from nklas/master | Alex Gaynor | |
| Documentation: Fixed a typo in docs/releases/1.4.txt | |||
| 2012-07-25 | Merge pull request #232 from yohanboniface/ticket18667 | Alex Gaynor | |
| Ticket 18667: fix typo in CBV doc | |||
| 2012-07-25 | Merge pull request #231 from kevin1024/master | James Bennett | |
| Documentation fix - Change the word "brackets" to "parentheses" | |||
| 2012-07-25 | Fixed QueryDict.setlistdefault. | Aymeric Augustin | |
| It was broken by a seemingly innocuous change in MultiValueDict. Document the pitfall for now. This is fragile and should be considered for refactoring. | |||
| 2012-07-25 | Fixed a typo in the admin reference docs. | Aymeric Augustin | |
| Thanks Yohan Boniface for the report. | |||
| 2012-07-25 | Ticket 18667: fix typo in CBV doc | Yohan Boniface | |
| 2012-07-25 | Rolled back a unnecessary change in 8f002867b2. | Aymeric Augustin | |
| This keeps the implementation of setdefault and setlistdefault consistent. Also it's marginally faster than looking up the value again. | |||
| 2012-07-25 | Made staticfiles tests independent of test execution order. | Florian Apolloner | |
| 2012-07-25 | Update docs/topics/signals.txt | nklas | |
| Fixed a typo. | |||
| 2012-07-24 | Changed the word "brackets" to "parentheses" | Kevin McCarthy | |
| I want to change the word "brackets" to "parentheses" because when I think of brackets, I think of [], and when I think of parentheses, I think of (), and when I originally read this, I found the word confusing. | |||
| 2012-07-24 | Fixed #18666 -- when upgrading a user's password to a new algorithm only ↵ | Alex Gaynor | |
| save the password field to the databaes. | |||
| 2012-07-24 | Clarified default name of M2M relationship DB table. | Ramiro Morales | |
| 2012-07-25 | Fix typo. | Piet Delport | |
| 2012-07-25 | it's -> its | Piet Delport | |
| 2012-07-24 | Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables. | Ramiro Morales | |
| Previously, the flush was done before the test case execution and now it is performed after it. Other changes to the testing infrastructure include: * TransactionTestCase now doesn't reset autoincrement sequences either (previous behavior can achieved by using `reset_sequences`.) With this, no implicit such reset is performed by any of the provided TestCase classes. * New ordering of test cases: All unittest tes cases are run first and doctests are run at the end. THse changes could be backward-incompatible with test cases that relied on some kind of state being preserved between tests. Please read the relevant sections of the release notes and testing documentation for further details. Thanks Andreas Pelme for the initial patch. Karen Tracey and Anssi Kääriäinen for the feedback and Anssi for reviewing. This also fixes #12408. | |||
| 2012-07-25 | Fixed a small typo. | nklas | |
| 2012-07-24 | Added tests for deprecation warnings and fixed the argument order for the ↵ | Alex Gaynor | |
| warnings. | |||
| 2012-07-24 | Remove double isinstance check in force_unicode | Jeroen Dekkers | |
| 2012-07-23 | Removed a Python 3-compatibility hack. | Aymeric Augustin | |
| Thanks Preston Holmes for the patch. | |||
| 2012-07-22 | Fixed a broken link in the Python 3 docs. | Aymeric Augustin | |
| Thanks ptone for the report. | |||
| 2012-07-22 | Used a Python 3-compatible syntax for building a translation table | Claude Paroz | |
| 2012-07-22 | Documentation: Fix link to uWSGI deployment | Roman Haritonov | |
| 2012-07-22 | [py3] Documented coding guidelines for Python 3. | Aymeric Augustin | |
| 2012-07-22 | [py3] Added Python 3 compatibility for xrange. | Aymeric Augustin | |
| 2012-07-22 | [py3] Switched to Python 3-compatible imports. | Aymeric Augustin | |
| xrange/range will be dealt with in a separate commit due to the huge number of changes. | |||
| 2012-07-22 | [py3] Updated urllib/urllib2/urlparse imports. | Aymeric Augustin | |
| Lots of functions were moved. Use explicit imports in all cases to keey it easy to identify where the functions come from. | |||
| 2012-07-22 | [py3] Replaced unicode/str by six.text_type/bytes. | Aymeric Augustin | |
| 2012-07-22 | [py3] Replaced basestring by six.string_types. | Aymeric Augustin | |
| 2012-07-22 | [py3] Fixed remaining Python 3 syntax errors. | Aymeric Augustin | |
| django.utils.unittest.* weren't touched -- they're only imported on Python 2.6. | |||
| 2012-07-22 | [py3] Removed longs. | Aymeric Augustin | |
| 2012-07-22 | [py3] Switched to Python 3-compatible introspection. | Aymeric Augustin | |
| 2012-07-22 | [py3] Used six.with_metaclass wherever necessary. | Aymeric Augustin | |
| 2012-07-22 | [py3] Exception aren't iterable in Python 3. | Aymeric Augustin | |
| 2012-07-22 | [py3] Used six.reraise wherever necessary. | Aymeric Augustin | |
| 2012-07-22 | [py3] Fixed django.utils.six.moves. | Aymeric Augustin | |
| It didn't work because six was inside django.utils. | |||
| 2012-07-22 | [py3] Bundled six for Python 3 compatibility. | Aymeric Augustin | |
| Refs #18363. | |||
| 2012-07-21 | Fixed #10057 -- Ensured that the 'show_delete' context variable in the ↵ | Julien Phalip | |
| admin's change view actually controls the display of the delete button. Thanks to rajeesh for the report, to patcoll for the patch, and to David Gouldin for the test. | |||
| 2012-07-21 | Made LiveServerTestCase to restore state on exit. | Ramiro Morales | |
| The piece of state is DB connections' allow_thread_sharing attribute which gets munged test are run when in-memory SQLite databases. Thanks Anssi for suggesting the possible root cause and Julien for implementing the fix. | |||
| 2012-07-21 | Fixed an `except` statement to be Python3-compatible. Thanks to charettes ↵ | Julien Phalip | |
| for the tip. | |||
| 2012-07-21 | Removed u prefix on a unicode string. | Aymeric Augustin | |
| 2012-07-21 | Fixed #6170 -- Ensured that a useful exception is raised when a regex is ↵ | Julien Phalip | |
| invalid in the URLConf. Thanks to abrahamson.j for the report, to guettli for initial work on the patch, and to David Gouldin for the new patch and test. | |||
| 2012-07-21 | Re-added Windows line ending stripped in previous commit | Claude Paroz | |
| Thanks Aymeric Augustin for noticing the issue. | |||
| 2012-07-21 | Fixed #4680 -- Improved initial_sql parsing | Claude Paroz | |
| In particular, allow the '--' sequence to be present in string values without being interpreted as comment marker. Thanks Tim Chase for the report and shaleh for the initial patch. | |||
| 2012-07-21 | Fixed #18395 -- Reset language-related global variables with setting_changed | Claude Paroz | |
| 2012-07-20 | Switched to octal notation (bis). | Aymeric Augustin | |
| 2012-07-20 | Switched to Python 3-compatible octal notation. | Aymeric Augustin | |
| 2012-07-20 | Removed u prefixes on unicode strings. | Aymeric Augustin | |
| They break Python 3. | |||
| 2012-07-19 | Fixed #18504 -- Computed |naturalday in local time. | Aymeric Augustin | |
