get rid of the spin.all.js exception - it's already complex enough
[myslice.git] / plugins / querycode.py
1 from engine.plugin import Plugin
2
3 class QueryCode (Plugin):
4
5     def __init__ (self, query, **settings):
6         Plugin.__init__ (self, **settings)
7         self.query=query
8         # our javascript requires the details of the manifold server
9         self.page.expose_js_manifold_config()
10
11     def template_file (self):
12         return "querycode.html"
13
14     def requirements (self):
15         return { 
16             'js_files' : [ "js/querycode.js", "js/plugin.js", "js/query.js", "js/onavail.js",
17                            "js/manifold-pubsub.js", "js/manifold-async.js", 
18                            "js/spin.presets.js", "js/spin.min.js", "js/jquery.spin.js", 
19                            
20 #        Plugins::add_js('/QueryCode/beautyofcode/scripts/shCore.js');
21 #        Plugins::add_js('/QueryCode/beautyofcode/scripts/shBrushPython.js');
22 #        Plugins::add_js('/QueryCode/beautyofcode/scripts/shBrushRuby.js');
23 #        Plugins::add_js('/QueryCode/beautyofcode/scripts/shAutoloader.js');
24                            ] ,
25             'css_files': [ "css/querycode.css" ,
26 #        Plugins::add_css('/QueryCode/beautyofcode/styles/shCore.css');
27 #        Plugins::add_css('/QueryCode/beautyofcode/styles/shCoreDefault.css');
28 #        Plugins::add_css('/QueryCode/beautyofcode/styles/shThemeDefault.css');
29                            ],
30             }
31
32     def json_settings_list (self): return ['plugin_uuid', 'query','query_uuid']
33         
34     def start_with_spin (self): return False