X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=engine%2Fplugin.py;h=99a3ff8acf81945b96502e55827aa8e366cbb5e0;hb=f82384d579673e3276e3ac67cb8319f8d75c04af;hp=92bbe6c9f9fd88954338738890222359a7c059fe;hpb=058958cdd4f1d5f2f5da50e8dd988c5e623f41d8;p=unfold.git diff --git a/engine/plugin.py b/engine/plugin.py index 92bbe6c9..99a3ff8a 100644 --- a/engine/plugin.py +++ b/engine/plugin.py @@ -16,7 +16,7 @@ from engine.prelude import Prelude # . True : to debug all plugin DEBUG= False -#DEBUG= [ 'SimpleList' ] +#DEBUG= [ 'SliceList' ] # decorator to deflect calls on Plugin to its PluginSet def to_prelude (method): @@ -116,6 +116,11 @@ class Plugin: result += "}" return result + # as a first approximation, only plugins that are associated with a query + # need to be prepared for js - others just get displayed and that's it + def is_asynchroneous (self): + return 'query' in self.__dict__ + # returns the html code for that plugin # in essence, wraps the results of self.render_content () def render (self, request): @@ -127,9 +132,8 @@ class Plugin: env.update(self.__dict__) result = render_to_string ('plugin.html',env) - # as a first approximation we're only concerned with plugins that are associated with a query - # other simpler plugins that only deal with layout do not need this - if 'query' in self.__dict__: + # export this only for relevant plugins + if self.is_asynchroneous(): env ['settings_json' ] = self.settings_json() # compute plugin-specific initialization js_init = render_to_string ( 'plugin-setenv.js', env )