Re: Application, tempaltetags and namespace

2010-09-29 Thread Mathieu Leduc-Hamel
Cool, than from what i see it seems the namespacing will be more and more implemented in Django in the future. But as a good practice, it would be cool if it's finally happen to force any templatetags to be used with namespace ? Cause if people can use the old way to do things, we'll still have

Re: Application, tempaltetags and namespace

2010-09-27 Thread Iván Raskovsky
On Mon, Sep 27, 2010 at 3:14 AM, Russell Keith-Magee wrote: > On Mon, Sep 27, 2010 at 1:43 PM, Mathieu Leduc-Hamel > wrote: >> Hi all, >> >> I'm curious to know if it's planned in the future to force the use of >> the complete name of the

Re: Application, tempaltetags and namespace

2010-09-27 Thread Eric Holscher
Cody Soyland has also done some work on this in a reusable app, which might be useful as a starting point: http://github.com/codysoyland/django-smart-load-tag Cheers, Eric -- Eric Holscher Web Developer at The World Company in Lawrence, Ks http://ericholscher.com -- You received this message

Re: Application, tempaltetags and namespace

2010-09-27 Thread Russell Keith-Magee
On Mon, Sep 27, 2010 at 1:43 PM, Mathieu Leduc-Hamel wrote: > Hi all, > > I'm curious to know if it's planned in the future to force the use of > the complete name of the applications and the templatestags. I'll > explain myself. > > Imagine you have an application called > >

Application, tempaltetags and namespace

2010-09-26 Thread Mathieu Leduc-Hamel
Hi all, I'm curious to know if it's planned in the future to force the use of the complete name of the applications and the templatestags. I'll explain myself. Imagine you have an application called hello.world with the following structure: hello.world/ setup.py hello/ world/ ...