X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fsimplelist.py;h=6eb0f44aae2082d0a649a43ce1b53be79bb3360e;hb=15bbd76bedecea3ece64568f85530d9d3ae750c5;hp=19a77692a687e7369e3e404cc44b00291c717d76;hpb=9b89a32f1ae0a1e0618a9cc11138a766a4ba870b;p=myslice.git diff --git a/plugins/simplelist.py b/plugins/simplelist.py index 19a77692..6eb0f44a 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 @@ -22,9 +20,6 @@ class SimpleList (Plugin) : 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']