Skip to content
Snippets Groups Projects
Commit 54d2f948 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

timeout for spell checker

This adds a timeout of 13 seconds to the spell checker. This doesn't
fix anything but ensures editing can be continued on a backend problem.

darcs-hash:20060620205616-7ad00-1d3440a8c9246843a1efbb6e16116ff462074943.gz
parent e441516e
No related branches found
No related tags found
No related merge requests found
......@@ -96,6 +96,7 @@ function ajax_spell_class(){
this.txtNoSug = 'No Suggestions';
this.txtChange= 'Change';
this.timer = null;
/**
* Initializes everything
......@@ -304,6 +305,14 @@ function ajax_spell_class(){
* @author Andreas Gohr <andi@splitbrain.org>
*/
this.start = function(){
if(ajax_spell.timer !== null){
window.clearTimeout(ajax_spell.timer);
ajax_spell.timer = null;
}else{
// there is no timer set, we timed out already
return;
}
var data = this.response;
var error = data.charAt(0);
data = data.substring(1);
......@@ -363,6 +372,27 @@ function ajax_spell_class(){
ajax_spell.setState('start');
};
/**
* Calback for the timeout handling
*
* Will be called when the aspell backend didn't return
*/
this.timedOut = function(){
if(ajax_spell.timer !== null){
window.clearTimeout(ajax_spell.timer);
ajax_spell.timer = null;
ajax_spell.textboxObj.disabled = false;
ajax_spell.showboxObj.style.display = 'none';
ajax_spell.textboxObj.style.display = 'block';
ajax_spell.editbarObj.style.visibility = 'visible';
ajax_spell.showboxObj.innerHTML = '';
ajax_spell.setState('start');
window.alert('Error: The spell checker did not respond');
}
};
// --- Callers ---
/**
......@@ -380,6 +410,9 @@ function ajax_spell_class(){
ajax.onCompletion = this.start;
ajax.runAJAX('call=check&utf8='+ajax_spell.utf8ok+
'&data='+encodeURIComponent(ajax_spell.textboxObj.value));
// abort after 13 seconds
this.timer = window.setTimeout(ajax_spell.timedOut,13000);
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment