| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-08 | Fix wording of auth superuser post-migrate handler | Andrew Godwin | |
| 2014-01-08 | Fixed #21142: Dependency failures on unmigrated apps. | Andrew Godwin | |
| 2014-01-08 | Changed parent class calls to super in Field subclasses | maurycyp | |
| 2014-01-06 | Avoided catching ImproperlyConfigured on django.setup(). | Aymeric Augustin | |
| Fixed #21737. Thanks Florian for the report. Also removed redundant imports in that file. | |||
| 2014-01-06 | Fixed #21718 -- Renamed has_app to is_installed. | Aymeric Augustin | |
| 2014-01-05 | Added catalogs for apps that didn't have any translations. | Aymeric Augustin | |
| 2014-01-05 | Fixed #21675 -- Added app configs for contrib apps. | Aymeric Augustin | |
| 2014-01-05 | Added an app-loading feature to the release notes. | Aymeric Augustin | |
| 2014-01-05 | Fixed #21711 -- Enforced unicity of model names. | Aymeric Augustin | |
| 2014-01-05 | Renamed a couple models to prevent duplicate names. | Aymeric Augustin | |
| 2014-01-05 | Fixed app registry cleanup in app-loading tests. | Aymeric Augustin | |
| 2014-01-05 | Fixed test for models in non-installed apps. | Aymeric Augustin | |
| 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 | Removed useless model definitions. | Aymeric Augustin | |
| 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-04 | Fixed `python scripts/manage_translations.py update_catalogs`. | Aymeric Augustin | |
| It used to generate languages 'e' and 'n'. | |||
| 2014-01-04 | Fixed #21730 -- Removed superfluous db_index in custom auth docs | Claude Paroz | |
| Thanks rafalp for the report. | |||
| 2014-01-03 | Fixed a sentence in the session security docs; thanks claudep. | Tim Graham | |
| 2014-01-03 | Fixed #21728 -- Corrected an inadvertent path change in ↵ | Tianyi Wang | |
| docs/intro/contributing.txt. | |||
| 2014-01-03 | Suppressed ResourceWarning in files tests | Claude Paroz | |
| 2014-01-03 | Added build to flake8.exclude. | Florian Apolloner | |
| 2014-01-03 | Fixed selenium failure. | Florian Apolloner | |
| 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 | Merge pull request #2094 from coder9042/ticket_21478 | Anssi Kääriäinen | |
| Changed documentation for db_type() | |||
| 2014-01-02 | Fixed #21319 -- Added documentation for the Form.fields attribute. | Vajrasky Kok | |
| Thanks pydanny for the report. Also, added documentation about base_fields attribute and its difference with fields attribute. | |||
| 2014-01-03 | Revert "Fixed #21227 -- Added workaround for selenium test failures" | Florian Apolloner | |
| This reverts commit 08c9ab5a0f564a3ac7803e6a97fae855f2e0524e. | |||
| 2014-01-03 | Removed unneeded import. | Florian Apolloner | |
| 2014-01-03 | Fixed a few flaky selenium tests. | Florian Apolloner | |
| Many thanks go to David Burns (@AutomatedTester) for helping me understand css selectors and pointing me towards the correct selenium methods. | |||
| 2014-01-02 | Updated my bio. | Aymeric Augustin | |
| 2014-01-02 | Changed convention for modules storing AppConfigs. | Aymeric Augustin | |
| The app/apps dichotomy was more confusing than valuable. | |||
| 2014-01-02 | Fixed #21722 -- Added a warning for avoiding XSS vulnerabilities when ↵ | Tim Graham | |
| reusing built-in filters. Thanks Stephen McDonald for the suggestion. | |||
| 2014-01-02 | Merge pull request #2138 from NathanRSmith/master | Alex Gaynor | |
| Fixed minor typos in GEOS API doc page. | |||
| 2014-01-02 | Fixed minor typos. | Nathan Smith | |
| 2014-01-02 | Moved django.setup() to ManagementUtility | Claude Paroz | |
| 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 | Merge pull request #2137 from ftobia/patch-1 | Alex Gaynor | |
| Fixed typos. Changed grammar. | |||
| 2014-01-02 | Fixed typos. Changed grammar. | Frank Tobia | |
| Minor typos. Some grammar changes. | |||
| 2014-01-02 | Fix typo in 0ce945a67151acf2c58bc35a47f4c3d45ff30085. | Marc Tamlyn | |
| Thanks to Loic for the report. | |||
| 2014-01-01 | Prevented calling setup() inside catch_warnings | Claude Paroz | |
| When django.setup() (and then configure_logging) is called inside catch_warnings, logging setup is negatively affected (notably warnings.showwarning definition). | |||
| 2014-01-01 | Updated release notes on app_label. | Aymeric Augustin | |
| Django determines automatically which application models belong to, provided the application can be imported without importing models. | |||
| 2014-01-01 | Adjusted previous commit for Python 3. | Aymeric Augustin | |
| 2014-01-01 | Several small whitespace fixes for styleguide/flake8 violations | Alex Gaynor | |
| 2014-01-01 | Fixed #21018 -- Reversed precedence order for management commands. | Aymeric Augustin | |
| 2014-01-01 | Wiped get_commands() cache when INSTALLED_APPS changes. | Aymeric Augustin | |
| Refs #21018, #21688. | |||
| 2014-01-01 | Documented unicity rules in INSTALLED_APPS. | Aymeric Augustin | |
| Refs #12288, #21679. | |||
| 2014-01-01 | Removed unused function in test_runner tests | Preston Timmons | |
| This was used for python 2.6 and unittest2 compatibility. It was forgotten when the code that used it was removed. | |||
| 2014-01-01 | Fixed #21206 -- Fixed test discovery without labels | Preston Timmons | |
| Added test to verify an empty label performs discovery on the current working directory. | |||
| 2014-01-01 | Readded field unadvertantly removed in fedfd5030 | Claude Paroz | |
| 2014-01-01 | Fixed a few issues in previous commit. | Aymeric Augustin | |
| 2014-01-01 | Properly assigned app_label to GIS test models. | Aymeric Augustin | |
| Used abstract inheritance to cut down on code repetition. | |||
| 2013-12-31 | Django sees more than 1mm hits per hour | Matt Robenolt | |
| Disqus regularly does 40-50k/s | |||
| 2013-12-31 | Fixed #21581 -- Fixed a number of issues with collectstatic. | Loic Bistuer | |
| When STATIC_ROOT wasn't set, collectstatic --clear would delete every files within the current directory and its descendants. This patch makes the following changes: Prevent collectstatic from running if STATIC_ROOT isn't set. Fixed an issue that prevented collectstatic from displaying the destination directory. Changed the warning header to notify when the command is run in dry-run mode. | |||
| 2013-12-31 | Fixed #21484 -- Documented that SQL logging does not include "framework ↵ | Tim Graham | |
| level" queries. | |||
| 2013-12-31 | Fixed #21714 -- Moved logging configuration to global setup() | Claude Paroz | |
| Thanks Aymeric Augustin for the report and the review. | |||
