updater now has the logic to turn itself off and back on (although for now only in...
[myslice.git] / plugins / querycode / querycode.py
index 6c3cb21..55da3e9 100644 (file)
@@ -5,29 +5,22 @@ class QueryCode (Plugin):
     def __init__ (self, query, **settings):
         Plugin.__init__ (self, **settings)
         self.query=query
-        # our javascript requires the details of the manifold server
-        self.page.expose_js_manifold_config()
 
     def template_file (self):
         return "querycode.html"
 
     def requirements (self):
         return { 
-            'js_files' : [ "js/querycode.js", 
-                           "js/manifold.js", "js/manifold-query.js",
-                           "js/spin.presets.js", "js/spin.min.js", "js/jquery.spin.js", 
-                           
-#        Plugins::add_js('/QueryCode/beautyofcode/scripts/shCore.js');
-#        Plugins::add_js('/QueryCode/beautyofcode/scripts/shBrushPython.js');
-#        Plugins::add_js('/QueryCode/beautyofcode/scripts/shBrushRuby.js');
-#        Plugins::add_js('/QueryCode/beautyofcode/scripts/shAutoloader.js');
-                           ] ,
+            'js_files' : [ 
+                "js/querycode.js", 
+                "js/manifold.js", "js/manifold-query.js",
+                "js/spin.presets.js", "js/spin.min.js", "js/jquery.spin.js", 
+                "js/shAutoloader.js","js/shCore.js","js/shBrushPython.js","js/shBrushRuby.js",
+                ] ,
 # thierry: see this file for details of why we turn this off for now            
-             'css_files': [
-###                "css/querycode.css" ,
-#        Plugins::add_css('/QueryCode/beautyofcode/styles/shCore.css');
-#        Plugins::add_css('/QueryCode/beautyofcode/styles/shCoreDefault.css');
-#        Plugins::add_css('/QueryCode/beautyofcode/styles/shThemeDefault.css');
+            'css_files': [
+                "css/querycode.css" ,
+                "css/shCore.css","css/shCoreDefault.css","css/shThemeDefault.css",
                 ],
             }