restored default to demo.myslice.info
[unfold.git] / plugins / simplelist.py
index 6e041c6..5821bfb 100644 (file)
@@ -8,14 +8,13 @@ class SimpleList (Plugin) :
     def __init__ (self, list=[], with_datatables=False, **settings):
         Plugin.__init__ (self, **settings)
         self.list=list
+# don't expose this as it's big and 
         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 +23,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 exclude_from_json (self):
+        return ['list']