﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
130	`callback` was not beying fetched by Genshi's Buffet pugin interface	palgarvio	palgarvio	"Here a fix for that problem:
{{{
#!diff
--- genshi/template/plugin.py   (revision 641)
+++ genshi/template/plugin.py   (working copy)
@@ -48,6 +48,7 @@

         self.default_encoding = options.get('genshi.default_encoding', 'utf-8')
         auto_reload = options.get('genshi.auto_reload', '1')
+        callback = options.get('genshi.callback', None)
         if isinstance(auto_reload, basestring):
             auto_reload = auto_reload.lower() in ('1', 'on', 'yes', 'true')
         search_path = filter(None, options.get('genshi.search_path', '').split(':'))
@@ -67,7 +68,8 @@
                                      auto_reload=auto_reload,
                                      max_cache_size=max_cache_size,
                                      default_class=self.template_class,
-                                     variable_lookup=lookup_errors)
+                                     variable_lookup=lookup_errors,
+                                     callback=callback)

     def load_template(self, templatename, template_string=None):
         """"""Find a template specified in python 'dot' notation, or load one from
}}}"	enhancement	closed	major	0.4.3	Template engine plugin	0.4.2	fixed		
