Re: New Release of IBM_DB_DJANGO (1.0.4)

2012-05-22 Thread Mario Briggs
>> On May 23, 3:07 am, Anssi Kääriäinen wrote: > On May 23, 12:35 am, "Daniel Sokolowski" If there is need and interest for similar work for DB2 I am > willing to commit patches... > Anssi, thank you very much for the offer. We (IBM_DB_DJANGO team) will certainly reach out to you if we are in ne

Re: Multi-tenant Django

2012-05-22 Thread Anthony Briggs
I did a similar thing for some of my projects - the problem is that you can't reuse any non-multitenant apps without hacking the multitenant stuff in first, ie. it's a bit of a hack, plus it makes things harder to maintain going forwards. One database per tenant should (in theory) make life much s

Re: New Release of IBM_DB_DJANGO (1.0.4)

2012-05-22 Thread Ian Kelly
On Tue, May 22, 2012 at 4:07 PM, Anssi Kääriäinen wrote: > I don't know about licensing... I believe the issue is that we don't > have enough manpower to keep more backends updated in core. Even now > the Oracle backend is somewhat problematic - there aren't that many > contributors (or committers

Re: New Release of IBM_DB_DJANGO (1.0.4)

2012-05-22 Thread Anssi Kääriäinen
On May 23, 12:35 am, "Daniel Sokolowski" wrote: > Is it a licensing issue that this is not included in core? I don't know about licensing... I believe the issue is that we don't have enough manpower to keep more backends updated in core. Even now the Oracle backend is somewhat problematic - there

Re: Django git guidelines

2012-05-22 Thread Anssi Kääriäinen
On May 22, 11:54 pm, Alex Ogier wrote: > On Tue, May 22, 2012 at 4:34 PM, Richard Laager wrote: > > On Tue, 2012-05-22 at 04:18 -0700, Anssi Kääriäinen wrote: > >> if the patch author doesn't do the final squashing, then > >> she/he will not end up as the "Author" in the commit logs. > > > This i

Re: New Release of IBM_DB_DJANGO (1.0.4)

2012-05-22 Thread Daniel Sokolowski
Is it a licensing issue that this is not included in core? -Original Message- From: Rahul Sent: Wednesday, May 16, 2012 6:18 AM To: Django developers Subject: New Release of IBM_DB_DJANGO (1.0.4) IBM_DB_DJANGO-1.0.4 --- IBM_DB_DJANGO adaptor enables acce

Re: Django git guidelines

2012-05-22 Thread Alex Ogier
On Tue, May 22, 2012 at 4:34 PM, Richard Laager wrote: > On Tue, 2012-05-22 at 04:18 -0700, Anssi Kääriäinen wrote: >> if the patch author doesn't do the final squashing, then >> she/he will not end up as the "Author" in the commit logs. > > This isn't an issue. Just do: >    git commit --author "

Re: Django git guidelines

2012-05-22 Thread Richard Laager
On Tue, 2012-05-22 at 04:18 -0700, Anssi Kääriäinen wrote: > if the patch author doesn't do the final squashing, then > she/he will not end up as the "Author" in the commit logs. This isn't an issue. Just do: git commit --author "John Doe " And if the "squash merge" workflow (which isn't som

Announcement: twice-monthly Django sprints in San Francisco

2012-05-22 Thread Jeremy Dunck
My company, Votizen, now has an office in San Francisco, just a block from the 4th St Caltrain station. We have room to host sprints - easily 25 people, though we can grow if there is demand. We have a professional kitchen, great coffee gear, and maybe a kegerator soon. There are many great place

Re: Multi-tenant Django

2012-05-22 Thread charettes
The "migrating models on every database issue" can be solved easily by creating a command that calls the specified one using `call_command` and passing the correct `db` kwarg to the underlying one. Say you have installed South and want to call the `migrate` with two underlying dbs. ./manage.py

Re: Re-design "proposal" for djangoproject.com

2012-05-22 Thread Russell Keith-Magee
On Tue, May 22, 2012 at 8:55 PM, Adam "Cezar" Jenkins wrote: > On Mon, May 21, 2012 at 6:15 PM, Russell Keith-Magee > wrote: >> >> >> So - if you think there's a need for a showcase site -- go ahead and build >> it! >> > > http://www.djangosites.org/ has been around quite a while IIRC? I remember

Re: Multi-tenant Django

2012-05-22 Thread Bernardo Pires
Hello guys, Have you guys taken a look at https://github.com/phugoid/django-simple-multitenant? I'm not a big fan of one database per tenant as I think this can get quite out of hand very easily (migrating models on every single database). The app linked above simply adds a foreign key to all

Re: auth.user refactor: the profile aproach

2012-05-22 Thread Bernardo Pires
Sorry for reviving this thread. Are the auth mixins fork from ogier going to be commited to the django master branch anytime soon? I'd like to "officially" use it. Is there any documentation available? Thanks in advance. Am Dienstag, 3. April 2012 02:35:41 UTC+2 schrieb Jacob Kaplan-Moss: > >

Re: Re-design "proposal" for djangoproject.com

2012-05-22 Thread Adam "Cezar" Jenkins
On Mon, May 21, 2012 at 6:15 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > > So - if you think there's a need for a showcase site -- go ahead and build > it! > > http://www.djangosites.org/ has been around quite a while IIRC? I remember it being around four or five years ago. Is it s

Re: Django git guidelines

2012-05-22 Thread Anssi Kääriäinen
On May 18, 11:34 pm, Anssi Kääriäinen wrote: > > You are making a lot of assumptions about the branches someone might send > > via pull request. It is entirely valid, and often _preferable_ that someone > > is > > depending on these. Maybe they were running their site on this branch, > > develo

ModelForm enforces its version of save_m2m

2012-05-22 Thread James Pic
Hello everybody, Currently, Django ModelForm enforces it's local version of save_m2m: https://github.com/django/django/blob/38408f8007eae21b9f1cbbcc7f86d4b2042ff86a/django/forms/models.py#L76 As a result, users who want to overload save_m2m can not support commit=False: https://github.com/yourla