summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2014-08-30Added a missing word in a skip messageAlex Gaynor
2014-08-30Fixed #22820 -- Treated int and long types alike in lazy_numberClaude Paroz
Thanks kwist for the report and the initial patch.
2014-08-30Fixed #23055 -- Made generic admin filter obey ModelAdmin queryset.Ramiro Morales
Thanks to Trac user synasius and to Ola Sitarska for helping in identifying the issue and helping with the test case.
2014-08-30Fixed a PEP 8 error.Aymeric Augustin
2014-08-30Converted sql_queries into a lazily evaluated list.Bas Peschier
Fixed #23364. Thanks Markush2010 for the report.
2014-08-30Fixed #23370 -- defer() + select_related() crashed with inherited models.Akis Kesoglou
2014-08-30Fixed #23384 -- Allowed overriding part of a dictionary-type settingClaude Paroz
This change is needed for upcoming changes where settings might be grouped in a parent dictionary. Thanks Tim Graham for the review.
2014-08-29Fixed #21483 -- Added WSGI environ to kwargs sent to request_started signal.Joshua "jag" Ginsberg
2014-08-29Fixed flake8 warning.Tim Graham
2014-08-29Fixed #21201 -- Improved customization of ClearableFileInput.Vlastimil Zíma
2014-08-29Fixed #23313 -- Corrected repr(RawQuery) with dict parameters.Andrew Torpedov
2014-08-28Fixed an Oracle test failure introduced by 1e404180c1.Simon Charette
2014-08-28Fixed #23381 -- Context manager restored state should be determined in __enter__Thomas Chaumeny
2014-08-28Fixed #23379 -- Corrected a referencing issue in sql_create.Simon Charette
Thanks to Trac alias flakfizer for the report.
2014-08-28Fixed #23323 -- Made django.utils.translation.override usable as a decorator.Thomas Chaumeny
2014-08-28Fixed #23374 -- Renamed StaticLiveServerCase to StaticLiveServerTestCaseClaude Paroz
Refs #20739. Thanks Raphaël Hertzog for the report and the initial patch.
2014-08-27Fixed #23329 -- Allowed inherited and m2m fields to be referenced in the admin.Simon Charette
Thanks to Trac alias Markush2010 and ross for the detailed reports.
2014-08-27Fixed #23357 -- Added small int introspection support to MySQL backend.Jon Dufresne
In the MySQL backend, updated the can_introspect_small_integer feature flag to True. In data_types_reverse, map FIELD_TYPE.SHORT to a SmallIntegerField. Added test to verify introspecting SmallIntegerFields and fixed existing tests influenced by this change.
2014-08-27Fixed #13749 -- Added link from admin site to front-end site.areski
Thanks romankrv for the suggestion.
2014-08-26Lowered memory consumption in debug ouput testClaude Paroz
2014-08-26Allowed skipIf/UnlessDBFeature to accept several feature stringsClaude Paroz
2014-08-25Removed unnecessary absolute_imports.Tim Graham
2014-08-23Fixed #23341 -- Added migration name to nonexistent migration error in ↵Raffaele Salmaso
makemigrations.
2014-08-23Fixed #23352 -- Added tests for MigrationGraph.{forwards,backwards}_planRaffaele Salmaso
2014-08-22Fixed #23333 -- Made urlsafe_base64_decode() return proper type on Python 3.Ian Foote
2014-08-22Tweaked docstrings from previous commit.Tim Graham
2014-08-22Fixed #23167 -- Added BaseForm.__repr__()areski
Thanks Keryn Knight for the idea.
2014-08-22Fixed schema test for Oracle 11.2.0.1 which is used in Django Project's CI.Shai Berger
Refs #23073 Workaround. Refs #22738 Repeats the mysql "offense". When the issue is solved, the Oracle special case should be made to play with the solution (that is, Oracle should be fixed the same way that mysql and the 3rd-party backneds are).
2014-08-20Fixed #23322 -- Use resolved swappable model for dependency resolution ↵Markus Holtermann
during makemigrations
2014-08-20Prevented data leakage in contrib.admin via query string manipulation.Simon Charette
This is a security fix. Disclosure following shortly.
2014-08-20Fixed #23157 -- Removed O(n) algorithm when uploading duplicate file names.Tim Graham
This is a security fix. Disclosure following shortly.
2014-08-20Prevented reverse() from generating URLs pointing to other hosts.Florian Apolloner
This is a security fix. Disclosure following shortly.
2014-08-20Fixed flake8 warnings.Tim Graham
2014-08-20Fixed migrations tests added in refs #23315.Tim Graham
2014-08-19Fixed #23315: Operational dependency fail with mixed create/addAndrew Godwin
2014-08-19Fixed #10190 -- Made HttpResponse charset customizable.Unai Zalakain
Thanks to Simon Charette, Aymeric Augustin, and Tim Graham for reviews and contributions.
2014-08-19Fixed #22996 -- Prevented crash with unencoded query stringClaude Paroz
Thanks Jorge Carleitao for the report and Aymeric Augustin, Tim Graham for the reviews.
2014-08-19Fixed #23316 -- Added datetime.time serialization in migrations.Lee Sanghyuck
2014-08-19Fixed broken tests on Oracle after 5853c87a458f62ebd62d7809168355610de2570c.Baptiste Mispelon
Oracle doesn't have a `BEGIN` statement so the test would fail. Refs #23303
2014-08-19Replaced HAS_SPATIAL_DB by testing database featureClaude Paroz
Refs #22632. This should be the base for using more database features to exclude specific backends in GIS tests. Thanks Tim Graham for the review.
2014-08-18Fixed #22171 -- Improved sanitize_separators clevernessClaude Paroz
Thanks Klaas van Schelven for the report and Tim Graham for the review.
2014-08-18Removed test, duplicate of admin_scripts.CommandTypes testsClaude Paroz
2014-08-18Fixed flake8 warning.Tim Graham
2014-08-18Fixed #23136 -- Added a message when sqlclear does nothingGabriel Muñumel
2014-08-18Fixed #23303 -- Added BEGIN and COMMIT statements to the output of sqlmigrate.Baptiste Mispelon
2014-08-18Fixed #23309 -- Fixed call_command to parse args correctlyRaffaele Salmaso
2014-08-15Fixed #23295 -- Removed unnecessary fix_location_header request.get_host() ↵Collin Anderson
check.
2014-08-15Fixed #18355 -- Added ordering options to list based generic views.Peter Harley
Added MultipleObjectMixin.ordering and get_ordering(). Refs #21450.
2014-08-15Fixed typo in tests/migrations/test_operations.pyTim Graham
2014-08-15Fixed #23269 -- Deprecated django.utils.remove_tags() and removetags filter.Tim Graham
Also the unused, undocumented django.utils.html.strip_entities() function.