]> source.dussan.org Git - archiva.git/commitdiff
removed advancedSearch.jsp
authorMaria Odea B. Ching <oching@apache.org>
Fri, 20 Feb 2009 09:25:36 +0000 (09:25 +0000)
committerMaria Odea B. Ching <oching@apache.org>
Fri, 20 Feb 2009 09:25:36 +0000 (09:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@746187 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-webapp/src/main/resources/struts.xml
archiva-modules/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/advancedSearch.jsp [deleted file]

index f52e3827b854c64b8c57afa45f1f10f111e6e504..b29ea21c6e26f32a3b066825515c3d86330df371 100644 (file)
       <result name="input">/WEB-INF/jsp/quickSearch.jsp</result>
     </action>
 
-    <action name="advancedSearch" class="searchAction" method="input">
-      <result name="input">/WEB-INF/jsp/advancedSearch.jsp</result>
-    </action>
-
     <action name="filteredSearch" class="searchAction" method="filteredSearch">
       <result name="input">/WEB-INF/jsp/quickSearch.jsp</result>
       <result>/WEB-INF/jsp/results.jsp</result>
diff --git a/archiva-modules/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/advancedSearch.jsp b/archiva-modules/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/advancedSearch.jsp
deleted file mode 100644 (file)
index f2db696..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-<%--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  --%>
-
-<%@ taglib prefix="s" uri="/struts-tags" %>
-<html>
-<head>
-  <title>Advanced Search</title>
-  <s:head/>
-</head>
-
-<s:if test="%{infoMessage != null}">
-  <p>${infoMessage}</p>
-</s:if>
-
-<body>
-
-<h1>Advanced Search</h1>
-<div id="contentArea">
-  <div id="searchBox">  
-  
-    <s:form method="get" action="filteredSearch" validate="true">
-      <s:textfield label="Row Count" size="50" name="rowCount"/>
-      <s:textfield label="Group Id" size="50" name="groupId"/>
-      <s:textfield label="Artifact Id" size="50" name="artifactId"/>
-      <s:textfield label="Version" size="50" name="version"/>
-      <s:textfield label="Class / Package" size="50" name="className"/>
-      <s:select name="repositoryId" label="Repository ID" list="managedRepositoryList"/>
-      <s:hidden name="completeQueryString" value="%{#attr.completeQueryString}"/>
-      <s:hidden name="fromFilterSearch" value="%{#attr.fromFilterSearch}"/>
-      <s:submit label="Go!"/>
-    </s:form>
-  
-    <s:url id="indexUrl" action="index"/>
-      <s:a href="%{indexUrl}">
-        << Quick Search Page
-    </s:a>
-
-  </div>
-
-  <script type="text/javascript">
-    document.getElementById("filteredSearch_groupId").focus();
-  </script>
-  <s:actionerror/>
-
-</div> 
-
-</body>
-</html>