Implementation of Object Permissions

2012-04-13 Thread Moritz S.
Hi all, I have been using django for a while and became happy by the time I discovered the auth module that supports permission handling. But this module turned out to only be able to handle model based permissions. I could not imagine django of not having such a basic functionality (in my opi

Re: Implementation of Object Permissions

2012-04-13 Thread Moritz S.
02:14:35 UTC+2 schrieb Mike Axiak: > > How does it compare to the solutions that already exist listed here? > > http://djangopackages.com/grids/g/perms/ > > -Mike > > On Fri, Apr 13, 2012 at 7:56 PM, Moritz S. > wrote: > >> Hi all, >> >> I have been

Re: Implementation of Object Permissions

2012-04-23 Thread Moritz S.
> > With an appropriate index, SQL databases should be able to find rows > matching a condition on two columns about as quickly as if the condition > was only on one column, even in a table containing million of objects. > Databases can of course find the rows with appropriate indexes, but the

Re: Why no http://media.djangoproject.com/releases/1.4/Django-1.4.tar.gz?

2012-04-24 Thread Moritz S.
Hi, try http://www.djangoproject.com/download//tarball/ Best regards, Moritz Am Dienstag, 24. April 2012 05:56:20 UTC+2 schrieb Bob Cochran: > > These exist for 1.3, 1.3.1, 1.2..., but not 1.4. > > Are they located somewhere else moving forward? > > Thanks > > > -- You received this message be

Re: Implementation of Object Permissions

2012-04-27 Thread Moritz S.
> > Are there any hopes of speeding up or caching GenericForgeinKey queries ? > I found - > http://zerokspot.com/weblog/2008/08/13/genericforeignkeys-with-less-queries/ > > Adding 'db_index=True' to the GenericForeignKey's object_id field should be a significant performance enhancement. It w

Re: Redesign of djangoproject.com?

2012-05-01 Thread Moritz S.
Those templates look very great but I think it's a really bad idea to use work without GPL compatible licenses... Am Mittwoch, 2. Mai 2012 02:14:48 UTC+2 schrieb Daniel Sokolowski: > > Being realistic here we must acknowledge that likely the majority of us > are great programmers but not great

Re: About Class Based views

2015-03-17 Thread Moritz S.
Am Dienstag, 17. März 2015 20:41:53 UTC+1 schrieb poiati: > > The problem with CBV is the learning curve. > Totally agree with that! Personally I really like CBVs and I also write my own subclasses and mixins regularly, but I think you'll really have a hard time even writing a simple mixin if y