Package org.dbwiki.web.ui.printer

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


                RequestParameter.ParameterURL));
      } else if (request.type().isStyleSheet()) { // Editing the
                            // stylesheet
        contentGenerator.put(
            DatabaseWikiContentGenerator.ContentContent,
            new FileEditor(request, "Edit style sheet"));
      } else if (request.type().isTemplate()) { // Editing the template
        contentGenerator.put(
            DatabaseWikiContentGenerator.ContentContent,
            new FileEditor(request, "Edit template"));
      } else if (request.type().isURLDecoding()) { // Editing the URL
                              // decoding rules
        contentGenerator.put(
            DatabaseWikiContentGenerator.ContentContent,
            new FileEditor(request, "Edit URL decoding rules"));
      } else if (request.type().isSettings()) { // The list of prior
                            // combinations of
                            // config files, can be
                            // used to revert.
        contentGenerator.put(
View Full Code Here


    } else if (request.type().isLayout()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new LayoutEditor(request));
    } else if (request.type().isStyleSheet()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new FileEditor(request, "Edit style sheet"));
    } else if (request.type().isTemplate()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new FileEditor(request, "Edit template"));
    } 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,
View Full Code Here

TOP

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

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.