summaryrefslogtreecommitdiff
path: root/django/contrib
AgeCommit message (Collapse)Author
2014-09-08Fixed #23431 -- Allowed inline and hidden references to admin fields.Simon Charette
This fixes a regression introduced by the 53ff096982 security fix. Thanks to @a1tus for the report and Tim for the review. refs #23329.
2014-09-06Additional edits for refs #23340; thanks Loic.Tim Graham
2014-09-06Fixed #23340 -- Corrected naturaltime docs to match behavior.Collin Anderson
Thanks zachborboa for the report and blackguest for the patch.
2014-09-05Fixed #22411: Throw a more helpful error if contenttypes doesn't exist.Andrew Godwin
2014-09-05Limited lines to 119 characters in django/Tim Graham
refs #23395.
2014-09-03Fixed #18757, #14462, #21565 -- Reworked database-python type conversionsMarc Tamlyn
Complete rework of translating data values from database Deprecation of SubfieldBase, removal of resolve_columns and convert_values in favour of a more general converter based approach and public API Field.from_db_value(). Now works seamlessly with aggregation, .values() and raw queries. Thanks to akaariai in particular for extensive advice and inspiration, also to shaib, manfre and timograham for their reviews.
2014-09-03Fixed #23409 -- Extract PasswordResetForm.get_users method.Carl Meyer
Allows easier customization of policies regarding which users are allowed to reset their password. Thanks Aymeric for review.
2014-09-02Fixed ping_google management command to use argparse.R3v1L
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-29Fixed a non-deterministic test; refs #23099.Tim Graham
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-27Removed an unused import.Simon Charette
2014-08-27Fixed #13749 -- Added link from admin site to front-end site.areski
Thanks romankrv for the suggestion.
2014-08-26Removed some more hardcoded backends in GIS testsClaude Paroz
Refs #22632. Thanks Tim Graham for the review.
2014-08-26Fixed #23075 -- Added documentation on novalidate attribute and made it ↵Erik Romijn
default for admin Thanks to sehmaschine for the report and to Tim Graham for the review.
2014-08-24Fixed #23355 -- Updated admin jQuery to 1.11.1.Tim Graham
2014-08-23Fixed #21648 -- Deprecated is_admin_site option to auth.views.password_reset().Tim Graham
2014-08-23Replaced no_mysql by connection featuresClaude Paroz
Refs #22632. Thanks Tim Graham for the review.
2014-08-23Replaced no_spatialite by connection featuresClaude Paroz
Refs #22632. Thanks Tim Graham for the review.
2014-08-23Replaced HAS_SPATIALREFSYS by a database featureClaude Paroz
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 #23066 -- Modified RemoteUserMiddleware to logout on REMOTE_USER change.Preston Holmes
This is a security fix. Disclosure following shortly.
2014-08-20Fetched translations from TransifexClaude Paroz
Forward port of 49280a73ea5 from stable/1.7.x
2014-08-19Removed unnecessary code-block directives.areski
2014-08-19Removed unused imports.Tim Graham
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-16Stopped skipping GIS forms tests on MySQLClaude Paroz
2014-08-15Fixed #23294 -- Add related_name to existing migrations.Collin Anderson
Thanks to Florian Apolloner for the review; refs #23288.
2014-08-15Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed().Gabriel Muñumel
2014-08-15Complemented 1.6 release notes for 457c16d0d6Claude Paroz
And accessorily added missing bits fixing #23293. Forward port of 2cbafd814 from stable/1.7.x
2014-08-14Fixed #20133 -- Added summary to admin deletion confirmation pages.areski
Thanks jonash for the suggestion and initial patch.
2014-08-14Fixed #21132 -- Removed the useless app_name argument to AdminSite.Tim Graham
Thanks MarkusH for the report and Florian for review.
2014-08-13Fixed #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-13Removed tabs from an admin CSS file.Trey Hunner
2014-08-13Simplified admin delete confirmation templates using {% elif %}.areski
Thanks jonash for the initial patch; refs #20133.
2014-08-12Added newlines to the ends of CSS, HTML, and JavaScript files missing them.Trey Hunner
2014-08-12Fixed #23262 -- Made SelectFilter2.js move items on enter Key press.Collin Anderson
2014-08-12Fixed #23276 -- Deprecated passing views as strings to url().Tim Graham
2014-08-10Fixed remove_field for spatialite schema changes.Florian Apolloner
2014-08-08Fixed a non-deterministic test; refs #23099.Tim Graham
2014-08-08Fixed #23099 -- Removed usage of deprecated initial data in Django's test suite.Tim Graham
Thanks Claude Paroz for assistance with debugging the tests.
2014-08-07Fixed #22982 -- Added GenericRelatedObjectManager.__str__. to prevent crash.Jacob Haslehurst
Thanks bendavis78 for the report. Forwardport of 29585e9b6a from stable/1.7.x
2014-08-05Stop errors on older Spatialite versions that miss some tablesAndrew Godwin
2014-08-04Fixed #16311 -- Added a RelatedOnlyFieldListFilter class in admin.filters.Stanislas Guerra
2014-08-04Fixed #23161: Drop PostGIS geography fields correctlyAndrew Godwin
2014-08-04Fixed #23163: Align user help text with migrationsAndrew Godwin
2014-08-04Fixed #23153: Properly recreate spatialite triggers on alter tableAndrew Godwin
2014-08-03Fixed #23151 -- Deprecated RegexField.error_message.Tim Graham
Thanks Baptiste Mispelon for the suggestion.
2014-08-01Fixed #7220 -- Allowed AbstractBaseUser.last_login to be null.Tim Graham
Thanks veena for the suggestion and Simon Charette and Kévin Etienne for reviews.