Opened 12 years ago

Closed 10 years ago

#17556 closed New feature (duplicate)

Let Media classes to inherit

Reported by: Aleksander Zdyb Owned by: nobody
Component: Forms Version: dev
Severity: Normal Keywords: forms media
Cc: d1fffuz0r@… Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Media classes in ModelAdmin or Form cannot inherit from other classes:

class BaseMedia:
    css = {"all": ["base.css", ] }

class ExampleAdmin(ModelAdmin):
    class Media(BaseMedia):
        js = ["example.js, ]    

In the example above, only js media will be available. This is because of the following code in django/forms/widgets.py:

class Media(StrAndUnicode):
    def __init__(self, media=None, **kwargs):
        if media:
            media_attrs = media.__dict__
        else:
            media_attrs = kwargs

__dict__ doesn't include inherited properties.

My proposal is to use getmembers from inspect module:

media_attrs = dict(getmembers(media))

I've attached a 2-lines patch. All unit tests passed against revision 17377.

Attachments (2)

media_inherit.diff (664 bytes ) - added by Aleksander Zdyb 12 years ago.
media_inherit.2.patch (1.7 KB ) - added by Roman Gladkov 11 years ago.

Download all attachments as: .zip

Change History (6)

by Aleksander Zdyb, 12 years ago

Attachment: media_inherit.diff added

comment:1 by Łukasz Rekucki, 12 years ago

Needs tests: set
Triage Stage: UnreviewedAccepted

The patch needs tests.

by Roman Gladkov, 11 years ago

Attachment: media_inherit.2.patch added

comment:2 by Roman Gladkov, 11 years ago

Cc: d1fffuz0r@… added
Easy pickings: unset
Needs tests: unset

test for this patch

Last edited 11 years ago by Roman Gladkov (previous) (diff)

comment:3 by Aymeric Augustin, 10 years ago

This is a duplicate of #9357.

comment:4 by Simon Charette, 10 years ago

Resolution: duplicate
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top