X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/22562ad88cc1bfc34e22ff02dec66fb2e975e7ac..cbb14d2ed3eb0b72a6c3c68ab93847923e6142f4:/redakcja/static/js/wiki/xslt.js?ds=sidebyside

diff --git a/redakcja/static/js/wiki/xslt.js b/redakcja/static/js/wiki/xslt.js
index 6855384b..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, '<br />$1');
+        xml = xml.replace(/([^a-zA-Z0-9ąćęłńóśźżĄĆĘŁŃÓŚŹŻ\s<>«»\\*_!,:;?%."'=#()\/-]+)/g, '<alien>$1</alien>');
         var parser = new DOMParser();
         var serializer = new XMLSerializer();
         var doc = parser.parseFromString(xml, 'text/xml');
@@ -384,4 +385,4 @@ function html2text(params) {
 	} catch(e) {
 		params.error("Nie udało się zserializować tekstu:" + e)
 	}
-}
\ No newline at end of file
+}