skeleton screen for new single page webapp

This commit is contained in:
rlawson
2014-08-07 14:22:20 -04:00
parent 4c1f6ecd1d
commit bef50d22b9
8 changed files with 638 additions and 317 deletions

View File

@ -196,12 +196,13 @@ public abstract class Screen {
*/
public void output(PrintWriter out) {
// format output -- then send to printwriter
// format output -- then send to printwriter
// otherwise we're doing way too much SSL encryption work
out.print(getContent());
}
// TODO we could hook all forms here with javascript call to ajax forms plugin
public String getContent() {
return (content == null) ? "" : content.toString();
}