Problem with writing custom field to work with inherit models

2011-04-06 Thread Sebastian Bauer
Hi, could you explain to us why this isn't working? https://github.com/humanfromearth/django-stdimage/issues/11 Thanks s. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to

Re: Problem with ORM

2009-01-16 Thread Sebastian Bauer
W dniu 16.01.2009 16:34, varikin pisze: > > On Jan 15, 5:38 pm, Sebastian Bauer<ad...@ugame.net.pl> wrote: > >> I think ORM supposed to have save insert and update: >> >> save(force_insert=False,force_update=False) >> update() == save(force_update=True

Re: Problem with ORM

2009-01-15 Thread Sebastian Bauer
I think ORM supposed to have save insert and update: save(force_insert=False,force_update=False) update() == save(force_update=True) insert() == save(force_insert=True) in that situation we could have clean code and we know that update is realy update on DB i now we can have

Problem with ORM

2009-01-14 Thread Sebastian Bauer
Hi I think it's a bug, but maybe im wrong: print Categories.objects.count() >>0 new_obj = Categories.objects.create(name="test") instance_1 = Categories.objects.get(pk=new_obj.pk) instance_2 = Categories.objects.get(pk=new_obj.pk) instance_1.delete() print Kategorie.objects.count() >>0

Re: login_required

2008-11-10 Thread Sebastian Bauer
but we can do this "little" modification in v1.1 i think this change will allow site administrator to ban users through change is_active flag Waylan Limberg pisze: > On Mon, Nov 10, 2008 at 2:49 PM, Sebastian Bauer <[EMAIL PROTECTED]> wrote: > >> Hello, i think

login_required

2008-11-10 Thread Sebastian Bauer
Hello, i think login_required should check that user is not only authenticated, but also if is active. What do you think about this change? Sebastian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

Re: Add optional FOR UPDATE clause to QuerySets

2008-05-17 Thread Sebastian Bauer
Russell Keith-Magee pisze: > On Sat, May 17, 2008 at 3:56 AM, Sebastian Bauer <[EMAIL PROTECTED]> wrote: > >> could someone tell me when this ticket will be add to trunk: >> >> http://code.djangoproject.com/ticket/2705 >> >> its very importan

Add optional FOR UPDATE clause to QuerySets

2008-05-16 Thread Sebastian Bauer
could someone tell me when this ticket will be add to trunk: http://code.djangoproject.com/ticket/2705 its very important to me because im writing game and i need this to finish Thanks for answer PS. sorry for my really bad english --~--~-~--~~~---~--~~ You