summaryrefslogtreecommitdiff
path: root/django/contrib
AgeCommit message (Collapse)Author
2015-10-21Fixed #25586 -- Fixed possible table cell misalignment in admin's tabular ↵Daniel Hahler
inlines. The table body (tbody) was shifted by one column to the left if the first inline form field is hidden.
2015-10-21Fixed #25580 -- Allowed `None` to be set as SRID value.Sergey Fedoseev
2015-10-19Fixed #25566 -- Added title to admin's closing popup response pageVille Skyttä
2015-10-19Fixed #25565 -- Removed action="" from admin forms (invalid in HTML5).Ville Skyttä
2015-10-17Fixed #25346 -- Allowed collectstatic to delete broken symlinks.Yusuke Miyazaki
2015-10-17Fixed #25558 -- Fixed nondeterministic test failure on Windows: ↵Brian Gianforcaro
test_clearsessions_command. The test session without an expiration date added in refs #22938 wasn't always deleted on Windows because get_expiry_age() returns zero and the file backend didn't consider that an expired session.
2015-10-10Fixed #24687 -- Added select_related() validation for nested non-relational ↵Tim Graham
fields. The removed test was added in the original select_related() validation patch (45d4e43d2d25b902e3821b612209afa951a8bcb8), but there doesn't seem to be any reason for it. Thanks Claude Paroz for help and review.
2015-10-10Pluralized translatable strings in password_validation.pyClaude Paroz
Forward port of 86dc4889f from master.
2015-10-10Simplified translatable string in admindocs templateClaude Paroz
Forward port of 60471c960 from stable/1.9.x.
2015-10-09Refs #25499 -- Fixed expressions in distance lookups on Oracle.Claude Paroz
2015-10-09Updated translation catalogsClaude Paroz
Forward port of f717cb2ab4 from stable/1.9.x.
2015-10-09Fixed #25533 -- Changed datatype mapping for GDALRastersDaniel Wiesmann
2015-10-09Fixed #25499 -- Added the ability to pass an expression in distance lookupsClaude Paroz
Thanks Bibhas Debnath for the report and Tim Graham for the review.
2015-10-03Fixed #22938 -- Allowed clearsessions to remove file-based sessions.Aleksandra Tarkowska
2015-10-03Upgraded OpenLayers version from 2.13 to 2.13.1Claude Paroz
Thanks Daniel Hahler for the initial patch.
2015-10-02Fixed #25490 -- Made the logout() view send "no-cache" headers.Kaleb Elwert
2015-10-02Refs #13637 -- Removed unused code in GenericRelatedObjectManagerTim Graham
Appears unused since 585b7acaa359fc1df07269c1a4b4756bdb6703f7.
2015-09-28Refs #16860 -- Fixed password help text when there aren't any validators.Antoine Catton
This avoids creating an empty list which is invalid HTML 4.
2015-09-26Used getattr() to simplify contrib.messages.api.Curtis Maloney
2015-09-25Used ternary operator to simplify contrib.messages.api.GhostThrone
2015-09-24Fixed #25457 -- Improved formatting of password validation errors in ↵Tzu-ping Chung
management command output.
2015-09-23Increased the default PBKDF2 iterations for the 1.10 release cycle.Tim Graham
2015-09-23Refs #24099 -- Removed compatibility shim for ContentType.name field.Tim Graham
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham
2015-09-23Refs #24152 -- Removed deprecated GeoQuerySet aggregate methods.Tim Graham
Per deprecation timeline.
2015-09-23Refs #21648 -- Removed is_admin_site option from password_reset() view.Tim Graham
Per deprecation timeline.
2015-09-23Refs #14030 -- Removed backwards compatiblity for old-style aggregates.Tim Graham
Per deprecation timeline.
2015-09-23Refs #23444 -- Removed InlineAdminForm.original_content_type_id per ↵Tim Graham
deprecation timeline.
2015-09-23Refs #22789 -- Removed contrib.webdesign per deprecation timeline.Tim Graham
2015-09-23Fixed #25378 -- Improved tab through experience in admin.Ryan Allen
2015-09-23Fixed #25448 -- Eased GISLookup subclassing with custom lookupsClaude Paroz
When someone needs to build a custom backend-specific GIS lookup, it is much easier done if getting the spatial operator class happens in a dedicated method (no need to rewrite the entire as_sql() method).
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-09-21Renamed descriptor classes for related objects.Aymeric Augustin
The old names were downright confusing. Some seemed to mean the opposite of what the class actually did. The new names follow a consistent nomenclature: (Forward|Reverse)(ManyToOne|OneToOne|ManyToMany)Descriptor. I mentioned combinations that do not exist in the docstring in order to help people who would search for them in the code base.
2015-09-21Fixed #15760 -- Added JavaScript events for admin inline forms.ramez
2015-09-21Fixed #24688 -- Added Oracle support for new-style GIS functions.Jani Tiainen
2015-09-21Fixed #24629 -- Unified Transform and Expression APIsJosh Smeaton
2015-09-18Fixed #24944 -- Added extra_email_context parameter to password_reset() view.sujayskumar
2015-09-18Fixed #13110 -- Added support for multiple enclosures in Atom feeds.Unai Zalakain
The ``item_enclosures`` hook returns a list of ``Enclosure`` objects which is then used by the feed builder. If the feed is a RSS feed, an exception is raised as RSS feeds don't allow multiple enclosures per feed item. The ``item_enclosures`` hook defaults to an empty list or, if the ``item_enclosure_url`` hook is defined, to a list with a single ``Enclosure`` built from the ``item_enclosure_url``, ``item_enclosure_length``, and ``item_enclosure_mime_type`` hooks.
2015-09-17Fixed #25400 -- Fixed regression in nonexistent features on gis backends.Daniel Hahler
2015-09-16Refs #25294 -- Moved BoundField to django.forms.boundfield.Moritz Sichert
2015-09-16Refs #25149 -- Fixed regression in admin datetime widget for timezones on ↵Gavin Wahl
the negative side of UTC.
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-09-11Fixed #25374 -- Made ModelAdmin checks work on instances instead of classes.Malcolm Box
This allows dynamically-generated attributes to be specified in checked ModelAdmin attributes without triggering errors.
2015-09-08Fixed #25135 -- Deprecated the contrib.admin allow_tags attribute.Ola Sitarska
Thanks Jaap Roes for the idea and initial patch.
2015-09-08Fixed #25350 -- Added alias --no-input for --noinput to management commands.Raphael Michel
2015-09-07Fixed #24917 -- Made admindocs display model methods that take arguments.Zan Anderle
2015-09-07Fixed #25365 -- Fixed visual issues in filter_vertical widget introduced by ↵elky
SVG icons commit.
2015-09-07Fixed #11544 -- Removed !important rules in contrib.admin styles.elky
2015-09-04Fixed #25353 -- Changed LogEntry.action_time to a "date created".Tim Graham
2015-09-04Removed unused CSS in contrib.admin.elky
The corresponding HTML was removed in 738d9af1e8e38b0289b7dfa7c8a5413f5d0e20d1.