2005-08-31 13:16:21 +00:00
|
|
|
function list_action() {
|
|
|
|
if (checkAddress() == false)
|
|
|
|
return;
|
|
|
|
if (checkAuth() == false)
|
|
|
|
return;
|
|
|
|
res.data.body = this.renderSkinAsString("list");
|
|
|
|
renderSkin("api");
|
2002-11-21 18:36:03 +00:00
|
|
|
}
|
|
|
|
|
2005-08-31 13:16:21 +00:00
|
|
|
function main_action() {
|
|
|
|
if (checkAddress() == false)
|
|
|
|
return;
|
|
|
|
if (checkAuth() == false)
|
|
|
|
return;
|
|
|
|
res.data.body = this.renderSkinAsString("main");
|
|
|
|
renderSkin("api");
|
2002-11-21 18:36:03 +00:00
|
|
|
}
|
|
|
|
|