Package org.dbwiki.web.ui.printer

Examples of org.dbwiki.web.ui.printer.SettingsListingPrinter


                            // combinations of
                            // config files, can be
                            // used to revert.
        contentGenerator.put(
            DatabaseWikiContentGenerator.ContentContent,
            new SettingsListingPrinter(request));
      } else {
        throw new WikiRequestException(
            WikiRequestException.InvalidRequest, exchange.getRequestURI().toString());
      }
      page = HtmlTemplateDecorator.decorate(_template, contentGenerator);
View Full Code Here


    } else if (request.type().isURLDecoding()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new FileEditor(request, "Edit URL decoding rules"));
    } else if (request.type().isSettings()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new SettingsListingPrinter(request));
    } else if (request.type().isPageHistory()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentMenu,
          new PageMenuPrinter(request));
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new PageHistoryPrinter(request));
View Full Code Here

TOP

Related Classes of org.dbwiki.web.ui.printer.SettingsListingPrinter

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.