You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by ws...@apache.org on 2006/04/09 19:15:45 UTC

svn commit: r392782 - in /struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp: ./ WEB-INF/

Author: wsmoak
Date: Sun Apr  9 10:15:42 2006
New Revision: 392782

URL: http://svn.apache.org/viewcvs?rev=392782&view=rev
Log:
Complete oas.webapp.exercise -> oas.webapp.el.exercise move from r392413.

Modified:
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/struts-config.xml
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/web.xml
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-define.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-size.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-write.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/html-select.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-compare.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-empty.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-iterate.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-match.jsp
    struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-present.jsp

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/struts-config.xml
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/struts-config.xml?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/struts-config.xml (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/struts-config.xml Sun Apr  9 10:15:42 2006
@@ -8,7 +8,7 @@
 
     <form-beans>
         <form-bean name="testbean"
-                   type="org.apache.struts.webapp.exercise.TestBean"/>
+                   type="org.apache.struts.webapp.el.exercise.TestBean"/>
         <form-bean name="dynabean"
                    type="org.apache.struts.action.DynaActionForm">
             <form-property name="foo" type="java.lang.String"/>
@@ -92,7 +92,7 @@
             <forward name="input" path="/bean-dyna.jsp"/>
         </action>
         <action path="/bean-dyna"
-                type="org.apache.struts.webapp.exercise.DynaSetAction"
+                type="org.apache.struts.webapp.el.exercise.DynaSetAction"
                 name="dynabean"
                 scope="session"
                 validate="false">
@@ -108,7 +108,7 @@
     </action-mappings>
 
     <message-resources
-            parameter="org.apache.struts.webapp.exercise.ApplicationResources"
+            parameter="org.apache.struts.webapp.el.exercise.ApplicationResources"
             null="false"/>
 
 </struts-config>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/web.xml?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/web.xml (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/WEB-INF/web.xml Sun Apr  9 10:15:42 2006
@@ -15,7 +15,7 @@
         <init-param>
             <param-name>application</param-name>
             <param-value>
-                org.apache.struts.webapp.exercise.ApplicationResources</param-value>
+                org.apache.struts.webapp.el.exercise.ApplicationResources</param-value>
         </init-param>
         <init-param>
             <param-name>config</param-name>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-define.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-define.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-define.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-define.jsp Sun Apr  9 10:15:42 2006
@@ -17,7 +17,7 @@
 <h3>Test 1 -- Direct Scalar Variable Defines</h3>
 
 <jsp:useBean id="test1" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <c:set var="test1_boolean" value="${test1.booleanProperty}"/>
 <c:set var="test1_double" value="${test1.doubleProperty}"/>
@@ -71,7 +71,7 @@
 <h3>Test 2 -- Nested Scalar Variable Defines</h3>
 
 <jsp:useBean id="test2" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <bean:define id="test2_boolean" name="test2"
              property="nested.booleanProperty"/>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-size.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-size.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-size.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-size.jsp Sun Apr  9 10:15:42 2006
@@ -38,7 +38,7 @@
 </div>
 
 <jsp:useBean id="bean" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 <bean-el:size id="stringSize" name="bean" property="stringArray"/>
 <bean-el:size id="intSize" name="bean" property="intArray"/>
 <jsp:useBean id="list" scope="page" class="java.util.ArrayList"/>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-write.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-write.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-write.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/bean-write.jsp Sun Apr  9 10:15:42 2006
@@ -68,7 +68,7 @@
 <h3>Test 2 -- Scalar Property Lookups</h3>
 
 <jsp:useBean id="test2" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <table border="1">
     <tr>
@@ -108,7 +108,7 @@
 <h3>Test 3 - Integer Array And Indexed Lookups</h3>
 
 <jsp:useBean id="test3" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <table border="1">
     <tr>
@@ -134,7 +134,7 @@
 <h3>Test 4 - String Array And Indexed Lookups</h3>
 
 <jsp:useBean id="test4" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <table border="1">
     <tr>
@@ -160,7 +160,7 @@
 <h3>Test 5 -- Nested Scalar Property Lookups</h3>
 
 <jsp:useBean id="test5" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <table border="1">
     <tr>
@@ -200,7 +200,7 @@
 <h3>Test 6 - Nested Integer Array And Indexed Lookups</h3>
 
 <jsp:useBean id="test6" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <table border="1">
     <tr>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/html-select.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/html-select.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/html-select.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/html-select.jsp Sun Apr  9 10:15:42 2006
@@ -56,7 +56,7 @@
      have an Action class set the initial values.
 --%>
 <jsp:useBean id="testbean" scope="session"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <html-el:form action="html-select.do">
     <table border="0" width="100%">

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-compare.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-compare.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-compare.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-compare.jsp Sun Apr  9 10:15:42 2006
@@ -15,7 +15,7 @@
 </div>
 
 <jsp:useBean id="bean" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 <%
     String bool1 = "true";
     String bool2 = "false";

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-empty.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-empty.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-empty.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-empty.jsp Sun Apr  9 10:15:42 2006
@@ -15,7 +15,7 @@
     </div>
 
     <jsp:useBean id="bean" scope="page"
-                 class="org.apache.struts.webapp.exercise.TestBean"/>
+                 class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
     <table border="1">
         <tr>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-iterate.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-iterate.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-iterate.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-iterate.jsp Sun Apr  9 10:15:42 2006
@@ -34,7 +34,7 @@
 </div>
 
 <jsp:useBean id="bean" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 <jsp:useBean id="list" scope="page" class="java.util.ArrayList"/>
 
 <h3>Test 1 - Iterate Over A String Array [0..4]</h3>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-match.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-match.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-match.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-match.jsp Sun Apr  9 10:15:42 2006
@@ -16,7 +16,7 @@
 </div>
 
 <jsp:useBean id="bean" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 <c:set var="jcookie" value='${cookie["JSESSIONID"].value}'/>
 <c:set var="uaheader" value='${header["User-Agent"]}'/>
 <c:set var="rparam" value='${param["param1"]}'/>

Modified: struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-present.jsp
URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-present.jsp?rev=392782&r1=392781&r2=392782&view=diff
==============================================================================
--- struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-present.jsp (original)
+++ struts/action/trunk/apps/strutsel-exercise-taglib/src/main/webapp/logic-present.jsp Sun Apr  9 10:15:42 2006
@@ -16,7 +16,7 @@
 </div>
 
 <jsp:useBean id="bean" scope="page"
-             class="org.apache.struts.webapp.exercise.TestBean"/>
+             class="org.apache.struts.webapp.el.exercise.TestBean"/>
 
 <table border="1">
 <tr>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org