Re: [Future feature?] Viewsets

2013-01-27 Thread Amirouche B.
> > What's in common between multiviews, composite, and viewsets: > >- Views are grouped in a class. >- Each view is tied to an URL pattern. >- All URL patterns of a group of views are accessible using nearly the >same syntax: GroupOfViews.urls() for multiviews, url('', >incl

Re: A New Django Release Cycle

2013-01-27 Thread Carlos Ribeiro
On Sun, Jan 27, 2013 at 11:03 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > Please don't take me wrong, but most of the times this is caused by the > very lack of modularity that I mentioned. If removing a feature causes > subtle regressions, is either because the patch touches too m

Re: A New Django Release Cycle

2013-01-27 Thread Russell Keith-Magee
On Mon, Jan 28, 2013 at 7:49 AM, Carlos Ribeiro wrote: > On Sun, Jan 27, 2013 at 9:26 PM, Aymeric Augustin < > aymeric.augus...@polytechnique.org> wrote: > >> There isn't any corporate backing behind Django and no one gets paid to >> make releases happens. Besides, active contributors are comforta

Re: A New Django Release Cycle

2013-01-27 Thread Carlos Ribeiro
On Sun, Jan 27, 2013 at 9:26 PM, Aymeric Augustin < aymeric.augus...@polytechnique.org> wrote: > There isn't any corporate backing behind Django and no one gets paid to > make releases happens. Besides, active contributors are comfortable with > running on master. As a consequence, the incentive f

Re: A New Django Release Cycle

2013-01-27 Thread Aymeric Augustin
Le 25 janv. 2013 à 11:59, Abdullah Esmail a écrit : > I realize that it's hard to follow a release schedule like this especially > for open source software, but I believe it's very doable. I agree that it should be doable in theory, and I strongly support predictable schedules. Obviously, in

Re: A New Django Release Cycle

2013-01-27 Thread Carlos Ribeiro
Russell, New to the list (but using Django since 0.96). Got this thread today while searching on more information about the 1.5 delay. BTW, the blog post is ok, but could be a little bit more informative as for the reasons behind the delay. I believe that Abdullah proposal has some merit. The

Re: Allow disabling choices in a

2013-01-27 Thread Kit Sunde
It's a bit unexpected that disabled_choices isa frozenset in the patch when choices is a list. Since disabled_choices is a subset of choices, it should be whatever choices is, and it's somewhat common to change choices after init it should be expected that disabled_choices also change. On Frid