- included link to manage console (but not if pages are rendered to static html)

- nicer feedback after rendering
This commit is contained in:
stefanp 2002-12-04 09:36:21 +00:00
parent 862cdef847
commit 6b534edeab
3 changed files with 16 additions and 3 deletions

View file

@ -24,6 +24,13 @@ function link_macro (param) { return renderLink (this, param); }
//// END OF COPIED FUNCTIONS
function linkToManage_macro (param) {
if (res.data.rendering != true) {
return ('<a href="' + root.href ("main") + '" target="_top">back to manage console</a>');
}
}
function headline_macro (param) {
res.write (this.getName ());
}