summaryrefslogtreecommitdiff
path: root/tests/admin_widgets/tests.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
|
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+2
| | | | Thanks Tim Graham and Simon Charette for the reviews.
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
|
* Fixed #15667 -- Added template-based widget rendering.Preston Timmons2016-12-271-21/+41
| | | | Thanks Carl Meyer and Tim Graham for contributing to the patch.
* Imported specific models in a few tests that didn't.Tim Graham2016-12-081-76/+79
|
* Fixed #27386 -- Wrapped admin's readonly fields in <div> rather than <p>.Jacob Rief2016-11-121-3/+3
|
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-41/+21
|
* Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham2016-10-271-7/+2
|
* Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham2016-09-171-2/+2
| | | | http://bugs.python.org/issue27364
* Fixed #27207 -- Replaced <p> tag with <div> in admin help texts.Alexander Gaevsky2016-09-101-1/+1
|
* Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne2016-06-161-1/+1
|
* Fixed #26612 -- Fixed SelectFilter2 buttons changing URL.David Sanders2016-05-131-0/+5
|
* Fixed #26449 -- Merged admin's FORMFIELD_FOR_DBFIELD_DEFAULTS with ↵marysia2016-05-071-1/+23
| | | | | | formfield_overrides. Useful for overriding the DateTimeField widget.
* Fixed #26575 -- Disabled SelectFilter buttons when inactive.David Sanders2016-05-031-0/+26
|
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-117/+91
|
* Fixed #25364 -- Added generic way to test on all browsers supported by selenium.Akshesh2016-03-151-77/+17
| | | | | | Browser names should be passed as a comma separated list to the --selenium flag. Thanks Tim Graham, Simon Charette and Moritz Sichert for review and discussion.
* Made @override_settings(ROOT_URLCONF=...) consistent.Tim Graham2016-02-081-2/+1
|
* Fixed #26175 -- Removed SHA1 password hashes in tests.Tim Graham2016-02-061-44/+18
|
* Fixed #7923 -- Added links to objects displayed by ModelAdmin.raw_id_fields.Hugo Osvaldo Barrera2016-02-011-4/+7
|
* Fixed #14402 -- Removed clearing of help_text for ManyToManyField's ↵Alexander Gaevsky2016-01-301-0/+6
| | | | raw_id_fields.
* Refs #26048 -- Fixed a flaky selenium test.Tim Graham2016-01-141-4/+1
|
* Fixed #26048 -- Made admin selenium tests use implicitly_wait()Tim Graham2016-01-111-4/+1
|
* Replaced selenium.find_element_by_css_selector where by_id is sufficient.Tim Graham2016-01-111-6/+6
|
* Refs #22955 -- Added test for admin's many-to-many widget refresh data loss bug.elky2016-01-061-0/+24
| | | | This was fixed by 4a438e400b7ce0ab9d0b6876196cbe8d620a4171.
* Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek2015-12-311-1/+1
| | | | Thanks to Tim Graham for the review.
* Refs #13614 -- Added test for admin's many-to-many widget data loss bug.Tim Graham2015-12-301-0/+26
| | | | It looks like browsers have fixed the reported issue.
* Fixed #25729 -- Fixed flaky admin_widgets selenium test: ↵Tim Graham2015-12-231-0/+2
| | | | test_ForeignKey_using_to_field
* Fixed #25165 -- Removed inline JavaScript from the admin.Thomas Grainger2015-12-051-6/+4
| | | | | | | This allows setting a Content-Security-Policy HTTP header (refs #15727). Special thanks to blighj, the original author of this patch.
* Fixed #25820 -- Allowed whitespace in admin's calendar.js month/weekday names.bphillips2015-12-031-5/+5
| | | | This is useful for certain language translations.
* Fixed many spelling mistakes in code, comments, and docs.Josh Soref2015-12-031-2/+2
|
* Refs #25550 -- Removed reverse related set assignment in selenium tests.Tim Graham2015-10-301-6/+4
|
* Refs #25149 -- Fixed regression in admin datetime widget for timezones on ↵Gavin Wahl2015-09-161-0/+15
| | | | the negative side of UTC.
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-25/+62
|
* Fixed #25323 -- Fixed selenium test failures with chromedriver 2.18.Tim Graham2015-08-281-12/+7
|
* Removed usage of selenium's deprecated switch_to_window() method.Tim Graham2015-07-311-2/+2
|
* Fixed #24444 -- Updated contrib.admin to use django-flat-themeelky2015-07-301-1/+1
|
* Refs #25006 -- Added a '6 p.m.' option to the admin's time picker.Tim Graham2015-06-221-0/+7
|
* Refs #24652 -- Used SimpleTestCase where appropriate.Simon Charette2015-05-201-15/+15
|
* Fixed #24466 -- Added JavaScript escaping in a couple places in the admin.Tim Graham2015-03-301-4/+10
| | | | Thanks Aymeric Augustin and Florian Apolloner for work on the patch.
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-10/+10
| | | | | | | | Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True.
* Fixed admin selenium tests broken by removal of fixtures.Tim Graham2015-03-051-20/+28
|
* Fixed #19538 -- Removed window.__admin_media_prefix__ from admin templates.Tim Graham2015-03-051-6/+2
|
* Converted test fixtures to setUpTestData methodsJosh Smeaton2015-03-051-33/+49
|
* Refs #14497 -- Handled empty readonly admin FileFieldsCollin Anderson2015-02-111-0/+6
|
* Replaced hardcoded URLs in admin_* testsClaude Paroz2015-02-081-17/+18
| | | | | Refs #15779. This will allow easier admin URL changes, when needed. Thanks Simon Charette for the review.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-11/+8
|
* Fixed #14497 -- Improved admin widget for "read only" FileFieldsRiccardo Magliocchetti2015-02-041-7/+36
| | | | Based on patch by Adam J Forster, Paul Collins, and Julien.
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-8/+8
|
* Fixed #13165 -- Added edit and delete links to admin foreign key widgets.Simon Charette2015-01-101-1/+45
| | | | | Thanks to Collin Anderson for the review and suggestions and Tim for the final review.
* Fixed #23995 -- Removed unnecessary calls to self.client.logout() in tests.Diego Guimarães2014-12-161-6/+0
|