From: Radek Czajka Date: Tue, 3 Aug 2010 11:02:51 +0000 (+0200) Subject: revert all the timeout stuff X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/f06b3e117258f7968b7df783064c2a4deb6e3879 revert all the timeout stuff --- diff --git a/redakcja/static/js/wiki/base.js b/redakcja/static/js/wiki/base.js index 3fa47ccd..61a3949b 100644 --- a/redakcja/static/js/wiki/base.js +++ b/redakcja/static/js/wiki/base.js @@ -298,7 +298,6 @@ reportErrors: function(errors) { var global = $("*[data-ui-error-for='__all__']", this.$elem); var unassigned = []; - var unassigned_text = ''; for (var field_name in errors) { @@ -306,7 +305,6 @@ if(!span.length) { unassigned.push(field_name); - unassigned_text += errors[field_name]; continue; } @@ -314,7 +312,7 @@ } if(unassigned.length > 0) - global.text( global.text() + unassigned_text); + global.text( global.text() + 'W formularzu wystąpiły błędy'); } }; diff --git a/redakcja/static/js/wiki/wikiapi.js b/redakcja/static/js/wiki/wikiapi.js index 87fbdac6..27ab97e2 100644 --- a/redakcja/static/js/wiki/wikiapi.js +++ b/redakcja/static/js/wiki/wikiapi.js @@ -219,7 +219,6 @@ type: "POST", dataType: "json", data: data, - timeout: 15000, success: function(data) { var changed = false; @@ -233,22 +232,16 @@ params['success'](self, changed, ((changed && "Udało się zapisać :)") || "Twoja wersja i serwera jest identyczna")); }, - error: function(xhr, msg) { - if (msg == 'timeout') { - params['failure'](self, { - "__message": "Przekroczony czas połączenia. Zmiany nie zostały zapisane." - }); - } - else { - try { - params['failure'](self, $.parseJSON(xhr.responseText)); - } - catch (e) { - params['failure'](self, { - "__message": "Nie udało się zapisać - błąd serwera." - }); - }; + error: function(xhr) { + try { + params['failure'](self, $.parseJSON(xhr.responseText)); } + catch (e) { + params['failure'](self, { + "__message": "

Nie udało się zapisać - błąd serwera.

" + }); + }; + } }); }; /* end of save() */