1 {% load toolbar_tags %}
2 {% toolbar toolbar_groups toolbar_extra_group %}
4 <div class="iframe-container" style="position: absolute; top: 40px; left:0px; right:0px; bottom: 0px;">
5 <textarea name="text">{{ text }}</textarea>
8 <script type="text/javascript" charset="utf-8">
12 var panel = self.contentDiv;
14 var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
15 $('textarea', panel).attr('id', textareaId);
17 var texteditor = CodeMirror.fromTextArea(textareaId, {
18 parserfile: 'parsexml.js',
19 path: "{{STATIC_URL}}js/lib/codemirror/",
21 stylesheet: "{{STATIC_URL}}css/xmlcolors.css",
22 parserConfig: {useHTMLKludges: false},
25 onChange: function() {
26 self.fireEvent('contentChanged');
28 initCallback: function(editor) {
30 // Buttons are connected
31 // register callbacks for actions
33 $.fbind(self, self.hotkeyPressed),
34 $.fbind(self, self.isHotkey) );
39 $('.CodeMirror-content-wrapper').css({
40 width: '100%', height: '100%' });
42 this.texteditor = texteditor;
47 this.texteditor = null;
51 //refresh: function() { }, // no support for refresh
53 saveInfo: function(saveInfo) {
55 url: "{% url file_xml fileid %}",
57 content: this.texteditor.getCode()
60 $.extend(saveInfo, myInfo);
63 toolbarResized: function() {
64 $('.iframe-container', this.contentDiv).css('top',
65 $('.toolbar', this.contentDiv).outerHeight() );