- 06 Ock, 2014 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
- 05 Ock, 2014 8 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
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.
-
Aymeric Augustin yazdı
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.
-
- 04 Ock, 2014 2 kayıt (commit)
-
-
Aymeric Augustin yazdı
It used to generate languages 'e' and 'n'.
-
Claude Paroz yazdı
Thanks rafalp for the report.
-
- 03 Ock, 2014 7 kayıt (commit)
-
-
Tim Graham yazdı
-
Tianyi Wang yazdı
-
Claude Paroz yazdı
-
Florian Apolloner yazdı
-
Florian Apolloner yazdı
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).
-
Anssi Kääriäinen yazdı
Changed documentation for db_type()
-
Vajrasky Kok yazdı
Thanks pydanny for the report. Also, added documentation about base_fields attribute and its difference with fields attribute.
-
- 02 Ock, 2014 12 kayıt (commit)
-
-
Florian Apolloner yazdı
This reverts commit 08c9ab5a.
-
Florian Apolloner yazdı
-
Florian Apolloner yazdı
Many thanks go to David Burns (@AutomatedTester) for helping me understand css selectors and pointing me towards the correct selenium methods.
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
The app/apps dichotomy was more confusing than valuable.
-
Tim Graham yazdı
Thanks Stephen McDonald for the suggestion.
-
Alex Gaynor yazdı
Fixed minor typos in GEOS API doc page.
-
Nathan Smith yazdı
-
Claude Paroz yazdı
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.
-
Alex Gaynor yazdı
Fixed typos. Changed grammar.
-
Frank Tobia yazdı
Minor typos. Some grammar changes.
-
Marc Tamlyn yazdı
Thanks to Loic for the report.
-
- 01 Ock, 2014 10 kayıt (commit)
-
-
Claude Paroz yazdı
When django.setup() (and then configure_logging) is called inside catch_warnings, logging setup is negatively affected (notably warnings.showwarning definition).
-
Aymeric Augustin yazdı
Django determines automatically which application models belong to, provided the application can be imported without importing models.
-
Aymeric Augustin yazdı
-
Alex Gaynor yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
Refs #21018, #21688.
-
Aymeric Augustin yazdı
Refs #12288, #21679.
-
Preston Timmons yazdı
This was used for python 2.6 and unittest2 compatibility. It was forgotten when the code that used it was removed.
-
Preston Timmons yazdı
Added test to verify an empty label performs discovery on the current working directory.
-
Claude Paroz yazdı
-