Re: The greatest proposal yet: rename this damn group

2014-09-18 Thread Russell Keith-Magee
On Fri, Sep 19, 2014 at 5:39 AM, Wim Feijen wrote: > Hi Russell, > > Is this an issue we should solve? > > Because I believe technology can help here. For example, by posing a > question when a user is creating a ticket. Ask if it deals with security; > then present two clear buttons: "Report a s

Re: The greatest proposal yet: rename this damn group

2014-09-18 Thread Russell Keith-Magee
Hi Wim, My apologies, this slipped through the cracks in my "returning from DjangoCon US/annual post DjangoCon sickness" window. I've just mailed this to the group for a decision. Yours, Russ Magee %-) On Fri, Sep 19, 2014 at 5:31 AM, Wim Feijen wrote: > Hi Russell, > > Did you manage to speak

Re: The greatest proposal yet: rename this damn group

2014-09-18 Thread Wim Feijen
Hi Russell, Is this an issue we should solve? Because I believe technology can help here. For example, by posing a question when a user is creating a ticket. Ask if it deals with security; then present two clear buttons: "Report a security issue" or "Report something else". (There might be be

Re: Loading timezone naive data into your test database with USE_TZ = True

2014-09-18 Thread Carl Meyer
Hi Robert, On Tuesday, September 16, 2014 5:54:13 PM UTC-6, Robert Rollins wrote: > > I have a legacy database from which my Django application must migrate > data into a Django database. The relevant dates fields are actually > TIMESTAMP columns in the database, but something (perhaps Django, o

Re: The greatest proposal yet: rename this damn group

2014-09-18 Thread Wim Feijen
Hi Russell, Did you manage to speak to the technical board about renaming the group? Wim On Tuesday, 9 September 2014 03:49:21 UTC+2, Russell Keith-Magee wrote: > > > On Mon, Sep 8, 2014 at 11:24 PM, Carl Meyer > wrote: > >> On 09/08/2014 08:56 AM, Aymeric Augustin wrote: >> > 2014-09-08 16:21

Re: Loading timezone naive data into your test database with USE_TZ = True

2014-09-18 Thread Wim Feijen
Hi Robert, Timezones confuse me, maybe Aymeric can answer this one if he has time? Off topic, your question might be a better fit for the django-users mailing list, but perhaps you posted to django-developers intentionally, because you are thinking of a bug report? Wim On Wednesday, 17 Sept

Re: Should reverse() return a Unicode string?

2014-09-18 Thread Wim Feijen
Please do. :) - Wim On Thursday, 18 September 2014 22:01:21 UTC+2, Jon Dufresne wrote: > > What do you think? If others agree, I can file a bug and create a pull > request to fix this. > > -- You received this message because you are subscribed to the Google Groups "Django developers" gro

Re: Should reverse() return a Unicode string?

2014-09-18 Thread Carl Meyer
Hi Jon, On 09/18/2014 02:01 PM, Jon Dufresne wrote: > In my Django application, I'm making a strong attempt to always deal > with Unicode strings at the application layer. Byte strings are only > handled at the protocol layer -- sending data out on the "wire". If my > application tests if an objec

Should reverse() return a Unicode string?

2014-09-18 Thread Jon Dufresne
Hi, In my Django application, I'm making a strong attempt to always deal with Unicode strings at the application layer. Byte strings are only handled at the protocol layer -- sending data out on the "wire". If my application tests if an object is a string, I'll use isinstance(obj, unicode) (Python

Re: Fwd: Django 1.7 polymorphism error

2014-09-18 Thread Thiago Avelino
Without PolymorphicModel he's the same error! I'll write an example... Cheers, Thiago Avelino @avelino0 - avelino.xxx On Thu, Sep 18, 2014 at 12:11 PM, Carl Meyer wrote: > Hi Thiago, > > On 09/18/2014 08:51 AM, Thiago Avelino wrote: > > I think I found a error p

Re: Fwd: Django 1.7 polymorphism error

2014-09-18 Thread Carl Meyer
Hi Thiago, On 09/18/2014 08:51 AM, Thiago Avelino wrote: > I think I found a error polymorphism in django 1.7, field slug exist in > _meta.fields and run filter return error "FieldError: Cannot resolve > keyword 'slug' into field. Choices". > > Example: https://gist.github.com/avelino/793bdaf9f97

Fwd: Django 1.7 polymorphism error

2014-09-18 Thread Thiago Avelino
Hi guys! I think I found a error polymorphism in django 1.7, field slug exist in _meta.fields and run filter return error "FieldError: Cannot resolve keyword 'slug' into field. Choices". Example: https://gist.github.com/avelino/793bdaf9f9732314912a Slugged (abstract): https://github.com/opps/op