Re: Proposal: Can custom tag use namespace

2006-08-13 Thread limodou
On 8/13/06, limodou <[EMAIL PROTECTED]> wrote: > On 8/13/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > > > On 8/7/06, limodou <[EMAIL PROTECTED]> wrote: > > > How to use namespace? For example, > > > > > > {% load example %} > > > {% example.testtag %} > > > > > > And I think if the namespace

Re: Proposal: Can custom tag use namespace

2006-08-12 Thread limodou
On 8/13/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 8/7/06, limodou <[EMAIL PROTECTED]> wrote: > > How to use namespace? For example, > > > > {% load example %} > > {% example.testtag %} > > > > And I think if the namespace can be optional is better. I don't know > > if it's useful, but

Re: Proposal: Can custom tag use namespace

2006-08-12 Thread Adrian Holovaty
On 8/7/06, limodou <[EMAIL PROTECTED]> wrote: > How to use namespace? For example, > > {% load example %} > {% example.testtag %} > > And I think if the namespace can be optional is better. I don't know > if it's useful, but sometimes I read others projects, and as I reading > the template, I don'

Re: Proposal: Can custom tag use namespace

2006-08-07 Thread Ian Holsman
It would be nice mechanism to fully qualify a particular tag.so for example if I had a 'calendar' tag, and hugo also had one, and I needed to use another templatetag of his in the same file I could specify{% ian.calendar %}  instead of {% calendar %} so the template would know which one I was refer

Proposal: Can custom tag use namespace

2006-08-07 Thread limodou
How to use namespace? For example, {% load example %} {% example.testtag %} And I think if the namespace can be optional is better. I don't know if it's useful, but sometimes I read others projects, and as I reading the template, I don't know which tag is in which file. So find the correct tag d