various changes around settings management
[unfold.git] / plugins / simplelist.py
index 6e041c6..28c73f4 100644 (file)
@@ -8,14 +8,10 @@ class SimpleList (Plugin) :
     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 template_file (self): return "simplelist.html"
 
     def requirements (self):
         reqs = { 'js_files' : [ "js/simplelist.js" ],
@@ -24,8 +20,10 @@ class SimpleList (Plugin) :
         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','value']
+