X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4414d3a80488c222a54bc98309075b03cc9e37f3..861a08cdc38728e9f988a0a321e62693e26e947f:/project/templates/explorer/panels/xmleditor.html

diff --git a/project/templates/explorer/panels/xmleditor.html b/project/templates/explorer/panels/xmleditor.html
index 356b76c1..74a68776 100644
--- a/project/templates/explorer/panels/xmleditor.html
+++ b/project/templates/explorer/panels/xmleditor.html
@@ -1,35 +1,69 @@
-<div class="panel">
-    <textarea name="text" width="480px"><ala><ma></ma></ala></textarea>
+{% load toolbar_tags %}
+{% toolbar toolbar_groups toolbar_extra_group %}
+
+<div class="iframe-container" style="position: absolute; top: 40px; left:0px; right:0px; bottom: 0px;">
+	<textarea name="text">{{ text }}</textarea>
 </div>
+
 <script type="text/javascript" charset="utf-8">
-    (function() {
-        var self = null;
-        var id = Math.ceil(Math.random() * 1000000000);
-        
-        var load = function(event, panel) {
-            console.log('loading panel', panel);
-            self = panel;
-            var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
-            $('textarea', panel).attr('id', textareaId);
-            var editor = CodeMirror.fromTextArea(textareaId, {
-                parserfile: 'parsexml.js',
-                path: "/static/js/codemirror/",
-                stylesheet: "/static/css/xmlcolors.css",
-                parserConfig: {useHTMLKludges: false},
-                initCallback: function() {}
-            })
-            $(document).unbind('panel:load.' + id, load);
-        }
-        
-        var unload = function(event, panel) {
-            console.log('unload event!', panel, self);
-            if (panel == self) {
-                console.log('unloading panel', self);
-                $(document).unbind('panel:unload.' + id, unload);
+panel_hooks = {
+	load: function () {
+		var self = this;
+		var panel = self.contentDiv;
+
+        var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
+	$('textarea', panel).attr('id', textareaId);
+
+	var texteditor = CodeMirror.fromTextArea(textareaId, {            
+            parserfile: 'parsexml.js',
+            path: "{{STATIC_URL}}js/lib/codemirror/",
+            width: 'auto',
+            stylesheet: "{{STATIC_URL}}css/xmlcolors.css",
+            parserConfig: {useHTMLKludges: false},
+            textWrapping: false,
+            lineNumbers: true,
+            onChange: function() {
+		self.fireEvent('contentChanged');
+            },
+            initCallback: function(editor) {
+                // Editor is loaded
+                // Buttons are connected
+                // register callbacks for actions
+                texteditor.grabKeys(
+                    $.fbind(self, self.hotkeyPressed),
+                    $.fbind(self, self.isHotkey) );
+                
             }
-        };
-        
-        $(document).bind('panel:load.' + id, load);
-        $(document).bind('panel:unload.' + id, unload);
-    })();
+        })
+
+        $('.CodeMirror-content-wrapper').css({
+            width: '100%', height: '100%' });
+                    
+        this.texteditor = texteditor;
+        self._endload();       
+    },
+
+	unload: function() { 
+		this.texteditor = null;
+	},
+
+
+	//refresh: function() { }, // no support for refresh
+
+	saveInfo: function(saveInfo) {
+		var myInfo = {
+			url: "{% url file_xml fileid %}",
+			postData: {
+				content: this.texteditor.getCode()
+			} 
+		};
+		$.extend(saveInfo, myInfo);
+	},
+
+        toolbarResized: function() {
+            $('.iframe-container', this.contentDiv).css('top',
+                    $('.toolbar', this.contentDiv).outerHeight() );
+        }
+};
+
 </script>