move a few things away in to-be-integrated/
[unfold.git] / plugins / code_editor / __init__.py
diff --git a/plugins/code_editor/__init__.py b/plugins/code_editor/__init__.py
deleted file mode 100644 (file)
index c3f7528..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-from unfold.plugin import Plugin
-
-class CodeEditor(Plugin):
-
-    def template_file(self):
-        return "code_editor.html"
-
-    def requirements (self):
-        reqs = {
-            'js_files' : [
-                'js/code_editor.js',
-                'js/moo-clientcide-1.3.js',
-                'js/codemirror.js',
-                'js/sql.js',
-                'js/Actions.js',
-                #'js/EditorCM.js',
-                'js/LayoutCM.js',
-            ] ,
-            'css_files': [
-                'css/codemirror.css',
-            ]
-        }
-        return reqs
-
-    def json_settings_list (self):
-        return ['plugin_uuid', 'domid', 'lineNumbers']
-
-    def export_json_settings (self):
-        return True