Re: [GSoC] Revamping validation framework and merging django-secure once again

2013-07-24 Thread Russell Keith-Magee
Hi Shai, Could I get you to open this as a ticket so that it isn't forgotten? Russ %-) On Thu, Jul 25, 2013 at 8:12 AM, Shai Berger wrote: > Hi Christopher, > > While you're dealing with model validation, I wonder if you can take a > look at > this little example -- a minor failure in the curr

Re: [GSoC] Revamping validation framework and merging django-secure once again

2013-07-24 Thread Shai Berger
Hi Christopher, While you're dealing with model validation, I wonder if you can take a look at this little example -- a minor failure in the current model validation: class General(models.Model): name = models.CharField(max_length=30) class Special(General): pass cl

RE: Custom Chainable QuerySets (#20625)

2013-07-24 Thread Kääriäinen Anssi
Same pull request at https://github.com/django/django/pull/1328. Seems like it is still getting some review & update activity. I am planning on doing a final review on commit, but judging by the amount of reviews done already I think this one will be very polished by Friday.

Re: Custom Chainable QuerySets (#20625)

2013-07-24 Thread Aymeric Augustin
On 24 juil. 2013, at 13:53, Anssi Kääriäinen wrote: > I will commit the patch on Friday. If somebody wants more time to review the > patch, just ask and I will defer the commit to later date. Where's the version of the patch you're ready to commit? -- Aymeric. -- You received this messag

Re: Custom Chainable QuerySets (#20625)

2013-07-24 Thread Anssi Kääriäinen
On Tuesday, July 23, 2013 12:39:13 PM UTC+3, Loic Bistuer wrote: > > I thought of a third option that I think strikes the right balance between > convenience and flexibility. > > Please see the following comment: > > https://github.com/django/django/pull/1328#issuecomment-21400832 > > I will go

Re: Deprecate FCGI support in Django 1.7

2013-07-24 Thread Tom Evans
On Sun, Jul 21, 2013 at 8:28 AM, Some Developer wrote: > On 21/07/2013 05:08, Curtis Maloney wrote: >> >> I wasn't aware there was a particular performance issue, but I'll >> certainly keep it in mind. > > > Take a look at this: > > http://www.peterbe.com/plog/fcgi-vs-gunicorn-vs-uwsgi > > I've pr

Re: manage.py and pyc's

2013-07-24 Thread mjl Martin J. Laubach
Well, the sneaky workaround would probably be to ship a totally simple management/commands/foo_command.py that does nothing more than "from only_as_pyc import *". Would that work for your use case? mjl -- You received this message because you are subscribed to the Google Groups "Dja