125126127128129130131132133134135
} else if (layout.getDisplayStyle().isTableStyle()) { hasContent = printNodesInTableStyle(list, versionParameter, layout, content); } if (hasContent) { return content.lines(); } else { return new HtmlPage(); } }
397398399400401402403404405406
} catch (WikiException e) { e.printStackTrace(); // don't throw exception because we can't } HtmlPage lines = body.lines(); for(int i = 0; i < lines.size(); i++) printer.print(lines.get(i)); } }