Opened 15 years ago

Closed 11 years ago

#10720 closed New feature (wontfix)

OrderedManyToMany API Implementation

Reported by: Aryeh Leib Taurog <vim@…> Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Normal Keywords: Ordered ManyToMany
Cc: gregor@… Triage Stage: Design decision needed
Has patch: yes Needs documentation: yes
Needs tests: yes Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In response to my post on django-users, Russ Magee suggested I open a ticket.
http://groups.google.com/group/django-users/browse_frm/thread/2593060c8f3958ed#

This patch uses the standard python list interface to provide a very simple
API for keeping a singly-ordered many-to-many relation field.

More info, plus a simple example and unit-tests here:

http://www.aryehleib.com/MutableLists.html

Attachments (1)

patch_for_django_rev-10131.diff (25.3 KB ) - added by Aryeh Leib Taurog <vim@…> 15 years ago.
Provides OrderedManyToManyField with convenient API

Download all attachments as: .zip

Change History (8)

by Aryeh Leib Taurog <vim@…>, 15 years ago

Provides OrderedManyToManyField with convenient API

comment:1 by Dennis Kaarsemaker, 15 years ago

Needs documentation: set
Needs tests: set

comment:2 by Alex Gaynor, 15 years ago

Triage Stage: UnreviewedDesign decision needed

comment:3 by Gregor Müllegger, 14 years ago

Cc: gregor@… added

I have implemented an ordered m2m relation in a reusable app. Its not exactly the same approach you wanted to take like you described in your blog post but maybe a starting point.

Have a look here: http://pypi.python.org/pypi?:action=display&name=django-sortedm2m&version=0.1.1

Or start hacking and make the API the way you want by branching the code from launchpad:

bzr branch lp:django-sorted-m2m-field

comment:4 by Chris Beaven, 13 years ago

Severity: Normal
Type: New feature

comment:5 by Aymeric Augustin, 12 years ago

UI/UX: unset

Change UI/UX from NULL to False.

comment:6 by Aymeric Augustin, 12 years ago

Easy pickings: unset

Change Easy pickings from NULL to False.

comment:7 by Anssi Kääriäinen, 11 years ago

Resolution: wontfix
Status: newclosed

This can be implemented externally, and the demand isn't big enough to include this in core. This doesn't seem to be something that most projects need.

Closing as wontfix.

Note: See TracTickets for help on using tickets.
Back to Top