| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-18 | [py3] Added compatibility import of thread/_thread | Aymeric Augustin | |
| This commit fixes the auto-reload of the development server. I should have done that change in ca07fda2. | |||
| 2012-08-18 | [py3] Fixed formtools tests. | Aymeric Augustin | |
| Python 3 adds a new pickle protocol. The tests were updated in a way that makes it easy to add another pickle protocol, should Python gain one. Thanks Thomas Pelletier for providing an initial version of this patch. | |||
| 2012-08-18 | Merge pull request #282 from ptone/patch-1 | Aymeric Augustin | |
| Corrected docs on setup of JSONResponseMixin example | |||
| 2012-08-18 | [py3] Fixed file_storage tests. | Aymeric Augustin | |
| 2012-08-18 | [py3] Fixed templates tests. | Aymeric Augustin | |
| 2012-08-18 | Added a warning about the {% url %} syntax change | Aymeric Augustin | |
| at the point where it bites most beginners. Refs #18787, #18762, #18756, #18723, #18705, #18689 and several duplicates. | |||
| 2012-08-17 | Made createsuperuser more robust when getting current OS username. | Ramiro Morales | |
| Under some versions of OS X, failure in getting the default system locale during the syncdb operation of the auth app were causing hard to diagnose problems afterwards. No solution based on getpreferredencoding() was chosen because it has its own problems with certain combinations of Python and OS X versions (e.g. http://bugs.python.org/issue6202). Thanks prestonsimmons for the report and prestonsimmons and willhardy for the initial patch. Fixes #16017. | |||
| 2012-08-17 | Update docs/topics/class-based-views/index.txt | Preston Holmes | |
| View class does not have a render_to_response method - so does not make sense for this mixin | |||
| 2012-08-17 | [py3] Workarounded a Python bug in mail header encoding | Claude Paroz | |
| 2012-08-17 | Merge pull request #271 from morty/patch-1 | Tim Graham | |
| Fixed doc comment in django.contrib.admin example to match the code | |||
| 2012-08-17 | Fixed #18696 - Clarified WizardView heading; thanks sergzach. | Tim Graham | |
| 2012-08-17 | Merge pull request #261 from issackelly/cbv-full-list | Tim Graham | |
| Create headings and expand CBV docs so that the "Built-In CBV" docs include a full list. | |||
| 2012-08-17 | [py3] Fixed __unicode__ methods missed in d4a0b278 | Aymeric Augustin | |
| due to non-standard syntax (a stray comma). Thanks dmishe for the report. | |||
| 2012-08-16 | Fixed #17183 - Added a note regarding LocaleMiddleware at the top of the ↵ | Tim Graham | |
| i18n docs. Thanks krzysiumed for the patch. | |||
| 2012-08-16 | Fixed #18223 - Corrected default transaction behavior in postgresql docs. | Tim Graham | |
| Thanks philipn for the report and mateusgondim for the patch. | |||
| 2012-08-16 | [py3] Fixed a regression introduced in fcc8de0598. | Aymeric Augustin | |
| Thanks George Marshall for the report. | |||
| 2012-08-16 | Fixed #18239 -- Subclassed HTMLParser only for selected Python versions | Claude Paroz | |
| Only Python versions affected by http://bugs.python.org/issue670664 should patch HTMLParser. Thanks Raphaël Hertzog for the initial patch (for 1.4). | |||
| 2012-08-16 | [py3k] Fixed pagination_regress tests. | Alex Gaynor | |
| 2012-08-16 | Fixed Python version check in testcases.py | Claude Paroz | |
| 2012-08-16 | [py3] Ported django.core.servers. | Aymeric Augustin | |
| 2012-08-16 | [py3] Fixed test_utils tests of doctests. | Aymeric Augustin | |
| 2012-08-16 | [py3] Avoided relying on 2.x-only internals | Aymeric Augustin | |
| in LiveServerTestCase. | |||
| 2012-08-16 | [py3] Fixed the str tests. | Aymeric Augustin | |
| These tests don't look very meaningful. They were ported from doctests... | |||
| 2012-08-16 | Merge pull request #273 from dmishe/py3_introspection_regression | Alex Gaynor | |
| [py3] Fixed installed_models filtering. | |||
| 2012-08-16 | [py3] Fixed installed_models filtering. | Dmitry Shevchenko | |
| 2012-08-15 | Fixed the generic_inline_admin tests for python3. | Alex Gaynor | |
| 2012-08-15 | Fixed the admin_changelist tests for python3. | Alex Gaynor | |
| 2012-08-15 | Fix changes introduced in fd04e7 so they don't break on Python 3. | Ramiro Morales | |
| 2012-08-16 | Marked up a few raw values in the settings documentation. | Simon Meers | |
| 2012-08-16 | Fixed #18759 -- updated SECRET_KEY documentation | Piet Delport | |
| Document SECRET_KEY becoming required in 1.5. Also expand the description slightly, and add a more prominent warning about the security implications of running with an exposed SECRET_KEY. | |||
| 2012-08-15 | Added import of force_unicode to utils/text.py | Adrian Holovaty | |
| For backwards compatibility with stupid people like me. Refs #18772. | |||
| 2012-08-15 | [py3] Fixed middleware_exceptions tests. | Aymeric Augustin | |
| 2012-08-15 | [py3] Fixed more encoding issues in cache tests | Claude Paroz | |
| 2012-08-15 | Used settings config for memcached tests. | Claude Paroz | |
| By using settings config, we take advantage of custom settings like KEY_PREFIX which allows for example to run tests in parallel. | |||
| 2012-08-15 | [py3] Fixed middleware tests. | Aymeric Augustin | |
| Removed several inappropriate .encode('utf-8') calls in the process. | |||
| 2012-08-15 | [py3] Fixed slug regex | Claude Paroz | |
| In Python 3, \w matches any Unicode character. | |||
| 2012-08-15 | Fixed comment to match the code | Tom Mortimer-Jones | |
| 2012-08-15 | [py3] Fixed dispatch tests | Claude Paroz | |
| 2012-08-15 | Run memcache tests if any cache is configured | Claude Paroz | |
| 2012-08-15 | [py3] Fix some more encoding issues in tests | Claude Paroz | |
| 2012-08-15 | Removed unneeded smart_bytes import which was introduced in f2fff84bc. | Florian Apolloner | |
| 2012-08-15 | Fixed #18770 -- memcached cache backend expects byte strings as keys | Claude Paroz | |
| Thanks thecore for the report. | |||
| 2012-08-15 | [py3] Fixed bad unicode test | Claude Paroz | |
| 2012-08-15 | [py3] Fixed paginator tests. | Florian Apolloner | |
| 2012-08-15 | [py3] Properly encode hashlib.md5 and zip.compress args in the tests. | Florian Apolloner | |
| 2012-08-15 | [py3] fixed session file backend. | Florian Apolloner | |
| 2012-08-15 | [py3] Fixed HTTP header serialization | Claude Paroz | |
| 2012-08-15 | [py3] Fixed F-expression right-hand division | Claude Paroz | |
| Complementary to commit 62a9ed0ac. | |||
| 2012-08-15 | Ensured that about half of the files opened in the formtools tests were ↵ | Alex Gaynor | |
| explicitly closed. | |||
| 2012-08-15 | [py3] Pass bytes to md5 in truncate_name | Claude Paroz | |
