summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2014-06-15Added database migration for contrib.flatpages.Claude Paroz
refs #22170.
2014-06-15Added database migration for contrib.sites.Claude Paroz
refs #22170.
2014-06-15Fixed #22568: Better proxy model support in migrationsAndrew Godwin
2014-06-15Fixed #22470: Full migration support for order_with_respect_toAndrew Godwin
2014-06-15Persist non-schema-relevant Meta changes in migrationsAndrew Godwin
2014-06-15Fixed #22833: Autodetector not doing through mapping correctlyAndrew Godwin
2014-06-15Fixed #22563: Added migration to admin, fixed a few more loader issues.Andrew Godwin
2014-06-15Improve error message for missing migrations in an appAndrew Godwin
2014-06-15Merge pull request #2806 from jorgecarleitao/issue22826Marc Tamlyn
Fixed #22826 -- Improved internal usage of Query.setup_joins.
2014-06-14Fixed #7762 -- Hidden full script name in command error outputClaude Paroz
2014-06-14Restored command error behavior when called from command lineClaude Paroz
Refs #19973.
2014-06-14Fixed several flake8 errorsAlex Gaynor
2014-06-14Improved code style of Query.table_alias() usage.Jorge C. Leitão
2014-06-14Removed unnecessary attribute assigment to SQLCompiler.Jorge C. Leitão
2014-06-14Fixed #22826 -- Improved internal usage of Query.setup_joins.Jorge C. Leitão
2014-06-14Converted remaining management commands to argparseClaude Paroz
2014-06-14Converted test management command to argparseClaude Paroz
Keeping backwards compatibility with test_runner.option_list is tricky and would imply transforming an optparse.Option to an argparse.Action. I choose to introduce a backwards incompatible change because it only affects testing, not runtime behavior.
2014-06-14Fixed #19973 -- Replaced optparse by argparse in management commandsClaude Paroz
Thanks Tim Graham for the review.
2014-06-13Fixed #22440 -- Updated ConditionalGetMiddleware to comply with RFC 2616.Mark Lavin
2014-06-14Fixed #22816 -- Corrected Oracle feature flag and fixed introspection testShai Berger
2014-06-13Added django.utils.six.buffer_typesShai Berger
and used it in the Oracle SchemaEditor. Refs #22715.
2014-06-13Fixed #22771 -- Fixed test.Client.logout when using custom auth backend.Xavier Fernandez
2014-06-13Fixed #22477 -- Removed contrib middleware from the global settings defaults.mlavin
Also added a compatibility check for changed middleware defaults. Forwardport of d94de802d3 from stable/1.7.x
2014-06-13Fixed #7599 -- Added get_user_permissions to ModelBackend.Jorge C. Leitão
Thanks to @gdub for the report and intial patch and @charettes and @timgraham for the review.
2014-06-13Fixed #6327 -- Added has_module_permission method to BaseModelAdminMaxime Turcotte
Thanks chrj for the suggestion.
2014-06-13Fixed #16087 -- Added ResolverMatch instance to test client response.Greg Chapple
Thanks mrmachine for the suggestion.
2014-06-12Fix test breakage from previous state fixAndrew Godwin
2014-06-12Fixed #22823 (and partly #22563) - FKs from unmigrated apps breaking state.Andrew Godwin
Thanks to bendavis78 for the test and diagnostic work.
2014-06-12Fixed #22814 -- Allowed ISO-8601 [+-]hh timezone format in parse_datetimeRichard Eames
2014-06-12Silenced deprecation warnings for refs #22811 and fixed build.Tim Graham
2014-06-12Fixed #22811 -- Allowed setting both the old and new TEST database settings.Tim Graham
An ImproperlyConfigured exception will be raised they mismatch.
2014-06-12Prevented markup escape in 'Welcome to Django' pageClaude Paroz
Fixes a regression introduced in 5f24cf9705. Refs #22635. Thanks A.J. May for spotting the regression.
2014-06-12Made the vendored NamedTemporaryFile work as a context manager. Refs #22680.Loic Bistuer
This fixes a regression on Windows introduced by b7de5f5. Thanks Tim Graham for the report and review.
2014-06-11Fixed #21430 -- Added a RuntimeWarning when unpickling Models and QuerySets ↵Anubhav Joshi
from a different Django version. Thanks FunkyBob for the suggestion, prasoon2211 for the initial patch, and akaariai, loic, and charettes for helping in shaping the patch.
2014-06-11Fixed #22680 -- I/O operation on closed file.Florian Apolloner
This patch is two-fold; first it ensure that Django does close everything in request.FILES at the end of the request and secondly the storage system should no longer close any files during save, it's up to the caller to handle that -- or let Django close the files at the end of the request.
2014-06-10Fixed #22780 -- Checked that LOCALE_PATHS is really a tupleTim Schaffer
2014-06-10Fixed #22798 -- `pluralize()` now adds plural_suffix for any `1 < d < 2`Moayad Mardini
Thanks Odd_Bloke for the report.
2014-06-10Fixed #22770 -- Removed create_superuser from post_migrate signals.Tim Graham
Moved logic to syncdb command for backwards compatibility.
2014-06-10Fixed #17431 -- Added send_mail() method to PasswordResetForm.Jorge C. Leitão
Credits for the initial patch go to ejucovy; big thanks to Tim Graham for the review.
2014-06-10Fixed #22792 -- Updated checks for list_display_links in model adminGreg Chapple
2014-06-10Fixed #17552 -- Removed a hack for IE6 and earlier.Aymeric Augustin
It prevented the GZipMiddleware from compressing some data types even on more recent version of IE where the corresponding bug was fixed. Thanks Aaron Cannon for the report and Tim Graham for the review.
2014-06-09Dropped support for SpatiaLite < 2.4.Tim Graham
2014-06-09Fixed #20420 -- Normalized query counts on Oracle.Aymeric Augustin
This is achieved by inserting a fake entry in connection.queries when not releasing a savepoint (since Oracle doesn't support that operation.) Also removed the can_release_savepoints feature that was recently added, but is superseded by this solution.
2014-06-09Simplified handling of use_debug_cursor.Aymeric Augustin
Turned it from a tri-valued boolean into a regular boolean.
2014-06-09Added rollback emulation to spatialite backend; refs #22487.Tim Graham
2014-06-09Fixed flake8 error.Tim Graham
2014-06-09Tweaked order of create_test_db arguments for backwards compatibility.Tim Graham
Since `serialize` was backported to 1.7, it should appear before `keepdb`.
2014-06-09Fixed formtools tests with Python 2Claude Paroz
Fixes #19905 again.
2014-06-09Converted Django scripts to argparseClaude Paroz
Refs #19973.
2014-06-08Fixed #22487: Optional rollback emulation for migrated appsAndrew Godwin