You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2008/06/01 03:00:16 UTC

svn commit: r662116 - in /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp: clientValidation.jsp clientValidationWithExtForm.jsp clientValidationWithStandardForm.jsp exporter.jsp

Author: lu4242
Date: Sat May 31 18:00:15 2008
New Revision: 662116

URL: http://svn.apache.org/viewvc?rev=662116&view=rev
Log:
<h:commandButton action=""> is invalid on 1.2, so pages containing this should be removed

Modified:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidation.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithExtForm.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithStandardForm.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/exporter.jsp

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidation.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidation.jsp?rev=662116&r1=662115&r2=662116&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidation.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidation.jsp Sat May 31 18:00:15 2008
@@ -73,7 +73,7 @@
 			<t:message for="txt_salaryBonus" forceSpan="true" />
 		</h:panelGrid>
 
-		<h:commandButton id="btn_save" value="Create" action=""/>
+		<h:commandButton id="btn_save" value="Create" />
 		
 		<%--
 			Not necessary when h:form or s:form is used, only added just to give an example

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithExtForm.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithExtForm.jsp?rev=662116&r1=662115&r2=662116&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithExtForm.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithExtForm.jsp Sat May 31 18:00:15 2008
@@ -73,7 +73,7 @@
 			<t:message for="txt_salaryBonus" forceSpan="true" />
 		</h:panelGrid>
 
-		<h:commandButton id="btn_save" value="Create" action=""/>
+		<h:commandButton id="btn_save" value="Create" />
 
 	</s:form>
 	

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithStandardForm.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithStandardForm.jsp?rev=662116&r1=662115&r2=662116&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithStandardForm.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/clientValidationWithStandardForm.jsp Sat May 31 18:00:15 2008
@@ -73,7 +73,7 @@
 			<t:message for="txt_salaryBonus" forceSpan="true" />
 		</h:panelGrid>
 
-		<h:commandButton id="btn_save" value="Create" action=""/>
+		<h:commandButton id="btn_save" value="Create" />
 		<t:commandButton id="btn_cancel" value="Cancel" immediate="true"></t:commandButton>
 
 	</h:form>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/exporter.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/exporter.jsp?rev=662116&r1=662115&r2=662116&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/exporter.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/exporter.jsp Sat May 31 18:00:15 2008
@@ -72,13 +72,13 @@
 
 		<br>
 		
-		<h:commandButton action="" value="Export as excel">
+		<h:commandButton value="Export as excel">
 			<s:exporterActionListener for="tbl_cars" fileType="XLS"/>
 		</h:commandButton>
 		
 		<br>
 		
-		<h:commandButton action="" value="Export as pdf">
+		<h:commandButton value="Export as pdf">
 			<s:exporterActionListener for="tbl_cars" fileType="PDF"/>
 		</h:commandButton>