X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fsimplelist.py;h=d4cefb1c23b148c2c8912b62ee48e7ed8595e2a1;hb=a50572cd11246fe0f7326404276dfec78168a1de;hp=431dce39d82e9a5aecd40772ea1d16b36c75dd32;hpb=f050e587f6537163f83735236b0dacb6672e1e0f;p=unfold.git diff --git a/plugins/simplelist.py b/plugins/simplelist.py index 431dce39..d4cefb1c 100644 --- a/plugins/simplelist.py +++ b/plugins/simplelist.py @@ -2,9 +2,7 @@ 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 + # only deal with our own stuff here and let Plugin handle the rest def __init__ (self, list=[], with_datatables=False, **settings): Plugin.__init__ (self, **settings) self.list=list @@ -14,17 +12,15 @@ class SimpleList (Plugin) : def template_file (self): return "simplelist.html" def requirements (self): - reqs = { 'js_files' : [ "js/plugin.js", "js/query.js", - "js/manifold-pubsub.js", "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") 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','value']