Zmiana nazwy project -> platforma.
[redakcja.git] / project / static / js / views / xml.js
diff --git a/project/static/js/views/xml.js b/project/static/js/views/xml.js
deleted file mode 100644 (file)
index 78f8380..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*global Class CodeMirror render_template panels */
-var XMLView = Class.extend({
-  element: null,
-  model: null,
-  template: 'xml-view-template',
-  editor: null,
-  
-  init: function(element, model, template) {
-    this.element = $(element);
-    this.model = $(model).get(0);
-    console.log('XMLView#init model:', model);
-    this.template = template || this.template;
-    this.element.html(render_template(this.template, {}));
-    
-    var self = this;
-       this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
-      parserfile: 'parsexml.js',
-      path: "/static/js/lib/codemirror/",
-      stylesheet: "/static/css/xmlcolors.css",
-      parserConfig: {useHTMLKludges: false},
-      // onChange: function() {
-      //        self.fireEvent('contentChanged');
-      // },
-      initCallback: this.editorDidLoad.bind(this)
-    });
-  },
-  
-  editorDidLoad: function(editor) {
-    console.log('init', this.model);
-    editor.setCode('Ɓadowanie...');
-    $(editor.frame).css({width: '100%', height: '100%'});
-    this.editor.setCode(this.model.xml);
-    $(this.model).bind('modelxmlchanged.xmlview', this.codeChanged.bind(this));
-    this.model.getXML();
-    // editor.grabKeys(
-    //   $.fbind(self, self.hotkeyPressed),
-    //   $.fbind(self, self.isHotkey)
-    // );
-  },
-  
-  codeChanged: function() {
-    console.log('setCode:', this.editor, this.model);
-    this.editor.setCode(this.model.xml);
-  },
-  
-  dispose: function() {
-    $(this.model).unbind('modelxmlchanged.xmlview');
-    $(this.editor.frame).remove();
-  }
-});
-
-// Register view
-panels.push({name: 'xml', klass: XMLView});