things can now be rendered to static html, new helma features are supported (prototype extension), everyhting is done in a nice and clean way with skins.
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
function list_action () {
|
|
res.data.body = this.renderSkinAsString ("list");
|
|
renderSkin ("api");
|
|
}
|
|
|
|
function main_action () {
|
|
res.data.body = this.renderSkinAsString ("main");
|
|
renderSkin ("api");
|
|
}
|
|
|