1 {% load toolbar_tags %}
4 <div class="iframe-container" style="position: absolute; top: 48px; left:0px; right:0px; bottom: 0px;">
5 <textarea name="text">{{ text }}</textarea>
8 <script type="text/javascript" charset="utf-8">
11 function xmleditor_onload(event, panel) {
12 var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
13 $('textarea', panel).attr('id', textareaId);
14 var editor = CodeMirror.fromTextArea(textareaId, {
15 parserfile: 'parsexml.js',
16 path: "/static/js/codemirror/",
17 stylesheet: "/static/css/xmlcolors.css",
18 parserConfig: {useHTMLKludges: false},
19 onChange: function() {
20 $(document).trigger('panel:contentChanged', panel);
22 initCallback: function(editor) {
24 $('.toolbar-tabs li', panel).click(function() {
25 var id = $(this).attr('p:button-list');
26 $('.toolbar-tabs li', panel).removeClass('active');
27 $(this).addClass('active');
28 if (!$('.' + id, panel).is(':visible')) {
29 $('.toolbar-buttons ol', panel).not('#' + id).hide();
30 $('.' + id, panel).show();
35 $('.toolbar-buttons li', panel).each(function() {
36 var tag = $(this).attr('p:tag');
37 var handler = function() {
38 var text = editor.selection();
39 editor.replaceSelection('<' + tag + '>' + text + '</' + tag + '>');
40 if (text.length == 0) {
41 var pos = editor.cursorPosition();
42 editor.selectLines(pos.line, pos.character + tag.length + 2);
44 $(document).trigger('panel:contentChanged', panel);
46 if ($(this).attr('p:key')) {
47 keys[$(this).attr('p:key')] = handler;
49 $(this).click(handler)
52 editor.grabKeys(function(event) {
53 if (keys[event.keyCode]) {
54 keys[event.keyCode]();
56 }, function(event) { return event.altKey && keys[event.keyCode]; });
60 $(editor.frame).css({width: '100%', height: '100%'});
62 $('#toolbar-buttons li').wTooltip({
65 border: "1px solid #7F7D67",
67 background: "#FBFBC6",
74 // define the callback
75 load_callback = xmleditor_onload;