+=+ Want To Be An Astronaut =+=

2007-04-24 Thread Rania Desai
*if you want to be an Astronaut of NASA please read this guaid* http://information.100stuff.com/want-to-be-astronaut/ Thanks Rania --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post t

Re: The locmem patch and development progress

2007-04-24 Thread Malcolm Tredinnick
On Tue, 2007-04-24 at 09:17 -0700, Vinay Sajip wrote: > > > What's the thinking on documentation-only patches? While they are just > > > as worthy of review and critical assessment as code patches, there is > > > less of a concern about affecting trunk stability, and less impact > > > analysis wor

Re: The locmem patch and development progress

2007-04-24 Thread Vinay Sajip
> > What's the thinking on documentation-only patches? While they are just > > as worthy of review and critical assessment as code patches, there is > > less of a concern about affecting trunk stability, and less impact > > analysis work needed. > > Not true. We try to be very careful about the do

Re: Always loaded tempalte tags?

2007-04-24 Thread oggie rob
In 0.92 you could do this: @defaulttags.register.simple_tag def my_tag(): pass Without looking (and probably regretting my laziness...) I'm guessing the same is still available. -rob On Apr 24, 8:38 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > As someone who works with the Django t

Re: Patch #2070 in trunk

2007-04-24 Thread Mike Axiak
I'm not the author, but I decided to play around and merged the changes that people suggested to the last patch (and got it working with SVN HEAD). If you'd like to play around and see if it works, please do. http://code.djangoproject.com/ticket/2070 -Mike On Apr 23, 3:30 pm, "[EMAIL PROTECTED]"

Always loaded tempalte tags?

2007-04-24 Thread [EMAIL PROTECTED]
As someone who works with the Django template language eight+ hours a day, I've built up quite a library of tags and filters that I use a LOT. Like, in nearly every template. For example, I pass almost every bit of text through a filter that applies Smartypants formatting (for proper quotes and ot

Re: Always loaded tempalte tags?

2007-04-24 Thread Mike Axiak
Please look at http://www.djangosnippets.org/snippets/160/. -Mike On Apr 24, 11:38 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > As someone who works with the Django template language eight+ hours a > day, I've built up quite a library of tags and filters that I use a > LOT. Like, in near

RESTful API

2007-04-24 Thread John Sutherland
Evening, I've put the RESTful API code that I mentioned in ticket 2553[1]. A few people have requested the code and so it's now in a Google code project: Ideas? Suggestions? Requests? Cheers, John. [1]

Re: Logging facility for Django

2007-04-24 Thread Andrew Durdin
On Apr 24, 12:23 am, Vinay Sajip <[EMAIL PROTECTED]> wrote: > > > I agree that thread locals would probably be ideal, but it looks like > > threading.local was only introduced in Python 2.4. To stay aligned > > with Django, it should really be 2.3 compatible. > > Fair point - I'd forgotten that th