Quellcode durchsuchen

modify error pages

Shinsuke Sugaya vor 9 Jahren
Ursprung
Commit
f22d810f13
28 geänderte Dateien mit 42 neuen und 1184 gelöschten Zeilen
  1. 14 0
      src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
  2. 17 0
      src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
  3. 3 69
      src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
  4. 4 4
      src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
  5. 2 2
      src/main/resources/fess_message.properties
  6. 0 49
      src/main/webapp/WEB-INF/view/admin/boostdocumentrule/error.jsp
  7. 0 50
      src/main/webapp/WEB-INF/view/admin/crawlingsession/error.jsp
  8. 0 50
      src/main/webapp/WEB-INF/view/admin/dataconfig/error.jsp
  9. 0 50
      src/main/webapp/WEB-INF/view/admin/dict/error.jsp
  10. 2 12
      src/main/webapp/WEB-INF/view/admin/error/error.jsp
  11. 0 50
      src/main/webapp/WEB-INF/view/admin/failureurl/error.jsp
  12. 0 50
      src/main/webapp/WEB-INF/view/admin/fileauthentication/error.jsp
  13. 0 50
      src/main/webapp/WEB-INF/view/admin/fileconfig/error.jsp
  14. 0 50
      src/main/webapp/WEB-INF/view/admin/group/error.jsp
  15. 0 50
      src/main/webapp/WEB-INF/view/admin/joblog/error.jsp
  16. 0 50
      src/main/webapp/WEB-INF/view/admin/keymatch/error.jsp
  17. 0 50
      src/main/webapp/WEB-INF/view/admin/labeltype/error.jsp
  18. 0 50
      src/main/webapp/WEB-INF/view/admin/overlappinghost/error.jsp
  19. 0 49
      src/main/webapp/WEB-INF/view/admin/pathmapping/error.jsp
  20. 0 50
      src/main/webapp/WEB-INF/view/admin/requestheader/error.jsp
  21. 0 50
      src/main/webapp/WEB-INF/view/admin/role/error.jsp
  22. 0 50
      src/main/webapp/WEB-INF/view/admin/roletype/error.jsp
  23. 0 50
      src/main/webapp/WEB-INF/view/admin/scheduledjob/error.jsp
  24. 0 50
      src/main/webapp/WEB-INF/view/admin/suggestbadword/error.jsp
  25. 0 50
      src/main/webapp/WEB-INF/view/admin/suggestelevateword/error.jsp
  26. 0 50
      src/main/webapp/WEB-INF/view/admin/user/error.jsp
  27. 0 50
      src/main/webapp/WEB-INF/view/admin/webauthentication/error.jsp
  28. 0 49
      src/main/webapp/WEB-INF/view/admin/webconfig/error.jsp

+ 14 - 0
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

@@ -24,6 +24,8 @@ import org.codelibs.core.beans.util.CopyOptions;
 import org.codelibs.fess.mylasta.action.FessMessages;
 import org.dbflute.optional.OptionalThing;
 import org.lastaflute.di.util.LdiFileUtil;
+import org.lastaflute.web.callback.TypicalEmbeddedKeySupplier;
+import org.lastaflute.web.callback.TypicalKey.TypicalSimpleEmbeddedKeySupplier;
 import org.lastaflute.web.login.LoginManager;
 import org.lastaflute.web.util.LaServletContextUtil;
 import org.lastaflute.web.validation.VaMessenger;
@@ -91,4 +93,16 @@ public abstract class FessAdminAction extends FessBaseAction {
     protected OptionalThing<LoginManager> myLoginManager() {
         return OptionalThing.of(fessLoginAssist);
     }
+
+    // ===================================================================================
+    //                                                                            Override
+    //                                                                           =========
+    @Override
+    protected TypicalEmbeddedKeySupplier newTypicalEmbeddedKeySupplier() {
+        return new TypicalSimpleEmbeddedKeySupplier() {
+            public String getErrorMessageForwardPath() {
+                return "/admin/error/error.jsp";
+            }
+        };
+    }
 }

