2001-08-15 09:00:35 +00:00
|
|
|
/**
|
2002-01-05 02:34:19 +00:00
|
|
|
* macro writes storylist to response-object
|
|
|
|
* kept for backwards-compatibility only
|
2001-08-15 09:00:35 +00:00
|
|
|
*/
|
|
|
|
|
2002-01-05 02:34:19 +00:00
|
|
|
function storylist_macro(param) {
|
|
|
|
res.write(res.data.storylist);
|
|
|
|
return;
|
2001-08-15 09:00:35 +00:00
|
|
|
}
|
|
|
|
|
2001-12-04 13:09:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Overwrite link macro to use groupname. No fancy options.
|
|
|
|
*/
|
|
|
|
function link_macro () {
|
2002-06-03 16:45:08 +00:00
|
|
|
var attr = new Object();
|
|
|
|
attr.href = this.href();
|
|
|
|
openMarkupElement("a", attr);
|
|
|
|
res.write(this.groupname);
|
|
|
|
closeMarkupElement("a");
|
|
|
|
}
|