Personal tools
You are here: Home   Blog   Archive   2009  
 

Entries For: 2009

2009-11-27

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.

2009-05-24

Firekiss for Firebug > 1.3

Filed Under:

The new release fixes compatibility with Firebug 1.3. Further, it comes with a new feature : it allows to control production mode and development mode from Firebug.

At last, a new Firekiss release.

It fixes compatibility with Firebug 1.3.

It includes a new feature. You can now control development mode and log level from Firebug itself, iow without accessing the @@kss_devel_mode/ui URL (how many of you could recall that long URL ;-)

When the KSS or Ajax panels have the focus, the options menu that sits at the right of the toolbar might show two sections :

  • Production-Development
  • Debug-Info-Warning-Error

The first section allows you to toggle between both modes.

The second section allows you to select the log level you wish to see in the console. As it is only meaningful in development mode, it is not shown when you are in production mode.

Enjoy !