%%comment-view-anonymous-html%%
progmin : / (context #148)
2002-05-29 11:01:02

%%preprocess%%
$parentobject= $this->getParent();
$this->parentTitle= $parentobject->title;
$this->parentUrl= $parentobject->baseUrl;

$this->beryliumToHtml(); 
$this->getRuntimeVars();

// redirect to object view, comment anchor...
$redirect= "Location: $this->parentUrl?method=view$session->cgi#comment:$this->id";
berror("Comment view: redirect will be to $redirect",1);
if (!$GLOBALS['debug']) {
	header("$redirect");
	}

%%header%%

%%css%%
.commentHeadline { font-family: serif; color: #555555; font-size: 24px; line-height: 38px; font-style: italic; font-weight: bold; }
.commentFlavor { color: #444488; font-size: 14px; line-height: 14px; margin-left: 14px; }
.commentByline { color: #555555; font-size: 14px; line-height: 18px; }
.commentBody { color: #444488; font-size: 14px; line-height: 20px; margin-left: 14px; }

.editorinfo {font-size: 12px; font-color: #999999; }
.editorinfo b {font-size: 12px; font-color: #999999; font-weight: bold; }

%%template%%
<table>
	<tr>
		<td valign='top' >
 			<span class='commentFlavor'>Comment on <a href="$this->parentUrl">$this->parentTitle</a>:<br></span>
			<span class='commentByline'>By $this->authorTag on $this->created.$this->editorinfo<br></span>
			<span class='commentHeadline'>$this->headline<br></span>
			<p class='commentBody'>$this->body</p>
		</td>
	</tr>
</table>

%%listrow%%

%%nullobject%%
Sorry, comment not found.

%%footer%%

%%postprocess%%

%%end of context%%
