summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-16Fixed #18285 -- Documented that bulk_create doesn't work with M2M relationships.Tim Graham
2014-01-16Merge pull request #2176 from numerodix/masterTim Graham
Fixed typo in docstring.
2014-01-16Fixed typo in docstring.Martin Matusiak
2014-01-16Fixed #21784: Correctly decode stdin input for migration defaultsAndrew Godwin
2014-01-16Fixed #21740 -- Stopped using mutable default arguments in test clientClaude Paroz
Thanks Denver Coneybeare for the report and initial patch, and Atala for another patch.
2014-01-16Fixed #21343 -- Noted many-to-many restrictions with intermediate model.Tim Graham
Thanks EvilDMP for the report.
2014-01-16Fixed #21768 -- Corrected TemplateView context section.Tim Graham
Thanks nedbatchelder for the report and claudep for the patch.
2014-01-16Fixed #21727 -- Added some links to help clarify topics/auth/default.txtTim Graham
Thanks daGrevis for the suggestion.
2014-01-16Fixed #21747 -- Added {% elif %} to template topics guide.Tim Graham
Thanks gcc for the suggestion.
2014-01-15Merge pull request #2170 from numerodix/masterTim Graham
Fixed typo in comment.
2014-01-15Merge pull request #2171 from kwood/masterTim Graham
Fixed typo in storage docs
2014-01-15Fix typo in storage docsKevin Wood
2014-01-15Fixed typo in comment.Martin Matusiak
2014-01-14Fixed #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-13Remove 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-13Removed BDFL stuff from docs/internals/contributing/bugs-and-features.txtAdrian Holovaty
2014-01-13Removed BDFLs section from docs/internals/committers.txtAdrian Holovaty
2014-01-13Negligible change to my bio in docs/internals/committers.txtAdrian Holovaty
2014-01-12Be more careful about closing connections in mail tests.Marc Tamlyn
2014-01-12Undelete 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-12Add 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-12Fixed #21770 -- Updated autocomplete for app-loading.Aymeric Augustin
Thanks dfunckt for the report.
2014-01-12Fixed #21477 -- Renamed db to using in pre/post_migrate signals.Aymeric Augustin
2014-01-12Used 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-12Fixed a test that was failing with PostGIS.Aymeric Augustin
Fixed #21452 again. Forward-port of 18d75e07 from stable/1.6.x.
2014-01-12Restored a test broken by overzealous PEP8 cleanupAymeric Augustin
2014-01-12Fixed #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-12Fixed flake8 issues.Simon Charette
2014-01-12Merge pull request #2163 from apollo13/signalsFlorian Apolloner
Signals
2014-01-12Added license info for the weakref backportsFlorian Apolloner
2014-01-12Fixed #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-12Fixed 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-12Fixed #21413 -- resolve_columns fields misalignmentAnssi Kääriäinen
2014-01-12Fixed #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-11Fixed #21547 -- Updated GeoDjango tutorial with PostGIS 2 outputClaude Paroz
Thanks awilliams at cironline.org for the report.
2014-01-11Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeFieldClaude Paroz
Thanks Tim Graham for the review.
2014-01-11Fixed #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-11Fixed #21752 -- Prevented custom widget step attribute to be overwrittenClaude Paroz
Thanks orcein at gmail.com for the report.
2014-01-10Removed a man page for a command that was removedAlex Gaynor
2014-01-10Deprecated importing a model before loading its application.Aymeric Augustin
Refs #21719, #21680.
2014-01-10Fixed docstring typo in django/forms/forms.py.Marc Sibson
2014-01-10Fixed typo in docstrings of MonthArchiveViews.Michael Blatherwick
2014-01-10Fixed #21513 -- Added method_decorator support for argumented decoratordpwrussell
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-09Fixed #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-09Fixed removal of signal receivers in Python 3.4Florian 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-08Make test stronger to hopefully fix odd Jenkins failureAndrew Godwin
2014-01-08Merge pull request #2151 from manfre/ticket-21746Anssi Kääriäinen
Fixed #21746 - Fixed test_get_reverse_on_unsaved_object test.
2014-01-08Fixed #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-08Merge pull request #2150 from manfre/ticket-21745Anssi Kääriäinen
Fixed #21745 - Feature check UniqueTest.test_unique_null
2014-01-08Fixed #21745 - Feature check UniqueTest.test_unique_nullMichael Manfre