From: Radek Czajka Date: Mon, 6 Sep 2010 13:26:07 +0000 (+0200) Subject: sexy error message X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/be9879c2a845b9d54ddb2aa61f970cffcde01ace sexy error message --- diff --git a/redakcja/static/js/wiki/view_editor_wysiwyg.js b/redakcja/static/js/wiki/view_editor_wysiwyg.js index ad48a21c..37e86139 100644 --- a/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -486,8 +486,8 @@ $('#html-view').html(element); _finalize(success); }, - error: function(text){ - $('#html-view').html('

Wystąpił błąd:

'+text+'
'); + error: function(text, source){ + $('#html-view').html('

Wystąpił błąd:

'+text+'

'+source.replace(/&/g, '&').replace(/');
                 _finalize(failure);
             }
         });
diff --git a/redakcja/static/js/wiki/xslt.js b/redakcja/static/js/wiki/xslt.js
index 791cf1a3..a0d0d4bc 100644
--- a/redakcja/static/js/wiki/xslt.js
+++ b/redakcja/static/js/wiki/xslt.js
@@ -58,7 +58,6 @@ function withThemes(code_block, onError)
 }
 
 
-
 function xml2html(options) {
     withStylesheets(function() {
         var xml = options.xml.replace(/\/(\s+)/g, '
$1'); @@ -80,7 +79,10 @@ function xml2html(options) { } if (error.length > 0 && options.error) { - options.error(error.text()); + source = $('sourcetext', doc); + source_text = source.text(); + source.text(''); + options.error(error.text(), source_text); } else { options.success(doc.firstChild);