From: Radek Czajka Date: Fri, 19 Aug 2011 11:24:53 +0000 (+0200) Subject: Merge branch 'master' into with-dvcs X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/fdd62169ba22c4c1be2f2306b5339eadd74ffb6d?ds=inline;hp=-c Merge branch 'master' into with-dvcs --- fdd62169ba22c4c1be2f2306b5339eadd74ffb6d diff --combined redakcja/static/js/wiki/xslt.js index 4f562a2b,9efeba3b..ff36666f --- a/redakcja/static/js/wiki/xslt.js +++ b/redakcja/static/js/wiki/xslt.js @@@ -17,7 -17,7 +17,7 @@@ function withStylesheets(code_block, on if (!xml2htmlStylesheet) { $.blockUI({message: 'Ładowanie arkuszy stylów...'}); $.ajax({ - url: STATIC_URL + 'xsl/wl2html_client.xsl?20110112', + url: STATIC_URL + 'xsl/wl2html_client.xsl?20110520', dataType: 'xml', timeout: 10000, success: function(data) { @@@ -40,7 -40,7 +40,7 @@@ function withThemes(code_block, onError { if (typeof withThemes.canon == 'undefined') { $.ajax({ - url: '/themes', + url: '/editor/themes', dataType: 'text', success: function(data) { withThemes.canon = data.split('\n'); @@@ -85,7 -85,7 +85,7 @@@ function xml2html(options) source.text(''); options.error(error.text(), source_text); } else { - options.success(doc.firstChild); + options.success(doc.childNodes); withThemes(function(canonThemes) { if (canonThemes != null) { @@@ -253,13 -253,8 +253,13 @@@ HTMLSerializer.prototype.serialize = fu break; case TEXT_NODE: self.result += text_buffer; - text_buffer = token.node.nodeValue; + text_buffer = token.node.nodeValue.replace('&', '&').replace('<', '<'); break; + case COMMENT_NODE: + self.result += text_buffer; + text_buffer = ''; + self.result += ''; + break; }; }; self.result += text_buffer;