dpwrussell
14940fdd96
Fixed #21513 -- Added method_decorator support for argumented decorator
...
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-10 10:45:26 +00:00
Unai Zalakain
9eb16031ca
Fixed #12571 -- Attached originating WSGIRequest to test client responses.
...
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 18:50:03 -05:00
Florian Apolloner
52cad43bc3
Fixed removal of signal receivers in Python 3.4
...
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-09 09:27:54 +01:00
Andrew Godwin
9ae17d994b
Make test stronger to hopefully fix odd Jenkins failure
2014-01-08 21:20:29 +00:00
Anssi Kääriäinen
fa250c2cf9
Merge pull request #2151 from manfre/ticket-21746
...
Fixed #21746 - Fixed test_get_reverse_on_unsaved_object test.
2014-01-08 08:08:02 -08:00
Michael Manfre
1dbbdb29a0
Fixed #21746 - Fixed test_get_reverse_on_unsaved_object test.
...
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 10:52:13 -05:00
Anssi Kääriäinen
96911261ea
Merge pull request #2150 from manfre/ticket-21745
...
Fixed #21745 - Feature check UniqueTest.test_unique_null
2014-01-08 07:09:45 -08:00
Michael Manfre
8845ab62f5
Fixed #21745 - Feature check UniqueTest.test_unique_null
2014-01-08 09:53:40 -05:00
Andrew Godwin
f343f5e538
Fix wording of auth superuser post-migrate handler
2014-01-08 13:06:53 +00:00
Andrew Godwin
64887c644a
Fixed #21142 : Dependency failures on unmigrated apps.
2014-01-08 13:00:12 +00:00
maurycyp
0423e0796a
Changed parent class calls to super in Field subclasses
2014-01-08 06:54:37 -05:00
Aymeric Augustin
2dcde523ab
Avoided catching ImproperlyConfigured on django.setup().
...
Fixed #21737 . Thanks Florian for the report.
Also removed redundant imports in that file.
2014-01-06 23:01:29 +01:00
Aymeric Augustin
6a320cc14a
Fixed #21718 -- Renamed has_app to is_installed.
2014-01-06 22:48:41 +01:00
Aymeric Augustin
b57c48d012
Added catalogs for apps that didn't have any translations.
2014-01-05 21:18:33 +01:00
Aymeric Augustin
27afd302c6
Fixed #21675 -- Added app configs for contrib apps.
2014-01-05 21:18:33 +01:00
Aymeric Augustin
021b0b0029
Added an app-loading feature to the release notes.
2014-01-05 21:10:15 +01:00
Aymeric Augustin
f630373b92
Fixed #21711 -- Enforced unicity of model names.
2014-01-05 20:52:53 +01:00
Aymeric Augustin
f5f7617167
Renamed a couple models to prevent duplicate names.
2014-01-05 20:52:46 +01:00
Aymeric Augustin
5d9da7597e
Fixed app registry cleanup in app-loading tests.
2014-01-05 20:52:46 +01:00
Aymeric Augustin
d4b059d3eb
Fixed test for models in non-installed apps.
...
Models are now attached to any application they're defined in. Since
not_installed was inside app_loading, these models were mistakenly
attached to app_loading. The test that used them passed accidentally
when run after EggLoadingTest because that class' tearDown() method
replaces apps.all_models['app_loading'] by a copy of itself, while
it should remain the same as apps.app_configs['app_loading'].models.
2014-01-05 20:52:46 +01:00
Aymeric Augustin
a7588e2e22
Removed useless model definitions.
...
Surprisingly, this commit doesn't change any behavior at all. When a
model is defined with the same name as another model in the same app,
the definition of the first class is bound to the name of the class
regardless of the definition of the second class.
2014-01-05 20:52:46 +01:00
Aymeric Augustin
2692a0c621
Fixed `python scripts/manage_translations.py update_catalogs`.
...
It used to generate languages 'e' and 'n'.
2014-01-04 23:08:27 +01:00
Claude Paroz
c717ebbfec
Fixed #21730 -- Removed superfluous db_index in custom auth docs
...
Thanks rafalp for the report.
2014-01-04 16:11:21 +01:00
Tim Graham
4d27d311f6
Fixed a sentence in the session security docs; thanks claudep.
2014-01-03 12:02:58 -05:00
Tianyi Wang
e6800ea136
Fixed #21728 -- Corrected an inadvertent path change in docs/intro/contributing.txt.
2014-01-03 11:59:15 -05:00
Claude Paroz
196f0a356d
Suppressed ResourceWarning in files tests
2014-01-03 13:37:14 +01:00
Florian Apolloner
a61c429374
Added build to flake8.exclude.
2014-01-03 11:32:33 +01:00
Florian Apolloner
3bc6b18cb9
Fixed selenium failure.
...
This fixes (at least according to tests on the ci itself)
admin_widgets.tests.RelatedFieldWidgetSeleniumFirefoxTests.test_foreign_key_using_to_field
(http://ci.djangoproject.com/job/Django/database=mysql_gis,python=python2.7/3792/testReport/junit/admin_widgets.tests/RelatedFieldWidgetSeleniumFirefoxTests/test_foreign_key_using_to_field/ )
The cause for this issue seems to be that wait_page_loaded was executed before click fired
and as such no profile got saved (again just an educated guess, but with this fix I can no
longer reproduce it -- fingers crossed).
2014-01-03 11:29:37 +01:00
Anssi Kääriäinen
4e6142ee84
Merge pull request #2094 from coder9042/ticket_21478
...
Changed documentation for db_type()
2014-01-03 01:30:52 -08:00
Vajrasky Kok
ea83102d0f
Fixed #21319 -- Added documentation for the Form.fields attribute.
...
Thanks pydanny for the report. Also, added documentation about
base_fields attribute and its difference with fields attribute.
2014-01-02 19:43:26 -05:00
Florian Apolloner
7d0a519032
Revert "Fixed #21227 -- Added workaround for selenium test failures"
...
This reverts commit 08c9ab5a0f
.
2014-01-03 00:44:49 +01:00
Florian Apolloner
b1a399b864
Removed unneeded import.
2014-01-03 00:42:03 +01:00
Florian Apolloner
ed2828f0a0
Fixed a few flaky selenium tests.
...
Many thanks go to David Burns (@AutomatedTester) for helping me understand
css selectors and pointing me towards the correct selenium methods.
2014-01-03 00:36:50 +01:00
Aymeric Augustin
756a6accdb
Updated my bio.
2014-01-02 23:14:54 +01:00
Aymeric Augustin
449ede03b8
Changed convention for modules storing AppConfigs.
...
The app/apps dichotomy was more confusing than valuable.
2014-01-02 23:07:33 +01:00
Tim Graham
07711e9997
Fixed #21722 -- Added a warning for avoiding XSS vulnerabilities when reusing built-in filters.
...
Thanks Stephen McDonald for the suggestion.
2014-01-02 16:29:59 -05:00
Alex Gaynor
3c699c0a5d
Merge pull request #2138 from NathanRSmith/master
...
Fixed minor typos in GEOS API doc page.
2014-01-02 12:23:55 -08:00
Nathan Smith
44d40ba521
Fixed minor typos.
2014-01-02 15:14:11 -05:00
Claude Paroz
aaf5b3e7aa
Moved django.setup() to ManagementUtility
...
In get_commands, setup() might already have been called, for example
when the management command is called through call_command. Moving
setup() to ManagementUtility so as it is only called when the command
is run from command line.
2014-01-02 20:47:40 +01:00
Alex Gaynor
7f110e7959
Merge pull request #2137 from ftobia/patch-1
...
Fixed typos. Changed grammar.
2014-01-02 11:24:18 -08:00
Frank Tobia
6dd8631617
Fixed typos. Changed grammar.
...
Minor typos. Some grammar changes.
2014-01-02 14:22:52 -05:00
Marc Tamlyn
7a30eab06e
Fix typo in 0ce945a671
.
...
Thanks to Loic for the report.
2014-01-02 09:06:52 +00:00
Claude Paroz
b2d78939d1
Prevented calling setup() inside catch_warnings
...
When django.setup() (and then configure_logging) is called inside
catch_warnings, logging setup is negatively affected (notably
warnings.showwarning definition).
2014-01-01 22:59:12 +01:00
Aymeric Augustin
1386075f62
Updated release notes on app_label.
...
Django determines automatically which application models belong to,
provided the application can be imported without importing models.
2014-01-01 19:45:43 +01:00
Aymeric Augustin
30a42a4fc3
Adjusted previous commit for Python 3.
2014-01-01 19:12:46 +01:00
Alex Gaynor
791142e8b3
Several small whitespace fixes for styleguide/flake8 violations
2014-01-01 09:37:52 -08:00
Aymeric Augustin
0ce945a671
Fixed #21018 -- Reversed precedence order for management commands.
2014-01-01 18:11:15 +01:00
Aymeric Augustin
f17d00278e
Wiped get_commands() cache when INSTALLED_APPS changes.
...
Refs #21018 , #21688 .
2014-01-01 18:11:09 +01:00
Aymeric Augustin
8a2f304a79
Documented unicity rules in INSTALLED_APPS.
...
Refs #12288 , #21679 .
2014-01-01 16:51:58 +01:00
Preston Timmons
2139e09d83
Removed unused function in test_runner tests
...
This was used for python 2.6 and unittest2 compatibility. It was
forgotten when the code that used it was removed.
2014-01-01 12:41:43 +01:00