kss.core new release
Filed Under:
We released kss.core 1.4.8 with a new client action to control server actions timeout.
We added a new client action setActionServerTimeout:
It allows to setup timeout separately for each server action. You call it in the stylesheet just before the server action. It has a value parameter where you specify the timeout in milliseconds:
div.timeout:click {
action-client: setActionServerTimeout;
setActionServerTimeout-value: 10000;
action-server: bla;
}
You can also use it to change the global default timeout value at body load time:
body:load {
action-client: setActionServerTimeout;
setActionServerTimeout-value: 5000;
}
http://pypi.python.org/pypi/kss.core/1.4.8
The relase is compatible with Plone 3.3 at least.