From be9879c2a845b9d54ddb2aa61f970cffcde01ace Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Mon, 6 Sep 2010 15:26:07 +0200 Subject: [PATCH] sexy error message --- redakcja/static/js/wiki/view_editor_wysiwyg.js | 4 ++-- redakcja/static/js/wiki/xslt.js | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) 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); -- 2.20.1