Re: removing "milestone" field in Trac

2011-09-19 Thread Jacob Kaplan-Moss
On Mon, Sep 19, 2011 at 9:16 PM, Carl Meyer wrote: > The milestone field came up again in IRC discussion tonight between > Julien and Paul and I -- namely, that it doesn't seem all that useful > and causes noise in Trac. I agree. I think the "release blocker" flag basically replaces the milestone

Re: removing "milestone" field in Trac

2011-09-19 Thread Russell Keith-Magee
On Tue, Sep 20, 2011 at 10:16 AM, Carl Meyer wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi all, > > The milestone field came up again in IRC discussion tonight between > Julien and Paul and I -- namely, that it doesn't seem all that useful > and causes noise in Trac. > > It might

removing "milestone" field in Trac

2011-09-19 Thread Carl Meyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, The milestone field came up again in IRC discussion tonight between Julien and Paul and I -- namely, that it doesn't seem all that useful and causes noise in Trac. It might have made sense back when we had more feature-driven releases and a f

Re: new feature idea: even and odd forloop iteration variables

2011-09-19 Thread Travis Swicegood
Hey Karlis; This is a cool idea. I don't do enough template work to always remember the cycle syntax, but an odd/even is pretty simple to remember. As for getting this into Django, check out the Contributing Docs[1]. It has everything you need on how to help out. In particular the Requesting N

Re: new feature idea: even and odd forloop iteration variables

2011-09-19 Thread Jonas H.
On 09/19/2011 12:58 PM, skazhy wrote: Hi all! I've been working with Django for a while now, but today I decided to make a first contribution to Django that would make templates less ugly by adding these two values to loop_dict (in django/template/ defaulttags.py): loop_dict['even'] = (i %2 ==

Re: Postgress array types

2011-09-19 Thread Karen Tracey
Please don't crosspost to both django-users and django-developers: pick the right list and post there. The right place for this question was django-users. Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send em

Postgress array types

2011-09-19 Thread Arihant
How can i store Postgress array types in Django models -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers

new feature idea: even and odd forloop iteration variables

2011-09-19 Thread skazhy
Hi all! I've been working with Django for a while now, but today I decided to make a first contribution to Django that would make templates less ugly by adding these two values to loop_dict (in django/template/ defaulttags.py): loop_dict['even'] = (i %2 == 0) loop_dict['odd'] = (i %2 != 0) Using