+ 17 - 0
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

@@ -44,6 +44,8 @@ import org.codelibs.fess.helper.ViewHelper;
 import org.codelibs.fess.screenshot.ScreenShotManager;
 import org.dbflute.optional.OptionalThing;
 import org.lastaflute.web.callback.ActionRuntime;
+import org.lastaflute.web.callback.TypicalEmbeddedKeySupplier;
+import org.lastaflute.web.callback.TypicalKey.TypicalSimpleEmbeddedKeySupplier;
 import org.lastaflute.web.login.LoginManager;
 import org.lastaflute.web.response.ActionResponse;
 import org.lastaflute.web.util.LaRequestUtil;
@@ -92,6 +94,18 @@ public abstract class FessSearchAction extends FessBaseAction {
 
     protected boolean favoriteSupport;
 
+    // ===================================================================================
+    //                                                                            Override
+    //                                                                           =========
+    @Override
+    protected TypicalEmbeddedKeySupplier newTypicalEmbeddedKeySupplier() {
+        return new TypicalSimpleEmbeddedKeySupplier() {
+            public String getErrorMessageForwardPath() {
+                return "/error/system.jsp";
+            }
+        };
+    }
+
     @Override
     public ActionResponse hookBefore(final ActionRuntime runtime) { // application may override
         searchLogSupport = Constants.TRUE.equals(crawlerProperties.getProperty(Constants.SEARCH_LOG_PROPERTY, Constants.TRUE));
@@ -132,6 +146,9 @@ public abstract class FessSearchAction extends FessBaseAction {
         }
     }
 
+    // ===================================================================================
+    //                                                                             Helpers
+    //                                                                           =========
     protected void searchAvailable() {
         final String supportedSearch =
                 crawlerProperties.getProperty(Constants.SUPPORTED_SEARCH_FEATURE_PROPERTY, Constants.SUPPORTED_SEARCH_WEB);

+ 3 - 69
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

@@ -14,18 +14,12 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/boostdocumentrule/edit.jsp */
     HtmlNext path_AdminBoostdocumentrule_EditJsp = new HtmlNext("/admin/boostdocumentrule/edit.jsp");
 
-    /** The path of the HTML: /admin/boostdocumentrule/error.jsp */
-    HtmlNext path_AdminBoostdocumentrule_ErrorJsp = new HtmlNext("/admin/boostdocumentrule/error.jsp");
-
     /** The path of the HTML: /admin/boostdocumentrule/index.jsp */
     HtmlNext path_AdminBoostdocumentrule_IndexJsp = new HtmlNext("/admin/boostdocumentrule/index.jsp");
 
     /** The path of the HTML: /admin/crawlingsession/confirm.jsp */
     HtmlNext path_AdminCrawlingsession_ConfirmJsp = new HtmlNext("/admin/crawlingsession/confirm.jsp");
 
-    /** The path of the HTML: /admin/crawlingsession/error.jsp */
-    HtmlNext path_AdminCrawlingsession_ErrorJsp = new HtmlNext("/admin/crawlingsession/error.jsp");
-
     /** The path of the HTML: /admin/crawlingsession/index.jsp */
     HtmlNext path_AdminCrawlingsession_IndexJsp = new HtmlNext("/admin/crawlingsession/index.jsp");
 
@@ -38,9 +32,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/dataconfig/edit.jsp */
     HtmlNext path_AdminDataconfig_EditJsp = new HtmlNext("/admin/dataconfig/edit.jsp");
 
-    /** The path of the HTML: /admin/dataconfig/error.jsp */
-    HtmlNext path_AdminDataconfig_ErrorJsp = new HtmlNext("/admin/dataconfig/error.jsp");
-
     /** The path of the HTML: /admin/dataconfig/index.jsp */
     HtmlNext path_AdminDataconfig_IndexJsp = new HtmlNext("/admin/dataconfig/index.jsp");
 
@@ -50,9 +41,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/design/admin_design_edit.jsp */
     HtmlNext path_AdminDesign_AdminDesignEditJsp = new HtmlNext("/admin/design/admin_design_edit.jsp");
 
-    /** The path of the HTML: /admin/dict/error.jsp */
-    HtmlNext path_AdminDict_ErrorJsp = new HtmlNext("/admin/dict/error.jsp");
-
     /** The path of the HTML: /admin/dict/index.jsp */
     HtmlNext path_AdminDict_IndexJsp = new HtmlNext("/admin/dict/index.jsp");
 
@@ -92,12 +80,12 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/dict/synonym/upload.jsp */
     HtmlNext path_AdminDictSynonym_UploadJsp = new HtmlNext("/admin/dict/synonym/upload.jsp");
 
+    /** The path of the HTML: /admin/error/error.jsp */
+    HtmlNext path_AdminError_ErrorJsp = new HtmlNext("/admin/error/error.jsp");
+
     /** The path of the HTML: /admin/failureurl/confirm.jsp */
     HtmlNext path_AdminFailureurl_ConfirmJsp = new HtmlNext("/admin/failureurl/confirm.jsp");
 
-    /** The path of the HTML: /admin/failureurl/error.jsp */
-    HtmlNext path_AdminFailureurl_ErrorJsp = new HtmlNext("/admin/failureurl/error.jsp");
-
     /** The path of the HTML: /admin/failureurl/index.jsp */
     HtmlNext path_AdminFailureurl_IndexJsp = new HtmlNext("/admin/failureurl/index.jsp");
 
@@ -107,9 +95,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/fileauthentication/edit.jsp */
     HtmlNext path_AdminFileauthentication_EditJsp = new HtmlNext("/admin/fileauthentication/edit.jsp");
 
-    /** The path of the HTML: /admin/fileauthentication/error.jsp */
-    HtmlNext path_AdminFileauthentication_ErrorJsp = new HtmlNext("/admin/fileauthentication/error.jsp");
-
     /** The path of the HTML: /admin/fileauthentication/index.jsp */
     HtmlNext path_AdminFileauthentication_IndexJsp = new HtmlNext("/admin/fileauthentication/index.jsp");
 
@@ -119,9 +104,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/fileconfig/edit.jsp */
     HtmlNext path_AdminFileconfig_EditJsp = new HtmlNext("/admin/fileconfig/edit.jsp");
 
-    /** The path of the HTML: /admin/fileconfig/error.jsp */
-    HtmlNext path_AdminFileconfig_ErrorJsp = new HtmlNext("/admin/fileconfig/error.jsp");
-
     /** The path of the HTML: /admin/fileconfig/index.jsp */
     HtmlNext path_AdminFileconfig_IndexJsp = new HtmlNext("/admin/fileconfig/index.jsp");
 
@@ -134,18 +116,12 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/group/edit.jsp */
     HtmlNext path_AdminGroup_EditJsp = new HtmlNext("/admin/group/edit.jsp");
 
-    /** The path of the HTML: /admin/group/error.jsp */
-    HtmlNext path_AdminGroup_ErrorJsp = new HtmlNext("/admin/group/error.jsp");
-
     /** The path of the HTML: /admin/group/index.jsp */
     HtmlNext path_AdminGroup_IndexJsp = new HtmlNext("/admin/group/index.jsp");
 
     /** The path of the HTML: /admin/joblog/confirm.jsp */
     HtmlNext path_AdminJoblog_ConfirmJsp = new HtmlNext("/admin/joblog/confirm.jsp");
 
-    /** The path of the HTML: /admin/joblog/error.jsp */
-    HtmlNext path_AdminJoblog_ErrorJsp = new HtmlNext("/admin/joblog/error.jsp");
-
     /** The path of the HTML: /admin/joblog/index.jsp */
     HtmlNext path_AdminJoblog_IndexJsp = new HtmlNext("/admin/joblog/index.jsp");
 
@@ -155,9 +131,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/keymatch/edit.jsp */
     HtmlNext path_AdminKeymatch_EditJsp = new HtmlNext("/admin/keymatch/edit.jsp");
 
-    /** The path of the HTML: /admin/keymatch/error.jsp */
-    HtmlNext path_AdminKeymatch_ErrorJsp = new HtmlNext("/admin/keymatch/error.jsp");
-
     /** The path of the HTML: /admin/keymatch/index.jsp */
     HtmlNext path_AdminKeymatch_IndexJsp = new HtmlNext("/admin/keymatch/index.jsp");
 
@@ -167,9 +140,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/labeltype/edit.jsp */
     HtmlNext path_AdminLabeltype_EditJsp = new HtmlNext("/admin/labeltype/edit.jsp");
 
-    /** The path of the HTML: /admin/labeltype/error.jsp */
-    HtmlNext path_AdminLabeltype_ErrorJsp = new HtmlNext("/admin/labeltype/error.jsp");
-
     /** The path of the HTML: /admin/labeltype/index.jsp */
     HtmlNext path_AdminLabeltype_IndexJsp = new HtmlNext("/admin/labeltype/index.jsp");
 
@@ -182,9 +152,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/overlappinghost/edit.jsp */
     HtmlNext path_AdminOverlappinghost_EditJsp = new HtmlNext("/admin/overlappinghost/edit.jsp");
 
-    /** The path of the HTML: /admin/overlappinghost/error.jsp */
-    HtmlNext path_AdminOverlappinghost_ErrorJsp = new HtmlNext("/admin/overlappinghost/error.jsp");
-
     /** The path of the HTML: /admin/overlappinghost/index.jsp */
     HtmlNext path_AdminOverlappinghost_IndexJsp = new HtmlNext("/admin/overlappinghost/index.jsp");
 
@@ -194,9 +161,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/pathmapping/edit.jsp */
     HtmlNext path_AdminPathmapping_EditJsp = new HtmlNext("/admin/pathmapping/edit.jsp");
 
-    /** The path of the HTML: /admin/pathmapping/error.jsp */
-    HtmlNext path_AdminPathmapping_ErrorJsp = new HtmlNext("/admin/pathmapping/error.jsp");
-
     /** The path of the HTML: /admin/pathmapping/index.jsp */
     HtmlNext path_AdminPathmapping_IndexJsp = new HtmlNext("/admin/pathmapping/index.jsp");
 
@@ -206,9 +170,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/requestheader/edit.jsp */
     HtmlNext path_AdminRequestheader_EditJsp = new HtmlNext("/admin/requestheader/edit.jsp");
 
-    /** The path of the HTML: /admin/requestheader/error.jsp */
-    HtmlNext path_AdminRequestheader_ErrorJsp = new HtmlNext("/admin/requestheader/error.jsp");
-
     /** The path of the HTML: /admin/requestheader/index.jsp */
     HtmlNext path_AdminRequestheader_IndexJsp = new HtmlNext("/admin/requestheader/index.jsp");
 
@@ -218,9 +179,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/role/edit.jsp */
     HtmlNext path_AdminRole_EditJsp = new HtmlNext("/admin/role/edit.jsp");
 
-    /** The path of the HTML: /admin/role/error.jsp */
-    HtmlNext path_AdminRole_ErrorJsp = new HtmlNext("/admin/role/error.jsp");
-
     /** The path of the HTML: /admin/role/index.jsp */
     HtmlNext path_AdminRole_IndexJsp = new HtmlNext("/admin/role/index.jsp");
 
@@ -230,9 +188,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/roletype/edit.jsp */
     HtmlNext path_AdminRoletype_EditJsp = new HtmlNext("/admin/roletype/edit.jsp");
 
-    /** The path of the HTML: /admin/roletype/error.jsp */
-    HtmlNext path_AdminRoletype_ErrorJsp = new HtmlNext("/admin/roletype/error.jsp");
-
     /** The path of the HTML: /admin/roletype/index.jsp */
     HtmlNext path_AdminRoletype_IndexJsp = new HtmlNext("/admin/roletype/index.jsp");
 
@@ -242,9 +197,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/scheduledjob/edit.jsp */
     HtmlNext path_AdminScheduledjob_EditJsp = new HtmlNext("/admin/scheduledjob/edit.jsp");
 
-    /** The path of the HTML: /admin/scheduledjob/error.jsp */
-    HtmlNext path_AdminScheduledjob_ErrorJsp = new HtmlNext("/admin/scheduledjob/error.jsp");
-
     /** The path of the HTML: /admin/scheduledjob/index.jsp */
     HtmlNext path_AdminScheduledjob_IndexJsp = new HtmlNext("/admin/scheduledjob/index.jsp");
 
@@ -263,9 +215,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/suggestbadword/edit.jsp */
     HtmlNext path_AdminSuggestbadword_EditJsp = new HtmlNext("/admin/suggestbadword/edit.jsp");
 
-    /** The path of the HTML: /admin/suggestbadword/error.jsp */
-    HtmlNext path_AdminSuggestbadword_ErrorJsp = new HtmlNext("/admin/suggestbadword/error.jsp");
-
     /** The path of the HTML: /admin/suggestbadword/index.jsp */
     HtmlNext path_AdminSuggestbadword_IndexJsp = new HtmlNext("/admin/suggestbadword/index.jsp");
 
@@ -281,9 +230,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/suggestelevateword/edit.jsp */
     HtmlNext path_AdminSuggestelevateword_EditJsp = new HtmlNext("/admin/suggestelevateword/edit.jsp");
 
-    /** The path of the HTML: /admin/suggestelevateword/error.jsp */
-    HtmlNext path_AdminSuggestelevateword_ErrorJsp = new HtmlNext("/admin/suggestelevateword/error.jsp");
-
     /** The path of the HTML: /admin/suggestelevateword/index.jsp */
     HtmlNext path_AdminSuggestelevateword_IndexJsp = new HtmlNext("/admin/suggestelevateword/index.jsp");
 
@@ -302,9 +248,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/user/edit.jsp */
     HtmlNext path_AdminUser_EditJsp = new HtmlNext("/admin/user/edit.jsp");
 
-    /** The path of the HTML: /admin/user/error.jsp */
-    HtmlNext path_AdminUser_ErrorJsp = new HtmlNext("/admin/user/error.jsp");
-
     /** The path of the HTML: /admin/user/index.jsp */
     HtmlNext path_AdminUser_IndexJsp = new HtmlNext("/admin/user/index.jsp");
 
@@ -314,9 +257,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/webauthentication/edit.jsp */
     HtmlNext path_AdminWebauthentication_EditJsp = new HtmlNext("/admin/webauthentication/edit.jsp");
 
-    /** The path of the HTML: /admin/webauthentication/error.jsp */
-    HtmlNext path_AdminWebauthentication_ErrorJsp = new HtmlNext("/admin/webauthentication/error.jsp");
-
     /** The path of the HTML: /admin/webauthentication/index.jsp */
     HtmlNext path_AdminWebauthentication_IndexJsp = new HtmlNext("/admin/webauthentication/index.jsp");
 
@@ -326,18 +266,12 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/webconfig/edit.jsp */
     HtmlNext path_AdminWebconfig_EditJsp = new HtmlNext("/admin/webconfig/edit.jsp");
 
-    /** The path of the HTML: /admin/webconfig/error.jsp */
-    HtmlNext path_AdminWebconfig_ErrorJsp = new HtmlNext("/admin/webconfig/error.jsp");
-
     /** The path of the HTML: /admin/webconfig/index.jsp */
     HtmlNext path_AdminWebconfig_IndexJsp = new HtmlNext("/admin/webconfig/index.jsp");
 
     /** The path of the HTML: /admin/wizard/crawlingConfig.jsp */
     HtmlNext path_AdminWizard_CrawlingConfigJsp = new HtmlNext("/admin/wizard/crawlingConfig.jsp");
 
-    /** The path of the HTML: /admin/wizard/error.jsp */
-    HtmlNext path_AdminWizard_ErrorJsp = new HtmlNext("/admin/wizard/error.jsp");
-
     /** The path of the HTML: /admin/wizard/index.jsp */
     HtmlNext path_AdminWizard_IndexJsp = new HtmlNext("/admin/wizard/index.jsp");
 

+ 4 - 4
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

@@ -11,10 +11,10 @@ public class FessMessages extends FessLabels {
     /** The serial version UID for object serialization. (Default) */
     private static final long serialVersionUID = 1L;
 
-    /** The key of the message: <font color="red"><ul> */
+    /** The key of the message: <ul> */
     public static final String ERRORS_HEADER = "{errors.header}";
 
-    /** The key of the message: </ul></font> */
+    /** The key of the message: </ul> */
     public static final String ERRORS_FOOTER = "{errors.footer}";
 
     /** The key of the message: <li> */
@@ -429,7 +429,7 @@ public class FessMessages extends FessLabels {
     /**
      * Add the created action message for the key 'errors.header' with parameters.
      * <pre>
-     * message: <font color="red"><ul>
+     * message: <ul>
      * comment: ------------
      * </pre>
      * @param property The property name for the message. (NotNull)
@@ -444,7 +444,7 @@ public class FessMessages extends FessLabels {
     /**
      * Add the created action message for the key 'errors.footer' with parameters.
      * <pre>
-     * message: </ul></font>
+     * message: </ul>
      * </pre>
      * @param property The property name for the message. (NotNull)
      * @return this. (NotNull)

+ 2 - 2
src/main/resources/fess_message.properties

@@ -5,8 +5,8 @@
 # ----------------------------------------------------------
 #                                               Lasta Taglib
 #                                               ------------
-errors.header=<font color="red"><ul>
-errors.footer=</ul></font>
+errors.header=<ul>
+errors.footer=</ul>
 errors.prefix=<li>
 errors.suffix=</li>
 

+ 0 - 49
src/main/webapp/WEB-INF/view/admin/boostdocumentrule/error.jsp

@@ -1,49 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.boost_document_rule_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="boostDocumentRule" />
-		</jsp:include>
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/boostDocumentRule/">
-							<la:message key="labels.boost_document_rule_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.boost_document_rule_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/crawlingsession/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.crawling_session_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="log" />
-			<jsp:param name="menuType" value="crawlingSession" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/crawlingSession/">
-							<la:message key="labels.crawling_session_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.crawling_session_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/dataconfig/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.data_crawling_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="dataConfig" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/dataConfig/">
-							<la:message key="labels.data_crawling_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.data_crawling_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/dict/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.dict_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="system" />
-			<jsp:param name="menuType" value="dict" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/dict/">
-							<la:message key="labels.dict_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.dict_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 2 - 12
src/main/webapp/WEB-INF/view/admin/wizard/error.jsp → src/main/webapp/WEB-INF/view/admin/error/error.jsp

@@ -2,7 +2,7 @@
 <html>
 <head>
 <meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.wizard_title_configuration" /></title>
+<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.error_title" /></title>
 <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
 </head>
 <body class="skin-blue sidebar-mini">
@@ -16,25 +16,15 @@
 		<div class="content-wrapper">
 			<section class="content-header">
 				<h1>
-					<la:message key="labels.wizard_start_title" />
+					<la:message key="labels.error_title" />
 				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/wizard/">Start</la:link></li>
-				</ol>
 			</section>
 
 			<section class="content">
-
 				<div class="callout callout-danger lead">
-					<h4>Error</h4>
 					<p>
 						<la:errors />
 					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.wizard_button_back" />
-						</la:link>
-					</p>
 				</div>
 
 			</section>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/failureurl/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.failure_url_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="log" />
-			<jsp:param name="menuType" value="failureUrl" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/failureUrl/">
-							<la:message key="labels.failure_url_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.failure_url_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/fileauthentication/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.file_authentication_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="fileAuthentication" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/fileAuthentication/">
-							<la:message key="labels.file_authentication_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.file_authentication_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/fileconfig/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.file_crawling_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="fileConfig" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/fileConfig/">
-							<la:message key="labels.file_crawling_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.file_crawling_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/group/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.group_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="user" />
-			<jsp:param name="menuType" value="group" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/group/">
-							<la:message key="labels.group_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.group_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/joblog/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.joblog_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="log" />
-			<jsp:param name="menuType" value="jobLog" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/jobLog/">
-							<la:message key="labels.joblog_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.joblog_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/keymatch/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.key_match_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="keyMatch" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/keymatch/">
-							<la:message key="labels.key_match_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.key_match_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/labeltype/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.labeltype_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="labelType" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/labelType/">
-							<la:message key="labels.labeltype_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.labeltype_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/overlappinghost/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.overlapping_host_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="overlappintHost" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/overlappingHost/">
-							<la:message key="labels.overlapping_host_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.overlapping_host_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 49
src/main/webapp/WEB-INF/view/admin/pathmapping/error.jsp

@@ -1,49 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.path_mapping_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="pathMapping" />
-		</jsp:include>
-		
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/pathMapping/">
-							<la:message key="labels.path_mapping_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.path_mapping_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html> 

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/requestheader/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.request_header_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="requestHeader" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/requestHeader/">
-							<la:message key="labels.request_header_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.request_header_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/role/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.role_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="user" />
-			<jsp:param name="menuType" value="role" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/role/">
-							<la:message key="labels.role_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.role_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/roletype/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.roletype_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="roleType" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/roleType/">
-							<la:message key="labels.roletype_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.roletype_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/scheduledjob/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.scheduledjob_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="system" />
-			<jsp:param name="menuType" value="scheduledJob" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/scheduledJob/">
-							<la:message key="labels.scheduledjob_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.scheduledjob_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/suggestbadword/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.suggest_bad_word_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="suggest" />
-			<jsp:param name="menuType" value="suggestBadWord" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/suggestBadWord/">
-							<la:message key="labels.suggest_bad_word_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.suggest_bad_word_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/suggestelevateword/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.suggest_elevate_word_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="suggest" />
-			<jsp:param name="menuType" value="suggestElevateWord" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/suggestElevateWord/">
-							<la:message key="labels.suggest_elevate_word_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.suggest_elevate_word_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/user/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.user_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="user" />
-			<jsp:param name="menuType" value="user" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/user/">
-							<la:message key="labels.user_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.user_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 50
src/main/webapp/WEB-INF/view/admin/webauthentication/error.jsp

@@ -1,50 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.web_authentication_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="webAuthentication" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/webAuthentication/">
-							<la:message key="labels.web_authentication_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.web_authentication_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>

+ 0 - 49
src/main/webapp/WEB-INF/view/admin/webconfig/error.jsp

@@ -1,49 +0,0 @@
-<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.web_crawling_configuration" /></title>
-<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
-</head>
-<body class="skin-blue sidebar-mini">
-	<div class="wrapper">
-		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
-		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
-			<jsp:param name="menuCategoryType" value="crawl" />
-			<jsp:param name="menuType" value="webConfig" />
-		</jsp:include>
-
-		<div class="content-wrapper">
-			<section class="content-header">
-				<h1>
-					<la:message key="labels.wizard_start_title" />
-				</h1>
-				<ol class="breadcrumb">
-					<li class="active"><la:link href="/admin/webConfig/">
-							<la:message key="labels.web_crawling_link_list" />
-						</la:link></li>
-				</ol>
-			</section>
-
-			<section class="content">
-				<div class="callout callout-danger lead">
-					<h4>Error</h4>
-					<p>
-						<la:errors />
-					</p>
-					<p>
-						<la:link href="index">
-							<la:message key="labels.web_crawling_button_back" />
-						</la:link>
-					</p>
-				</div>
-
-			</section>
-		</div>
-
-		<jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
-
-	</div>
-	<jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
-</body>
-</html>