-<!-- <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/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) );
+
+ }