$('#html-view').html(element);
_finalize(success);
},
- error: function(text){
- $('#html-view').html('<p class="error">Wystąpił błąd:</p><pre>'+text+'</pre>');
+ error: function(text, source){
+ $('#html-view').html('<p class="error">Wystąpił błąd:</p><p>'+text+'</p><pre>'+source.replace(/&/g, '&').replace(/</g, '<')+'</pre>');
_finalize(failure);
}
});
}
-
function xml2html(options) {
withStylesheets(function() {
var xml = options.xml.replace(/\/(\s+)/g, '<br />$1');
}
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);