X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/bea8d1caad32069ceb8c68feea989fc551b7917d..cbb14d2ed3eb0b72a6c3c68ab93847923e6142f4:/redakcja/static/js/wiki/xslt.js
diff --git a/redakcja/static/js/wiki/xslt.js b/redakcja/static/js/wiki/xslt.js
index f7dbbf63..c7b846b5 100644
--- a/redakcja/static/js/wiki/xslt.js
+++ b/redakcja/static/js/wiki/xslt.js
@@ -17,7 +17,7 @@ function withStylesheets(code_block, onError)
if (!xml2htmlStylesheet) {
$.blockUI({message: 'Åadowanie arkuszy stylów...'});
$.ajax({
- url: STATIC_URL + 'xsl/wl2html_client.xsl',
+ url: STATIC_URL + 'xsl/wl2html_client.xsl?20110112',
dataType: 'xml',
timeout: 10000,
success: function(data) {
@@ -61,6 +61,7 @@ function withThemes(code_block, onError)
function xml2html(options) {
withStylesheets(function() {
var xml = options.xml.replace(/\/(\s+)/g, '
$1');
+ xml = xml.replace(/([^a-zA-Z0-9Ä
ÄÄÅÅóÅźżÄÄÄÅÅÃÅŹŻ\s<>«»\\*_!,:;?%."'=#()\/-]+)/g, '$1');
var parser = new DOMParser();
var serializer = new XMLSerializer();
var doc = parser.parseFromString(xml, 'text/xml');
@@ -256,6 +257,7 @@ HTMLSerializer.prototype.serialize = function(rootElement, stripOuter)
break;
};
};
+ self.result += text_buffer;
return this.result;
}
@@ -383,4 +385,4 @@ function html2text(params) {
} catch(e) {
params.error("Nie udaÅo siÄ zserializowaÄ tekstu:" + e)
}
-}
\ No newline at end of file
+}