Migrated edit local repo page from jstl to struts tags.

git-svn-id: https://svn.apache.org/repos/asf/continuum/trunk@1679074 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/editLocalRepository.jsp b/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/editLocalRepository.jsp
index 2a40b07..b641e61 100644
--- a/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/editLocalRepository.jsp
+++ b/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/editLocalRepository.jsp
@@ -17,7 +17,6 @@
   ~ under the License.
   --%>
 
-<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
 <%@ taglib uri="/struts-tags" prefix="s" %>
 <html>
   <s:i18n name="localization.Continuum">
@@ -29,16 +28,19 @@
   <div id="axial" class="h3">
     <h3><s:text name="repository.section.title"/></h3>
 
+    <s:if test="hasActionErrors()">
+      <div class="errormessage">
+        <s:actionerror/>
+      </div>
+    </s:if>
+    <s:if test="hasActionMessages()">
+      <div class="warningmessage">
+        <s:actionmessage/>
+      </div>
+    </s:if>
+
     <div class="axial">
       <s:form action="saveRepository" method="post" validate="true">
-        <c:if test="${!empty actionErrors}">
-          <div class="errormessage">
-            <s:iterator value="actionErrors">
-              <p><s:property/></p>
-            </s:iterator>
-          </div>
-        </c:if>
-
           <table>
             <s:textfield label="%{getText('repository.name.label')}" name="repository.name" requiredLabel="true" disabled="%{defaultRepo}" size="100"/>
             <s:textfield label="%{getText('repository.location.label')}" name="repository.location" requiredLabel="true" disabled="%{defaultRepo}" size="100"/>