django snippet marketplace

2010-03-08 Thread Niels
Hello, Sometimes I need some specific Django developement where I don't have time for, or someone else could do better. I am looking for a marketplace where I can look for a Django/Python developer for a small but specific code snippet developer. Does someone has a suggestion? Thanks,

Re: API question for model saving

2008-04-30 Thread Niels
Bikeshedding or not, what about something like class _default_save_behaviour(object): pass ... def save(new_instance=_default_save_behaviour, ...): if new_instance == _default_save_behaviour: elif bool(new_instance): else: Regards Niels On Apr 28, 9:44 pm

Re: Public spec is needed for writing ORM adapters

2008-03-25 Thread Niels
ome documentation :) "... is a message that can be acted up on by open source developers in IBM offices as well. It will broaden the business opportunities for the DB2 product so some investment for the lift off seems easily justified. Best regards Niels (wow, i'm Dutch :) On Mar 25, 10

Re: pre-setting variables in templates

2008-01-13 Thread Niels
; as foo %} {{ foo }} {% endwith %} Regards, Niels --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubsc

Re: Let's schedule a Django sprint

2007-09-09 Thread Niels Sandholt Busch
> > OK, it is official, there will be a Copenhagen chapter of the sprint. > Location: > Cool, I'll be there (after work). Niels --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django deve

Re: Let's schedule a Django sprint

2007-09-06 Thread Niels Sandholt Busch
I'm in Copenhagen, and if you do host an event, I will show up. Got some python experience, but a Django noob. \Niels On Sep 6, 4:31 pm, Nis Jørgensen <[EMAIL PROTECTED]> wrote: > Adrian Holovaty skrev:> It's about time we scheduled an official Django > sprint.

Re: Autoescaping: good time?

2007-08-03 Thread Niels
On Aug 3, 11:34 am, Michael Radziej <[EMAIL PROTECTED]> wrote: > On Fri, Aug 03, Niels wrote: > > On Aug 3, 11:10 am, Michael Radziej <[EMAIL PROTECTED]> wrote: > > > This actually adds some documentation for any reviewer. 'safe' means: > > > &

Re: Autoescaping: good time?

2007-08-03 Thread Niels
safe' filter to all the other variables, and it will be marked > as safe, so that autoescaping won't touch it. > > This actually adds some documentation for any reviewer. 'safe' means: > "Hey, I haven't simply forgot escaping, I meant it!" Jacob used t

Re: Autoescaping: good time?

2007-08-02 Thread Niels
the context Is this all out-of-date information? Best regards Niels [1] http://code.djangoproject.com/wiki/AutoEscaping#Autoescaping On Aug 3, 1:14 am, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 8/2/07, Yuri Baburov <[EMAIL PROTECTED]> wrote: > > >

Re: "else" clause on "ifchanged"

2007-06-12 Thread Niels
ing patch I might lean a > > bit more towards +0, but it's pretty low on my radar. > btw i'm +1 in case you'd wonder Niels Poppe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dja

Re: Changing django.contrib.auth to make passwords optional

2007-05-11 Thread Niels
On May 11, 5:07 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > So does that mean that I should store a single blank space in the > > password field to represent "no password set"? > > The purists will be breaking out the pitchforks and flaming torches > ( :-) ), but that would be a backwar

Re: newforms DateTimeFiels issue?

2007-02-28 Thread Niels
The right place to fix this should be DateTimeField.to_python i guess. On Feb 20, 3:49 am, "juampa" <[EMAIL PROTECTED]> wrote: > I have noticed the following situation and I suspect it may be a > problem: > > If you have a model class with a > > date_added = models.DateTimeField(auto_now_add=True

Re: Upcoming Django release, and the future

2007-02-27 Thread Niels
_hierarchy filter for models that can contain a date field with a NULL value. -- Niels --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django

Re: Modification in the django.db.backends.postgresql.base

2006-10-18 Thread Niels
Rafael SDM Sierra wrote: > Hi, Trying to make Django to use really only ONE connection to ONE process > (like 1000 Threads using 1 connection) I've altered postgresql backend at > base.py. The beta (aka bugged) version is here: > > http://pastebin.com/808647 > > My question is if this alteration (