| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-16 | Fixed #18285 -- Documented that bulk_create doesn't work with M2M relationships. | Tim Graham | |
| 2014-01-16 | Merge pull request #2176 from numerodix/master | Tim Graham | |
| Fixed typo in docstring. | |||
| 2014-01-16 | Fixed typo in docstring. | Martin Matusiak | |
| 2014-01-16 | Fixed #21784: Correctly decode stdin input for migration defaults | Andrew Godwin | |
| 2014-01-16 | Fixed #21740 -- Stopped using mutable default arguments in test client | Claude Paroz | |
| Thanks Denver Coneybeare for the report and initial patch, and Atala for another patch. | |||
| 2014-01-16 | Fixed #21343 -- Noted many-to-many restrictions with intermediate model. | Tim Graham | |
| Thanks EvilDMP for the report. | |||
| 2014-01-16 | Fixed #21768 -- Corrected TemplateView context section. | Tim Graham | |
| Thanks nedbatchelder for the report and claudep for the patch. | |||
| 2014-01-16 | Fixed #21727 -- Added some links to help clarify topics/auth/default.txt | Tim Graham | |
| Thanks daGrevis for the suggestion. | |||
| 2014-01-16 | Fixed #21747 -- Added {% elif %} to template topics guide. | Tim Graham | |
| Thanks gcc for the suggestion. | |||
| 2014-01-15 | Merge pull request #2170 from numerodix/master | Tim Graham | |
| Fixed typo in comment. | |||
| 2014-01-15 | Merge pull request #2171 from kwood/master | Tim Graham | |
| Fixed typo in storage docs | |||
| 2014-01-15 | Fix typo in storage docs | Kevin Wood | |
| 2014-01-15 | Fixed typo in comment. | Martin Matusiak | |
| 2014-01-14 | Fixed #21774 -- Isolate all test urls from eachother. | Marc Tamlyn | |
| This (nearly) completes the work to isolate all the test modules from each other. This is now more important as importing models from another module will case PendingDeprecationWarnings if those modules are not in INSTALLED_APPS. The only remaining obvious dependencies are: - d.c.auth depends on d.c.admin (because of the is_admin flag to some views), but this is not so important and d.c.admin is in always_installed_apps - test_client_regress depends on test_client. Eventually these should become a single module, as the split serves no useful purpose. | |||
| 2014-01-13 | Remove unneded open(.., 'U') when on python 3. | Marc Tamlyn | |
| Universal newlines is enabled by default on py3, and the usage of 'U' is deprecated in py3.4. | |||
| 2014-01-13 | Removed BDFL stuff from docs/internals/contributing/bugs-and-features.txt | Adrian Holovaty | |
| 2014-01-13 | Removed BDFLs section from docs/internals/committers.txt | Adrian Holovaty | |
| 2014-01-13 | Negligible change to my bio in docs/internals/committers.txt | Adrian Holovaty | |
| 2014-01-12 | Be more careful about closing connections in mail tests. | Marc Tamlyn | |
| 2014-01-12 | Undelete the `return True` removed in 4e0a2fe. | Marc Tamlyn | |
| This is quite important otherwise we don't close our connections to the SMTP server. | |||
| 2014-01-12 | Add further workarounds for HTMLParser with Python 3.4. | Marc Tamlyn | |
| Python 3.5 will change the default value of convert_charrefs, so 3.4 gives warnings if it's not present. This is slightly technical as 2.7 doesn't have the kwarg. Thankfully, we already have a bunch of workarounds for different versions. | |||
| 2014-01-12 | Fixed #21770 -- Updated autocomplete for app-loading. | Aymeric Augustin | |
| Thanks dfunckt for the report. | |||
| 2014-01-12 | Fixed #21477 -- Renamed db to using in pre/post_migrate signals. | Aymeric Augustin | |
| 2014-01-12 | Used a regular lock for app registry population. | Aymeric Augustin | |
| Since the app registry is always populated before the first request is processed, the situation described in #18251 for the old app cache cannot happen any more. Refs #18251, #21628. | |||
| 2014-01-12 | Fixed a test that was failing with PostGIS. | Aymeric Augustin | |
| Fixed #21452 again. Forward-port of 18d75e07 from stable/1.6.x. | |||
| 2014-01-12 | Restored a test broken by overzealous PEP8 cleanup | Aymeric Augustin | |
| 2014-01-12 | Fixed #21453 -- Enabled autocommit before calling init_connection_state. | Aymeric Augustin | |
| Also ensured the transaction state is clean on Oracle while I was there. This change cannot be backported to 1.6 because it's backwards-incompatible for custom database backends. | |||
| 2014-01-12 | Fixed flake8 issues. | Simon Charette | |
| 2014-01-12 | Merge pull request #2163 from apollo13/signals | Florian Apolloner | |
| Signals | |||
| 2014-01-12 | Added license info for the weakref backports | Florian Apolloner | |
| 2014-01-12 | Fixed #21452 -- Non-autocommit connections to PostgreSQL. | Aymeric Augustin | |
| When settings.DATABASES['default']['AUTOCOMMIT'] = False, the connection wasn't in autocommit mode but Django pretended it was. Thanks Anssi for analysing this issue. Refs #17062. | |||
| 2014-01-12 | Fixed a test isolation issue. Refs #17062. | Aymeric Augustin | |
| This test could change settings.DATABASES['default']['TIME_ZONE'] and didn't restore the previous value. | |||
| 2014-01-12 | Fixed #21413 -- resolve_columns fields misalignment | Anssi Kääriäinen | |
| 2014-01-12 | Fixed #21756 -- Skipped two timezone-related tests on Windows. | Aymeric Augustin | |
| Windows cannot use a time zone other than the default time zone. Thanks manfre for the report. | |||
| 2014-01-11 | Fixed #21547 -- Updated GeoDjango tutorial with PostGIS 2 output | Claude Paroz | |
| Thanks awilliams at cironline.org for the report. | |||
| 2014-01-11 | Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeField | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2014-01-11 | Fixed #21750 -- Fixed regression introduced by 4befb30. | Loic Bistuer | |
| Validating STATIC_ROOT in StaticFilesStorage.__init__ turned out to be problematic - especially with tests - because the storage refuses to work even if there are no actual interactions with the file system, which is backward incompatible. Originally the validation happened in the StaticFilesStorage.path method, but that didn't work as expected because the call to FileSystemStorage.__init__ replaced the empty value by a valid path. The new approach is to move back the check to the StaticFilesStorage.path method, but ensure that the location attribute remains None after the call to super. Refs #21581. | |||
| 2014-01-11 | Fixed #21752 -- Prevented custom widget step attribute to be overwritten | Claude Paroz | |
| Thanks orcein at gmail.com for the report. | |||
| 2014-01-10 | Removed a man page for a command that was removed | Alex Gaynor | |
| 2014-01-10 | Deprecated importing a model before loading its application. | Aymeric Augustin | |
| Refs #21719, #21680. | |||
| 2014-01-10 | Fixed docstring typo in django/forms/forms.py. | Marc Sibson | |
| 2014-01-10 | Fixed typo in docstrings of MonthArchiveViews. | Michael Blatherwick | |
| 2014-01-10 | Fixed #21513 -- Added method_decorator support for argumented decorator | dpwrussell | |
| Copied attributes into the decorated method and special case __name__ copy as this will not be present on a Class object. Added regression test to decorator suite. | |||
| 2014-01-09 | Fixed #12571 -- Attached originating WSGIRequest to test client responses. | Unai Zalakain | |
| Originating WSGIRequests are now attached to the ``wsgi_request`` attribute of the ``HttpResponse`` returned by the testing client. Thanks rvdrijst for the suggestion. | |||
| 2014-01-09 | Fixed removal of signal receivers in Python 3.4 | Florian Apolloner | |
| Make use of `weakref.finalize` and `weakref.WeakMethod` on python 3.4. Simplified the removal of receivers, the old function looked overly complicated. Many thanks go to Antoine Pitrou for helping me to debug and explain all the failures I ran into while writing that patch. | |||
| 2014-01-08 | Make test stronger to hopefully fix odd Jenkins failure | Andrew Godwin | |
| 2014-01-08 | Merge pull request #2151 from manfre/ticket-21746 | Anssi Kääriäinen | |
| Fixed #21746 - Fixed test_get_reverse_on_unsaved_object test. | |||
| 2014-01-08 | Fixed #21746 - Fixed test_get_reverse_on_unsaved_object test. | Michael Manfre | |
| Test will no longer attempt to insert multiple NULL rows in to a unique field if the database doesn't support it. | |||
| 2014-01-08 | Merge pull request #2150 from manfre/ticket-21745 | Anssi Kääriäinen | |
| Fixed #21745 - Feature check UniqueTest.test_unique_null | |||
| 2014-01-08 | Fixed #21745 - Feature check UniqueTest.test_unique_null | Michael Manfre | |
