buffer.append("<table width=\"100%\" cellspacing=\"0\" cellpadding=\"3\" border=\"0\" >\n");
addTableRow( "navigationbar" );
addTableColumn( "<b><font class=\"title\">Forums</font></b>", null, "align=\"left\" colspan=\"2\"" );
tableRowEnd();
for( Iterator i = forum.newsgroupIterator(); i.hasNext(); ) {
NewsGroup t = (NewsGroup) i.next();
addTableRow( "tableheader" );
buffer.append( "\n<td align=\"center\" valign=\"top\">" );
buffer.append( createIcon( request.createUrl("/linkOpaque.gif"), 6, 11 ) );
buffer.append( "</td>\n" );
buffer.append( "\n<td nowrap align=\"left\"><p><small>");
// createLink( t.getName(), getForumUrl( t.getUrl() ), null );
buffer.append( "<br> created by ");
// buffer.append( t.getCreator() );
buffer.append( "<br> ");
buffer.append( t.size() );
buffer.append( " Messages" );
buffer.append( "<br> last modified (" );
buffer.append( t.getLastModified() );
buffer.append( ")" );
buffer.append( "</small></p></td>\n" );
tableRowEnd();
}
buffer.append("</table>\n");