Re: about templatetag namespaces

2008-07-11 Thread Malcolm Tredinnick
On Thu, 2008-07-10 at 20:38 +0530, Amit Upadhyay wrote: > Hi, > > I have identified a few issues over the time that makes working with > custom django template tags/filters a little less than ideal for me. > > My chief problem is: if I see an unknown/unfamiliar tag/filter and > want to locate

Re: about templatetag namespaces

2008-07-11 Thread Johannes Dollinger
+1 for the main proposal and subproposal (modulo concrete syntax). Decoupling template library imports from app_label would also be good for #3591. Get rid of as many app_label dependencies as possible. Beautiful languages such as php and c have flat namespaces - don't go there.

Re: about templatetag namespaces

2008-07-10 Thread Phil Davis
2008/7/10 Amit Upadhyay <[EMAIL PROTECTED]>: [...] > This has been discussed before[1], but I have some objections with the > latest implementation[2]: > * appname/templatetags still persist, and is the place where libraries will > be looked into, there is no reason for django to enforce and

about templatetag namespaces

2008-07-10 Thread Amit Upadhyay
Hi, I have identified a few issues over the time that makes working with custom django template tags/filters a little less than ideal for me. My chief problem is: if I see an unknown/unfamiliar tag/filter and want to locate the exact code responsible, I have to do the following: find all loads