Package org.dbwiki.web.ui.printer.page

Examples of org.dbwiki.web.ui.printer.page.PageHistoryPrinter


          new SettingsListingPrinter(request));
    } else if (request.type().isPageHistory()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentMenu,
          new PageMenuPrinter(request));
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new PageHistoryPrinter(request));
    } else {
      throw new WikiRequestException(WikiRequestException.InvalidRequest,
          exchange.getRequestURI().toASCIIString());
    }
    exchange.send(HtmlTemplateDecorator.decorate(_template, contentGenerator));
View Full Code Here

TOP

Related Classes of org.dbwiki.web.ui.printer.page.PageHistoryPrinter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.