X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fsimplelist.py;h=a9ae38d042397c3a2edab749661cedd985626a51;hb=54a5954fbb6d77b012bbe198c7d492989c1f1585;hp=f119d76b184a30e579c8264a0b4dde1621cb7f11;hpb=936338e1a80b945adc96c2a8ee5f44a2fd322f52;p=unfold.git diff --git a/plugins/simplelist.py b/plugins/simplelist.py index f119d76b..a9ae38d0 100644 --- a/plugins/simplelist.py +++ b/plugins/simplelist.py @@ -2,28 +2,33 @@ from engine.plugin import Plugin class SimpleList (Plugin) : - # it would make sense to *not* define any constructor here and let Plugin kick in - # however it feels nicer this way as we document the settings used in our own template - # plus it's less confusing for any subclass if they can be sure which constructor to call - def __init__ (self, list=[], with_datatables=False, **settings): + # only deal with our own stuff here and let Plugin handle the rest + def __init__ (self, key, with_datatables=False, **settings): Plugin.__init__ (self, **settings) - self.list=list - self.add_to_settings ('list') + self.key=key self.with_datatables = with_datatables - self.add_to_settings ('with_datatables') # SimpleList is useless per se anyways - def template_file (self): return "simplelist.html" + def template_file (self): + return "simplelist.html" + + def template_env (self, request): + env={} + header=getattr(self,'header',None) + if header: env['header']=header + env['with_datatables']= "yes" if self.with_datatables else "" + return env def requirements (self): - reqs = { 'js_files' : [ "js/simplelist.js" ], + reqs = { 'js_files' : [ "js/simplelist.js", "js/plugin.js", "js/query.js", "js/onavail.js", + "js/manifold-pubsub.js", "js/manifold-async.js", "spin/spin.all.js", +] , 'css_files': [ "css/simplelist.css" ], } if self.with_datatables: reqs['js_files'].append ("datatables/js/dataTables.js") reqs['js_files'].append ("js/with-datatables.js") - print self.classname(),reqs return reqs -# for tests -# 'js_chunks' : "/* a javascript chunk */", -# 'css_chunks': "/* a css style */ ", + + def json_settings_list (self): return ['plugin_uuid', 'query','query_uuid','key'] +