X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/fa300c83de0c9788beb4e833c2003618e7d20646..470817c5149ca294bd929fb29632a91c985aef0a:/project/templates/explorer/panels/xmleditor.html?ds=sidebyside

diff --git a/project/templates/explorer/panels/xmleditor.html b/project/templates/explorer/panels/xmleditor.html
index ea4c4433..4a8362dd 100644
--- a/project/templates/explorer/panels/xmleditor.html
+++ b/project/templates/explorer/panels/xmleditor.html
@@ -1,55 +1,64 @@
 {% load toolbar_tags %}
+{% toolbar toolbar_groups toolbar_extra_group %}
 
-{% toolbar %}
-<div class="iframe-container" style="position: absolute; top: 48px; left:0px; right:0px; bottom: 0px;">
+<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() {
-	function xmleditor_onload(event, me) {
-		console.log('loading: ', me);
-	        var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
-        	$('textarea', me).attr('id', textareaId);
-		var editor = CodeMirror.fromTextArea(textareaId, {
-        	        parserfile: 'parsexml.js',
-                	path: "/static/js/codemirror/",
-	                stylesheet: "/static/css/xmlcolors.css",
-	                parserConfig: {useHTMLKludges: false},
-	        })
-		console.log('Frame is: ', editor.frame);
-		var frame = $(editor.frame)
-		frame.css({width: '100%', height: '100%'});
-	};
-
-	function xmleditor_onunload(event, me) {}
-
-	panel(xmleditor_onload, xmleditor_onunload);
-})();
-</script>
+panel_hooks = {
+	load: function () {
+		var self = this;
+		var panel = self.contentDiv;
 
-<!-- <script type="text/javascript" charset="utf-8">
-    (function() {
-        function resizeEditor(event, panel) {
-            var panel = panel || event.data.panel;
-            $('iframe', panel).height($(panel).height());
-        }
-        
-        panel(function(event, panel) {
-            console.log('loading panel', 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() {}
-            })
-            $(window).bind('resize', {'panel': panel}, resizeEditor);
-            resizeEditor(null, panel);
-        }, function(event, panel) {
-            console.log('unloaded xmleditor panel', panel);
+        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/codemirror/",
+            stylesheet: "{{STATIC_URL}}css/xmlcolors.css",
+            parserConfig: {useHTMLKludges: false},
+            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) );
+                
+            }
         })
-    })();
-</script> -->
+
+        $(texteditor.frame).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>