| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-05-07 | Fixed #26449 -- Merged admin's FORMFIELD_FOR_DBFIELD_DEFAULTS with ↵ | marysia | |
| formfield_overrides. Useful for overriding the DateTimeField widget. | |||
| 2016-05-03 | Fixed #26575 -- Disabled SelectFilter buttons when inactive. | David Sanders | |
| 2016-04-08 | Fixed E128 flake8 warnings in tests/. | Tim Graham | |
| 2016-03-15 | Fixed #25364 -- Added generic way to test on all browsers supported by selenium. | Akshesh | |
| 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. | |||
| 2016-02-08 | Made @override_settings(ROOT_URLCONF=...) consistent. | Tim Graham | |
| 2016-02-06 | Fixed #26175 -- Removed SHA1 password hashes in tests. | Tim Graham | |
| 2016-02-01 | Fixed #7923 -- Added links to objects displayed by ModelAdmin.raw_id_fields. | Hugo Osvaldo Barrera | |
| 2016-01-30 | Fixed #14402 -- Removed clearing of help_text for ManyToManyField's ↵ | Alexander Gaevsky | |
| raw_id_fields. | |||
| 2016-01-14 | Refs #26048 -- Fixed a flaky selenium test. | Tim Graham | |
| 2016-01-11 | Fixed #26048 -- Made admin selenium tests use implicitly_wait() | Tim Graham | |
| 2016-01-11 | Replaced selenium.find_element_by_css_selector where by_id is sufficient. | Tim Graham | |
| 2016-01-06 | Refs #22955 -- Added test for admin's many-to-many widget refresh data loss bug. | elky | |
| This was fixed by 4a438e400b7ce0ab9d0b6876196cbe8d620a4171. | |||
| 2015-12-31 | Fixed #26013 -- Moved django.core.urlresolvers to django.urls. | Marten Kenbeek | |
| Thanks to Tim Graham for the review. | |||
| 2015-12-30 | Refs #13614 -- Added test for admin's many-to-many widget data loss bug. | Tim Graham | |
| It looks like browsers have fixed the reported issue. | |||
| 2015-12-23 | Fixed #25729 -- Fixed flaky admin_widgets selenium test: ↵ | Tim Graham | |
| test_ForeignKey_using_to_field | |||
| 2015-12-05 | Fixed #25165 -- Removed inline JavaScript from the admin. | Thomas Grainger | |
| This allows setting a Content-Security-Policy HTTP header (refs #15727). Special thanks to blighj, the original author of this patch. | |||
| 2015-12-03 | Fixed #25820 -- Allowed whitespace in admin's calendar.js month/weekday names. | bphillips | |
| This is useful for certain language translations. | |||
| 2015-12-03 | Fixed many spelling mistakes in code, comments, and docs. | Josh Soref | |
| 2015-10-30 | Refs #25550 -- Removed reverse related set assignment in selenium tests. | Tim Graham | |
| 2015-09-16 | Refs #25149 -- Fixed regression in admin datetime widget for timezones on ↵ | Gavin Wahl | |
| the negative side of UTC. | |||
| 2015-09-12 | Fixed #23395 -- Limited line lengths to 119 characters. | Dražen Odobašić | |
| 2015-08-28 | Fixed #25323 -- Fixed selenium test failures with chromedriver 2.18. | Tim Graham | |
| 2015-07-31 | Removed usage of selenium's deprecated switch_to_window() method. | Tim Graham | |
| 2015-07-30 | Fixed #24444 -- Updated contrib.admin to use django-flat-theme | elky | |
| 2015-07-27 | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | |
| ForeignKey/OneToOneField | |||
| 2015-06-22 | Refs #25006 -- Added a '6 p.m.' option to the admin's time picker. | Tim Graham | |
| 2015-06-08 | Fixed #21927 -- Made application and instance namespaces more distinct. | Marten Kenbeek | |
| Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces. | |||
| 2015-05-20 | Refs #24652 -- Used SimpleTestCase where appropriate. | Simon Charette | |
| 2015-03-30 | Fixed #24466 -- Added JavaScript escaping in a couple places in the admin. | Tim Graham | |
| Thanks Aymeric Augustin and Florian Apolloner for work on the patch. | |||
| 2015-03-25 | Renamed Field.rel attribute to remote_field | Anssi Kääriäinen | |
| 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. | |||
| 2015-03-05 | Fixed admin selenium tests broken by removal of fixtures. | Tim Graham | |
| 2015-03-05 | Fixed #19538 -- Removed window.__admin_media_prefix__ from admin templates. | Tim Graham | |
| 2015-03-05 | Converted test fixtures to setUpTestData methods | Josh Smeaton | |
| 2015-02-11 | Refs #14497 -- Handled empty readonly admin FileFields | Collin Anderson | |
| 2015-02-08 | Replaced hardcoded URLs in admin_* tests | Claude Paroz | |
| Refs #15779. This will allow easier admin URL changes, when needed. Thanks Simon Charette for the review. | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-02-04 | Fixed #14497 -- Improved admin widget for "read only" FileFields | Riccardo Magliocchetti | |
| Based on patch by Adam J Forster, Paul Collins, and Julien. | |||
| 2015-02-03 | Fixed #24149 -- Normalized tuple settings to lists. | darkryder | |
| 2015-01-10 | Fixed #13165 -- Added edit and delete links to admin foreign key widgets. | Simon Charette | |
| Thanks to Collin Anderson for the review and suggestions and Tim for the final review. | |||
| 2014-12-16 | Fixed #23995 -- Removed unnecessary calls to self.client.logout() in tests. | Diego Guimarães | |
| 2014-11-03 | Fixed typos using https://github.com/vlajos/misspell_fixer | Veres Lajos | |
| 2014-11-03 | Fixed #23620 -- Used more specific assertions in the Django test suite. | Berker Peksag | |
| 2014-09-14 | Fixed occasional selenium test failure on Jenkins with Chrome 36+. | Tim Graham | |
| Previously find_element_by_id('id_password') on the next line failed with NoSuchElementException and selenium.page_source was <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html>. Possibly related: https://code.google.com/p/selenium/issues/detail?id=1969. | |||
| 2014-08-14 | Fixed test failure on python 3.x. | Florian Apolloner | |
| 2014-08-13 | Fixed #18767 -- Fixed admin calendar for other locales than English. | Maxime Turcotte | |
| Refactored openCalendar function from DateTimeShortcuts.js. Now, when entered manually in the input field, the date will show up correctly on the calendar for locales that don't use "-" for separator. Thanks charettes for revivew and Alexey Boriskin for some of the patch. | |||
| 2014-08-12 | Fixed #23262 -- Made SelectFilter2.js move items on enter Key press. | Collin Anderson | |
| 2014-07-24 | Removed usage of deprecated switch_to_*() selenium methods. | Tim Graham | |
| 2014-07-09 | Fixed #19671 -- Added warnings that null and validators are ignored for ↵ | Anubhav Joshi | |
| ManyToManyField. Thanks Loic Bistuer and Tim Graham for help and review. | |||
| 2014-07-07 | Fixed #22909 -- Removed camelCasing in some tests. | Tim Graham | |
| Thanks brylie. | |||
| 2014-06-26 | Fixed #22894 -- Made admin add related/raw ID fields widgets customizable. | Riccardo Magliocchetti | |
| Decoupled behavior and style from the RelatedFieldWidgetWrapper and ForeignKeyRawIdWidget. | |||
