Re: Pick a value from list variable in templates

2008-03-05 Thread vcc
- Original Message - From: "Collin Grady" <[EMAIL PROTECTED]> To: Sent: Thursday, March 06, 2008 3:59 AM Subject: Re: Pick a value from list variable in templates > > vcc said the following: >> I got another ID: foo.(bar) >> It's clear and no

Decision required: #4412 - optgroups in select widgets

2008-03-05 Thread Russell Keith-Magee
Hi all, I did some work on ticket #4412 [1] a while back, but never brought the issue to completion. This ticket concerns adding support for a nested choices syntax on choices widgets, which gets interpreted as tags in a select widget. i.e., a select widget would be allowed to define its

Re: routing to a log file when daemonizing a fastcgi process

2008-03-05 Thread tamas kemenczy
On Mar 4, 2:36 am, jedie <[EMAIL PROTECTED]> wrote: > This is very interesting for me, too. Can you post you existing code > in a django ticket? i have created a ticket with the patch here: http://code.djangoproject.com/ticket/6687 tamas --~--~-~--~~~---~--~~

Re: settings imported twice Was: logging & MODPYTHON

2008-03-05 Thread Graham Dumpleton
One more thing, as much as I hate use of os.environ and DJANGO_SETTINGS_MODULE, this could be avoided if the point which was importing 'settings' instead did: settings = __import__(os.environ["DJANGO_SETTINGS_MODULE"]) That way it is ensuring that it is importing it via same dotted module

Re: settings imported twice Was: logging & MODPYTHON

2008-03-05 Thread Graham Dumpleton
On Mar 6, 2:45 am, Thomas Guettler <[EMAIL PROTECTED]> wrote: > Malcolm Tredinnick schrieb:> On Wed, 2008-03-05 at 15:32 +0100, Thomas > Guettler wrote: > > [...] > > >> No, it gets imported more then once: (Answer of Malcolm): > >>http://www.mail-archive.com/[EMAIL PROTECTED]/msg39061.html > >

Re: "Fixed On A Branch"

2008-03-05 Thread Jacob Kaplan-Moss
On Wed, Mar 5, 2008 at 3:47 PM, SmileyChris <[EMAIL PROTECTED]> wrote: > I notice that this new triage state snuck in recently. I was wondering how long that would take :) > Does this mean that all the "*-fixed" tagged tickets should be moved > to this state?

Re: Pick a value from list variable in templates

2008-03-05 Thread Collin Grady
vcc said the following: > I got another ID: foo.(bar) > It's clear and no conflict, also can use nested, for example > foo.(one.(tow.(three))). > or maybe: foo(bar) is look better. But that suffers the same issue as the __bar__ syntax - it's already used by function calls - you need to stop

Re: Resetting ticket system password?

2008-03-05 Thread Jeremy Dunck
Err, sorry, meant for offlist. Even more :-// On Wed, Mar 5, 2008 at 12:36 PM, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > DId this ever get fixed for you? :-/ > > > > On Fri, Feb 1, 2008 at 8:41 PM, John DeRosa <[EMAIL PROTECTED]> wrote: > > > > I want to starting contributing to Django,

Re: Resetting ticket system password?

2008-03-05 Thread Jeremy Dunck
DId this ever get fixed for you? :-/ On Fri, Feb 1, 2008 at 8:41 PM, John DeRosa <[EMAIL PROTECTED]> wrote: > > I want to starting contributing to Django, and so I tried to create an > account in the ticket system. But I discovered (via the registration > error message) that I already have

Re: Opportunity

2008-03-05 Thread Patryk Zawadzki
On Wed, Mar 5, 2008 at 4:58 PM, Steve Brumwell <[EMAIL PROTECTED]> wrote: > Sorry I am new to this - what do you mean? This list is dedicated to improving django. django-users is the place you can find _users_ of django (and employ them). Your signature is one and a half screen high and

Re: settings imported twice Was: logging & MODPYTHON

2008-03-05 Thread Patryk Zawadzki
On Wed, Mar 5, 2008 at 4:45 PM, Thomas Guettler <[EMAIL PROTECTED]> wrote: > to Patryk: Look at your code again, it will never raise: > > ''' > imported = False > if imported: > raise Exception, "already imported!" > ... > > ''' Well, obviously I need more coffee. Something like that

RE: Opportunity

