X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4419f93a01685b9864a6e78cb905c803ec0970b0..006c13d480258ab24c03abc8fef60aad8aa66e71:/project/templates/explorer/panels/xmleditor.html diff --git a/project/templates/explorer/panels/xmleditor.html b/project/templates/explorer/panels/xmleditor.html index 5c622bbf..74a68776 100644 --- a/project/templates/explorer/panels/xmleditor.html +++ b/project/templates/explorer/panels/xmleditor.html @@ -1,13 +1,11 @@ {% 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> -{% toolbar %} - <script type="text/javascript" charset="utf-8"> - panel_hooks = { load: function () { var self = this; @@ -18,9 +16,12 @@ panel_hooks = { var texteditor = CodeMirror.fromTextArea(textareaId, { parserfile: 'parsexml.js', - path: "{{STATIC_URL}}js/codemirror/", + 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'); }, @@ -35,8 +36,11 @@ panel_hooks = { } }) - $(texteditor.frame).css({width: '100%', height: '100%'}); + $('.CodeMirror-content-wrapper').css({ + width: '100%', height: '100%' }); + this.texteditor = texteditor; + self._endload(); }, unload: function() { @@ -48,7 +52,7 @@ panel_hooks = { saveInfo: function(saveInfo) { var myInfo = { - url: "{% url file_xml fpath %}", + url: "{% url file_xml fileid %}", postData: { content: this.texteditor.getCode() } @@ -57,8 +61,8 @@ panel_hooks = { }, toolbarResized: function() { - $('.iframe-container', self.contentDiv).css('top', - $('.toolbar', self.contentDiv).outerHeight() ); + $('.iframe-container', this.contentDiv).css('top', + $('.toolbar', this.contentDiv).outerHeight() ); } };