a bit of reorganisation inside web/views:
* move all workflow related stuff into views/workflow.py
* move all schema related stuff into views/schema.py
* move all RSS related stuff into views/xmlrss.py
* start new editforms module, designed to contains new automatic forms code
function load_now(eltsel, holesel, reloadable) {
var lazydiv = jQuery(eltsel);
var hole = lazydiv.children(holesel);
if ((hole.length == 0) && !reloadable) {
/* the hole is already filled */
return;
}
lazydiv.loadxhtml(lazydiv.attr('cubicweb:loadurl'));
}
function trigger_load(divid) {
jQuery('#lazy-' + divid).trigger('load_' + divid);
}