Django

Code

Ticket #911 (closed: fixed)

Opened 3 years ago

Last modified 2 years ago

[patch] Make template system scoped to the parser

Reported by: rjwittams Assigned to: adrian
Milestone: Component: django.contrib.admin
Version: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: 1 Needs documentation: 0
Needs tests: 0 Patch needs improvement: 0

Description (Last modified by rjwittams)

So currently, template tags and filters are loaded into module level dictionaries. This means that tags and filters are available in places that they haven't been loaded.

What this leads to is namespace pollution by previous requests - so your code might work one minute, as a previous request loaded the lib, and break the next if you are the first request.

So this patch moves filters and tags onto parsers. As a bonus, filters are now parsed at compile time rather than runtime, so they don't get parsed multiple times in loops.

The changes are: At the top of a tag/filter library, do

import django.core.template 

register = template.Library()

then to register tags or filters, use

register.tag('name', func)
register.filter('name', func) # No has_arg, see below

In tags, resolve_variable_with_filters is gone. The functionality is split in two. In your compile function, do

filter_expr =  parser.compile(filter_string)

pass this into your node class as usual.

in render, do

filter_result = filter_expr.resolve(context) 

instead of resolve_variable_with_filters.

the tag decorators are also now members of the library class, so do

@register.simple_tag

and

@register.inclusion_tag('cow_detail')

for those. Filters can now have default arguments, and whether they have an argument is inferred from the signature. So any

def filter_func(obj, _):

should be changed to

def filter_func(obj):

and the has_arg argument is no longer accepted or useful. Filter arguments can be also now be variables which are resolved in the context as well as constant strings.

Attachments

django-template-scoping.diff (90.7 kB) - added by rjwittams on 11/26/05 09:50:59.

Change History

11/25/05 15:45:20 changed by adrian

  • description changed.

(Fixed formatting in description.)

11/26/05 08:58:31 changed by rjwittams

  • description changed.

11/26/05 09:50:59 changed by rjwittams

  • attachment django-template-scoping.diff added.

11/26/05 09:53:57 changed by rjwittams

Changed documentation.

Also, the {% load %} tag can load multiple libraries in one go now:

{% load i18 admin_list adminmedia %}

And I added some defaults to filters where it seemed sane ( date formatting, yesno).

11/26/05 13:23:31 changed by rjwittams

  • description changed.

11/26/05 16:46:35 changed by adrian

  • status changed from new to closed.
  • resolution set to fixed.

(In [1443]) Fixed #911 -- Made template system scoped to the parser instead of the template module. Also changed the way tags/filters are registered and added support for multiple arguments to {% load %} tag. Thanks, rjwittams. This is a backwards-incompatible change for people who've created custom template tags or filters. See http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges for upgrade instructions.


Add/Change #911 ([patch] Make template system scoped to the parser)




Change Properties
Action