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