X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fsimplelist.py;h=6e041c61cdab138453034fe88df54878cae78408;hb=5168df3527056a01fa0ba11d4f40e9039350808f;hp=c2ba250e33a07864d308e684f514d1226bd38f02;hpb=80bed4d9f0a68e0944d291c65f749ce3f8f9cd2d;p=unfold.git diff --git a/plugins/simplelist.py b/plugins/simplelist.py index c2ba250e..6e041c61 100644 --- a/plugins/simplelist.py +++ b/plugins/simplelist.py @@ -2,15 +2,30 @@ 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): + Plugin.__init__ (self, **settings) + self.list=list + self.add_to_settings ('list') + self.with_datatables = with_datatables + self.add_to_settings ('with_datatables') + # SimpleList is useless per se anyways def title (self) : return "Title for Simple List" def template (self): return "simplelist.html" def requirements (self): - return { 'js_files' : [ "js/simplelist.js" ], + reqs = { 'js_files' : [ "js/simplelist.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 */ ", - }