2003-01-07 14:45:50 +00:00
|
|
|
/**
|
|
|
|
* wrapper to access colorpicker also from site
|
|
|
|
*/
|
|
|
|
|
|
|
|
function colorpicker_action() {
|
|
|
|
root.colorpicker_action();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wrapper to access safescripts also from site
|
|
|
|
*/
|
|
|
|
|
|
|
|
function safescripts_action() {
|
|
|
|
root.safescripts_action();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-08 12:10:19 +00:00
|
|
|
/**
|
|
|
|
* wrapper to make style.skin public
|
|
|
|
*/
|
|
|
|
|
|
|
|
function stylesheet_action() {
|
2002-12-01 19:26:40 +00:00
|
|
|
res.dependsOn(this.modifytime);
|
|
|
|
res.dependsOn(app.skinfiles["site"]["stylesheet"]);
|
|
|
|
res.digest();
|
|
|
|
res.contentType = "text/css";
|
|
|
|
this.renderSkin("style");
|
|
|
|
return;
|
2002-08-08 12:10:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wrapper to make javascript.skin public
|
|
|
|
*/
|
|
|
|
|
|
|
|
function javascript_action() {
|
2002-12-01 19:26:40 +00:00
|
|
|
res.dependsOn(this.modifytime);
|
|
|
|
res.dependsOn(app.skinfiles["site"]["javascript"]);
|
|
|
|
res.digest();
|
|
|
|
res.contentType = "text/javascript";
|
|
|
|
this.renderSkin("javascript");
|
|
|
|
return;
|
2002-08-08 12:10:19 +00:00
|
|
|
}
|
2002-08-14 08:55:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2002-08-14 09:19:33 +00:00
|
|
|
* redirect requests for rss092 to rss
|
2002-08-14 08:55:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
function rss092_action() {
|
2002-09-20 16:13:46 +00:00
|
|
|
this.rss_action();
|
2003-01-07 14:45:50 +00:00
|
|
|
return;
|
2002-08-14 09:19:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* redirect requests for rss10 to rss
|
|
|
|
*/
|
|
|
|
|
|
|
|
function rss10_action() {
|
2002-09-20 16:13:46 +00:00
|
|
|
this.rss_action();
|
2003-01-07 14:45:50 +00:00
|
|
|
return;
|
2002-08-14 08:55:48 +00:00
|
|
|
}
|