Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/admin_views
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #13165 -- Added edit and delete links to admin ↵Simon Charette2015-01-103-15/+121
| | | | | | | foreign key widgets. Thanks to Collin Anderson for the review and suggestions and Tim for the final review.
* Fixed #24101 -- Fixed flaky admin_views selenium tests; ↵Tim Graham2015-01-081-0/+2
| | | | refs #7361.
* Fixed #22295 -- Replaced permission check for displaying ↵Thomas Tanner2014-12-314-1/+85
| | | | admin user-tools
* Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin2014-12-281-9/+19
|
* Deprecated TEMPLATE_DIRS.Aymeric Augustin2014-12-281-3/+19
|
* Moved context_processors from django.core to ↵Aymeric Augustin2014-12-281-1/+1
| | | | django.template.
* Fixed #23995 -- Removed unnecessary calls to ↵Diego Guimarães2014-12-161-91/+0
| | | | self.client.logout() in tests.
* Refs #23947 -- Fixed admin_views test execution order ↵Diego Guimarães2014-12-151-2/+2
| | | | dependency.
* Fixed #23857 -- Fixed admin crash with "save as new" and ↵Tim Graham2014-12-121-0/+17
| | | | | | deleting inline. Thanks amarandon for the report.
* Fixed template tag braces spacing.Kevin Marsh2014-12-121-1/+1
|
* Fixed #23934 -- Fixed regression in admin views obj ↵Kamil Braun2014-12-023-2/+83
| | | | parameter.
* Fixed admin_views test from refs #7361 (name was too long).Tim Graham2014-12-011-2/+2
|
* Fixed #17890 -- Added an extra_context parameter to ↵Berker Peksag2014-11-292-0/+9
| | | | AdminSite.password_change().
* Fixed cache state dependence for assertNumQueries in ↵wrwrwr2014-11-271-0/+4
| | | | | | test_group_permission_performance. Refs #20432 and #23746.
* Fixed #23915 -- Made sure m2m fields through non-pk ↵Simon Charette2014-11-252-11/+13
| | | | | | to_field are allowed in the admin. refs #23754, #23862
* Fixed #23754 -- Always allowed reference to the primary ↵Simon Charette2014-11-253-20/+30
| | | | | | | | | | | key in the admin This change allows dynamically created inlines "Add related" button to work correcly as long as their associated foreign key is pointing to the primary key of the related model. Thanks to amorce for the report, Julien Phalip for the initial patch, and Collin Anderson for the review.
* Fixed #23898 -- Added missing context to admin's ↵Redouane Zait2014-11-251-0/+1
| | | | | | deleted_selected view. Thanks Redouane Zait for the report.
* Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-041-4/+4
|
* Fixed #23620 -- Used more specific assertions in the ↵Berker Peksag2014-11-031-5/+5
| | | | Django test suite.
* Moved a test case that caused deprecation warnings.Loic Bistuer2014-10-191-0/+16
| | | | | | | `cache.tests.TestEtagWithAdmin` loaded views from the `admin_views` test package. This is problematic because when the `cache` test package is run in isolation, `admin_views` isn't in INSTALLED_APPS, and therefore loading its models isn't allowed since the app loading refactor.
* Fixed #21196 -- Removed index on test field causing ↵Thomas Chaumeny2014-10-191-1/+2
| | | | MySQL specific warning.
* Fixed #23604 -- Allowed related m2m fields to be ↵Emmanuelle Delescolle2014-10-063-1/+16
| | | | | | references in the admin. Thanks Simon Charette for review.
* Fixed #7361 -- Added cancel link to admin delete views.Nick Sandford2014-09-301-0/+31
|
* Fixed #8408 -- Added ModelAdmin.show_full_result_count ↵Thomas Chaumeny2014-09-262-1/+19
| | | | | | to avoid COUNT() query. Thanks lidaobing for the suggestion.
* Fixed #23431 -- Allowed inline and hidden references to ↵Simon Charette2014-09-083-2/+31
| | | | | | | | | | admin fields. This fixes a regression introduced by the 53ff096982 security fix. Thanks to @a1tus for the report and Tim for the review. refs #23329.
* Fixed #23329 -- Allowed inherited and m2m fields to be ↵Simon Charette2014-08-283-1/+31
| | | | | | referenced in the admin. Thanks to Trac alias Markush2010 and ross for the detailed reports.
* Fixed #13749 -- Added link from admin site to front-end ↵areski2014-08-272-0/+10
| | | | | | site. Thanks romankrv for the suggestion.
* Prevented data leakage in contrib.admin via query string ↵Simon Charette2014-08-201-3/+33
| | | | | | manipulation. This is a security fix. Disclosure following shortly.
* Fixed #20133 -- Added summary to admin deletion ↵areski2014-08-141-0/+8
| | | | | | confirmation pages. Thanks jonash for the suggestion and initial patch.
* Removed usage of deprecated switch_to_*() selenium methods.Tim Graham2014-07-241-2/+2
|
* Fixed #22994 -- regression with generic FK + admin list_viewAnssi Kääriäinen2014-07-142-2/+22
| | | | | | | | | | | | The reason for the regression was that the GenericForeignKey field isn't something meta.get_field_by_name() should return. The reason is that a couple of places in Django expects get_field_by_name() to work this way. It could make sense to return GFKs from get_field_by_name(), but that should likely be done as part of meta refactoring or virtual fields refactoring patches. Thanks to glicerinu@gmail.com for the report and to Tim for working on the issue.
* Fixed #22939 -- Delayed admin_static backend detectionClaude Paroz2014-07-121-0/+14
| | | | Thanks generalov for the report.
* Fixed #22223 -- Prevented over-escaping URLs in reverse()Claude Paroz2014-07-091-6/+6
| | | | | | | And follow more closely the class of characters defined in the RFC 3986. Thanks Erik van Zijst for the report and the initial patch, and Tim Graham for the review.
* Fixed #22909 -- Removed camelCasing in some tests.Tim Graham2014-07-081-75/+75
| | | | Thanks brylie.
* Fixed #22894 -- Made admin add related/raw ID fields ↵Riccardo Magliocchetti2014-06-261-1/+1
| | | | | | | widgets customizable. Decoupled behavior and style from the RelatedFieldWidgetWrapper and ForeignKeyRawIdWidget.
* Removed some apps from ALWAYS_INSTALLED_APPSClaude Paroz2014-06-211-2/+4
|
* Fixed #6327 -- Added has_module_permission method to ↵Maxime Turcotte2014-06-133-0/+73
| | | | | | BaseModelAdmin Thanks chrj for the suggestion.
* Fixed #22653 -- Added some database feature flags to tests.Tim Graham2014-06-111-1/+2
| | | | Thanks Rahul Priyadarshi.
* Removed unused import.Tim Graham2014-06-101-1/+0
|
* Fixed #20420 -- Normalized query counts on Oracle.Aymeric Augustin2014-06-091-11/+2
| | | | | | | | 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.
* Fixed #11776 -- Added CSS class for non-field/top of ↵Nick Presta2014-06-021-2/+2
| | | | | | form errors. Thanks Daniel Pope for the suggestion.
* Fixed several typos in DjangoAlex Gaynor2014-05-291-1/+1
|
* Fixed #22266 - quote PK before redirecting away from ↵Stas Rudakou2014-05-161-0/+24
| | | | add_view (django.contrib.admin)
* Harmonized some PEP 0263 coding preamblesClaude Paroz2014-05-151-1/+1
|
* Replaced vendor checks by three feature flags.Aymeric Augustin2014-05-081-4/+2
|
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-262-4/+4
|
* Fixed #22499 -- Fixed a typo in an admin_views test that ↵Tim Graham2014-04-241-2/+2
| | | | caused failure on Oracle.
* Fixed #21084 -- Used proxy model's content type for ↵Alejandro Gómez2014-04-071-1/+33
| | | | admin log entries.
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-77/+75
|
* Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham2014-04-033-17/+17
| | | | Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.