You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by xu...@apache.org on 2009/08/04 11:17:11 UTC

svn commit: r800710 - /geronimo/server/trunk/plugins/plancreator/plancreator-portlets/src/main/webapp/WEB-INF/view/configcreator/dependencies.jsp

Author: xuhaihong
Date: Tue Aug  4 09:17:10 2009
New Revision: 800710

URL: http://svn.apache.org/viewvc?rev=800710&view=rev
Log:
GERONIMO-4776 the view of step 3 of plan-create guide countain some demonstration mistakes (Patch from Siqi Du)

Modified:
    geronimo/server/trunk/plugins/plancreator/plancreator-portlets/src/main/webapp/WEB-INF/view/configcreator/dependencies.jsp

Modified: geronimo/server/trunk/plugins/plancreator/plancreator-portlets/src/main/webapp/WEB-INF/view/configcreator/dependencies.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/plancreator/plancreator-portlets/src/main/webapp/WEB-INF/view/configcreator/dependencies.jsp?rev=800710&r1=800709&r2=800710&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/plancreator/plancreator-portlets/src/main/webapp/WEB-INF/view/configcreator/dependencies.jsp (original)
+++ geronimo/server/trunk/plugins/plancreator/plancreator-portlets/src/main/webapp/WEB-INF/view/configcreator/dependencies.jsp Tue Aug  4 09:17:10 2009
@@ -19,12 +19,14 @@
 
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
 <%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
+<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt"%>
+<fmt:setLocale value="<%=request.getLocale()%>"/>
+<fmt:setBundle basename="plancreator-portlet"/>
 <portlet:defineObjects />
 
-<p><b>WAR - Dependencies</b> -- Select the dependencies your Web Application has on other Modules</p>
+<p><fmt:message key="plancreator.dependency.title"/></p>
 
-<p>All the modules available in the server repository are shown below. Select the ones on which your 
-web-application is dependent. Default selections should be sufficient in most scenarios.</p>
+<p><fmt:message key="plancreator.dependency.desc"/></p>
 
 <!--   FORM TO COLLECT DATA FOR THIS PAGE   -->
 <form name="<portlet:namespace/>DependenciesForm" action="<portlet:actionURL/>" method="POST">
@@ -36,7 +38,7 @@
     <th>
     <div align="right"></div>
     </th>
-    <td><input type="submit" value="<fmt:message key="plancreator.common.next"/>" /></td>
+    <td><input type="submit" value="<fmt:message key='plancreator.common.next'/>" /></td>
   </tr>
 
   <!-- Dependencies -->
@@ -59,7 +61,7 @@
     <th>
     <div align="right"></div>
     </th>
-    <td><input type="submit" value="<fmt:message key="plancreator.common.next"/>" /></td>
+    <td><input type="submit" value="<fmt:message key='plancreator.common.next'/>" /></td>
   </tr>
 </table>
 </form>
@@ -67,4 +69,4 @@
 
 <p><a href="<portlet:actionURL portletMode="view">
               <portlet:param name="mode" value="index-before" />
-            </portlet:actionURL>">Cancel</a></p>
+            </portlet:actionURL>"><fmt:message key="plancreator.common.cancel"/></a></p>