Re: Trivial tickets languishing with unreviewed status.

2009-02-05 Thread Jacob Kaplan-Moss
On Thu, Feb 5, 2009 at 5:47 PM, Tai Lee wrote: > I'd like to bring attention to several tickets that have been sitting > unreviewed for 3-5 months. I'm just about to head out, but if nobody else gets to these before tomorrow morning I'll review 'em then. Thanks! Jacob --~--~-~--~~

Trivial tickets languishing with unreviewed status.

2009-02-05 Thread Tai Lee
I'd like to bring attention to several tickets that have been sitting unreviewed for 3-5 months. Most are fairly trivial fixes for bugs and inconsistencies. Most have a patch and/or tests. I believe that all are backwards compatible. I'd really appreciate feedback from any core developers, or anot

Re: Filtering with respect to a related objects field

2009-02-05 Thread Alex Gaynor
On Thu, Feb 5, 2009 at 6:38 PM, Justin Bronn wrote: > > > Is there a way that default managers can be taken into > > consideration when filtering through related fields? I don't know > > exactly how this is supposed to work, is this the desired behavior? > > > > It's not a bug, it's a feature :)

Re: Filtering with respect to a related objects field

2009-02-05 Thread Justin Bronn
> Is there a way that default managers can be taken into > consideration when filtering through related fields?  I don't know > exactly how this is supposed to work, is this the desired behavior? > It's not a bug, it's a feature :) Specifically, it's an artifact from the 'fix' in #7666 -- fortuna

Re: Filtering with respect to a related objects field

2009-02-05 Thread Will Matos
You're not asking it to filter on the current site. Shouldn't you use : 'User.objects.filter (photos__name="photo_name").filter(photos__site__id=1)' - Original Message - From: django-developers@googlegroups.com To: Django developers Cc: evan.rei...@gmail.com Sent: Thu Feb 05 17:21:11

Re: Filtering with respect to a related objects field

2009-02-05 Thread Alex Gaynor
On Thu, Feb 5, 2009 at 5:21 PM, Stephen Sundell wrote: > > Say I have a model like this: > > class Photo(models.Model): >name = models.CharField(max_length=25) >user = models.ForeignKey(User,related_name='photos') >image = models.ImageField() >site = models.ForeignKey(Site,related_

Filtering with respect to a related objects field

2009-02-05 Thread Stephen Sundell
Say I have a model like this: class Photo(models.Model): name = models.CharField(max_length=25) user = models.ForeignKey(User,related_name='photos') image = models.ImageField() site = models.ForeignKey(Site,related_name='site_photos') objects = CurrentSiteManager() I've notic

Re: Option to disable messages in auth context processor

2009-02-05 Thread Jacob Kaplan-Moss
On Thu, Feb 5, 2009 at 9:01 AM, Vinicius Mendes wrote: > So I decided to write a new messages app and it works very well, the only > problem is the django.core.context_processors.auth. Yeah, this processor has a bunch of bugs in it. I think Malcolm and I figured out that there's something like f

Option to disable messages in auth context processor

2009-02-05 Thread Vinicius Mendes
Hi guys, I didn't like the messages buit-in contrib/auth application. That's becouse of two points: - It don't give the ability to send messages to anonymous users (I saw that it is one of the planned features for 1.1); - There's no way to distinguish the messages. For example: I like my success m