2008-03-05 Thread Steve Brumwell
Sorry I am new to this - what do you mean? Steve Brumwell Sales Director www.iperium-consulting.com (P) +44(0)1564 793701 (M) +44(0)7810 801130 (F) +44(0)1564 795916 Skype id : steve.brumwell __ __

Re: Opportunity

2008-03-05 Thread Patryk Zawadzki
On Wed, Mar 5, 2008 at 4:37 PM, Steve Brumwell <[EMAIL PROTECTED]> wrote: > Hello all, > > I am currently working on behalf of a strong and well funded start up in the > online media (2.0) space, they are growing fast and very innovative. They > need a senior level Python/Django developer to work

Opportunity

2008-03-05 Thread Steve Brumwell
Hello all, I am currently working on behalf of a strong and well funded start up in the online media (2.0) space, they are growing fast and very innovative. They need a senior level Python/Django developer to work in London. Please contact me for further details. The role is full time and comes

Re: ***SPAM*** Re: logging & MODPYTHON

2008-03-05 Thread Malcolm Tredinnick
On Wed, 2008-03-05 at 15:54 +0100, Patryk Zawadzki wrote: [...] > Should be as easy as adding: > > imported = False > if imported: > raise Exception, "already imported!" > imported = True > > at the top and reading the traceback? No, because if it's reimported as part of a reload() or

Re: ***SPAM*** Re: logging & MODPYTHON

2008-03-05 Thread Patryk Zawadzki
On Wed, Mar 5, 2008 at 3:40 PM, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > On Wed, 2008-03-05 at 15:32 +0100, Thomas Guettler wrote: > [...] > > > No, it gets imported more then once: (Answer of Malcolm): > > http://www.mail-archive.com/[EMAIL PROTECTED]/msg39061.html > > Read that

Re: ***SPAM*** Re: logging & MODPYTHON

2008-03-05 Thread Malcolm Tredinnick
On Wed, 2008-03-05 at 15:32 +0100, Thomas Guettler wrote: [...] > No, it gets imported more then once: (Answer of Malcolm): > http://www.mail-archive.com/[EMAIL PROTECTED]/msg39061.html Read that carefully and you'll see the answer I have was "maybe, I'm not sure" and it's only in some

Google's Summer of Code

2008-03-05 Thread mark
Hello. I'm going to be coordinating django's participation in Google's Summer of Code this year and it's time to get started. First off, we need mentors. A mentor's job is to provide guidance and support to the student developers, or possibly to nudge and cajole if necessary. You'll also need to

Re: ***SPAM*** Re: logging & MODPYTHON

2008-03-05 Thread Thomas Guettler
Graham Dumpleton schrieb: > On Mar 5, 6:56 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: > >> AndrewD schrieb:> I would like to contribute a general Django logging >> system. I have >> >>> MODPYTHON logging working, & a basic file logging sample. I think most >>> Django users want easy

Re: Pick a value from list variable in templates

2008-03-05 Thread vcc
I got another ID: foo.(bar) It's clear and no conflict, also can use nested, for example foo.(one.(tow.(three))). or maybe: foo(bar) is look better. Best regards, vcc _ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Pick a value from list variable in templates

2008-03-05 Thread Malcolm Tredinnick
On Wed, 2008-03-05 at 11:16 +0200, Lauri Ahonen wrote: > > > On 3/4/08, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > It's also the thin edge of the wedge in some sense: Django's > templating > language is intentionally super-simple. Presentation

Re: Ticket #6705

2008-03-05 Thread Malcolm Tredinnick
On Tue, 2008-03-04 at 12:59 -0600, James Bennett wrote: > Ticket #6705 [1] proposes that 'form.errors' be changed to somehow > provide a "prettier" display not based on the underlying field name > (which is currently used as the key in the errors dictionary). > > The person who opened this

Re: Pick a value from list variable in templates

2008-03-05 Thread Lauri Ahonen
On 3/4/08, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > > It's also the thin edge of the wedge in some sense: Django's templating > language is intentionally super-simple. Presentation stuff only in > tempates, all selection/business logic in the views. So by the time your > context gets to

Re: logging & MODPYTHON

2008-03-05 Thread Graham Dumpleton
On Mar 5, 6:56 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: > AndrewD schrieb:> I would like to contribute a general Django logging system. > I have > > MODPYTHON logging working, & a basic file logging sample. I think most > > Django users want easy logging out-of-the-box, and it meets the