Re: broken pipe issue with runserver #4444

2012-12-19 Thread Anssi Kääriäinen
On 18 joulu, 19:56, Julien Phalip wrote: > On Dec 18, 2012, at 5:18 AM, Emil Stenström wrote: > > > On Monday, 2 June 2008 02:45:07 UTC+2, Ludvig Ericson wrote: > > I'd rather see this be leaved as-is, since I haven't seen a single > > report on these broken pipe

First request - Modify django.core.management.color with settings option

2012-12-19 Thread Steven Klass
Hi all, I know a number of us use PyCharm/Eclipse for Django development. As such the interpreters run `./manage.py runserver` directly from within the IDE. The problem is that when using this approach sys.stdout does not have the method `isatty()`. attached to is. This results in no color

Re: First request - Modify django.core.management.color with settings option

2012-12-19 Thread Florian Apolloner
I dislike a setting for this, an optional environment variable would make more sense imo (since you usually don't want to set this for one project but all…). Cheers, Florian -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this

Re: First request - Modify django.core.management.color with settings option

2012-12-19 Thread Alex Gaynor
I too think a setting is inappropriate for this, I'm also a little skeptical of an env var, is this not a bug with PyCharm? Alex On Wed, Dec 19, 2012 at 1:08 PM, Florian Apolloner wrote: > I dislike a setting for this, an optional environment variable would make > more

e-mail changed to email in email validator

2012-12-19 Thread Skylar Saveland
I checked out 1.5 branch today and found a change that I can't find the debate/announcement for: e-mail to email in django/core/validators.py:validate_email = EmailValidator(email_re, _('Enter a valid email address.'), 'invalid') This change has me with # in 1.4.x it is:

Re: e-mail changed to email in email validator

2012-12-19 Thread Mark Lavin
This was changed as part of https://code.djangoproject.com/ticket/17899 Best, Mark On Wednesday, December 19, 2012 4:23:24 PM UTC-5, Skylar Saveland wrote: > > I checked out 1.5 branch today and found a change that I can't find the > debate/announcement for: e-mail to email in > >

Re: First request - Modify django.core.management.color with settings option

2012-12-19 Thread Alex Ogier
Well, most GNU command line utilities have an option --color=always|auto|never that defaults to auto. Seems like it works for them, so replicating it for management commands makes more sense than an environment variable to me. Best, Alex Ogier On Wed, Dec 19, 2012 at 4:09 PM, Alex Gaynor

Re: e-mail changed to email in email validator

2012-12-19 Thread Russell Keith-Magee
On Thu, Dec 20, 2012 at 5:23 AM, Skylar Saveland wrote: > I checked out 1.5 branch today and found a change that I can't find the > debate/announcement for: e-mail to email in > > django/core/validators.py:validate_email = EmailValidator(email_re, > _('Enter a valid

Re: First request - Modify django.core.management.color with settings option

2012-12-19 Thread Russell Keith-Magee
Agreed - a --color command line flag makes more sense to me, and a lot more sense than a setting. I *might* be able to be convinced about an environment variable too (since the environment variable DJANGO_COLORS is already used to set the palette), but frankly, Alex Gaynor's argument about this

Re: e-mail changed to email in email validator

2012-12-19 Thread Skylar Saveland
right-0, thanks guys. I must be getting old- I remember the style guidelines saying hyphen and thinking the hyphen was a little weird :) Cheers! On Wednesday, December 19, 2012 1:33:09 PM UTC-8, Mark Lavin wrote: > > This was changed as part of https://code.djangoproject.com/ticket/17899 > >