[seam-commits] Seam SVN: r9604 - branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Wed Nov 19 05:09:19 EST 2008
Author: manaRH
Date: 2008-11-19 05:09:19 -0500 (Wed, 19 Nov 2008)
New Revision: 9604
Modified:
branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/book.xhtml
branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/confirm.xhtml
branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/home.xhtml
branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/hotel.xhtml
branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/password.xhtml
Log:
porting some changes from JBPAPP-1129 fix
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/book.xhtml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/book.xhtml 2008-11-19 00:14:22 UTC (rev 9603)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/book.xhtml 2008-11-19 10:09:19 UTC (rev 9604)
@@ -97,7 +97,7 @@
</s:decorate>
<div class="buttonBox">
- <h:commandButton id="proceed" value="Proceed" action="#{hotelBooking.setBookingDetails}"/>
+ <ice:commandButton id="proceed" value="Proceed" action="#{hotelBooking.setBookingDetails}"/>
 
<s:button id="cancel" value="Cancel" action="#{hotelBooking.cancel}"/>
</div>
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/confirm.xhtml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/confirm.xhtml 2008-11-19 00:14:22 UTC (rev 9603)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/confirm.xhtml 2008-11-19 10:09:19 UTC (rev 9604)
@@ -4,6 +4,7 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:s="http://jboss.com/products/seam/taglib"
+ xmlns:ice="http://www.icesoft.com/icefaces/component"
template="template.xhtml">
<!-- content -->
@@ -42,11 +43,11 @@
<div class="buttonBox">
<h:form id="confirm">
- <h:commandButton id="confirm" value="Confirm" action="#{hotelBooking.confirm}"/>
+ <ice:commandButton id="confirm" value="Confirm" action="#{hotelBooking.confirm}"/>
 
<s:button id="revise" value="Revise" view="/book.xhtml"/>
 
- <h:commandButton id="cancel" value="Cancel" action="#{hotelBooking.cancel}"/>
+ <s:button id="cancel" value="Cancel" action="#{hotelBooking.cancel}"/>
</h:form>
</div>
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/home.xhtml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/home.xhtml 2008-11-19 00:14:22 UTC (rev 9603)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/home.xhtml 2008-11-19 10:09:19 UTC (rev 9604)
@@ -3,7 +3,8 @@
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
- xmlns:s="http://jboss.com/products/seam/taglib">
+ xmlns:s="http://jboss.com/products/seam/taglib"
+ xmlns:ice="http://www.icesoft.com/icefaces/component">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>JBoss Suites: Seam Framework</title>
@@ -29,7 +30,7 @@
<h:inputSecret id="password" value="#{identity.password}" style="width: 165px;"/>
</div>
<div class="errors"><h:messages globalOnly="true"/></div>
- <div class="buttonBox"><h:commandButton id="login" action="#{identity.login}" value="Account Login"
+ <div class="buttonBox"><ice:commandButton id="login" action="#{identity.login}" value="Account Login"
styleClass="button"/></div>
<div class="notes"><s:link id="register" view="/register.xhtml" value="Register New User"/></div>
</fieldset>
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/hotel.xhtml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/hotel.xhtml 2008-11-19 00:14:22 UTC (rev 9603)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/hotel.xhtml 2008-11-19 10:09:19 UTC (rev 9604)
@@ -4,6 +4,7 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:s="http://jboss.com/products/seam/taglib"
+ xmlns:ice="http://www.icesoft.com/icefaces/component"
template="template.xhtml">
<!-- content -->
@@ -18,9 +19,9 @@
<div class="buttonBox">
<h:form id="hotel">
- <h:commandButton id="bookHotel" action="#{hotelBooking.bookHotel}" value="Book Hotel"/>
+ <ice:commandButton id="bookHotel" action="#{hotelBooking.bookHotel}" value="Book Hotel"/>
 
- <h:commandButton id="cancel" action="#{hotelBooking.cancel}" value="Back to Search"/>
+ <s:button id="cancel" action="#{hotelBooking.cancel}" value="Back to Search"/>
</h:form>
</div>
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/password.xhtml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/password.xhtml 2008-11-19 00:14:22 UTC (rev 9603)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/icefaces/view/password.xhtml 2008-11-19 10:09:19 UTC (rev 9604)
@@ -51,7 +51,7 @@
</s:decorate>
<div class="buttonBox">
- <h:commandButton id="change" value="Change" action="#{changePassword.changePassword}"/>
+ <ice:commandButton id="change" value="Change" action="#{changePassword.changePassword}"/>
 
<s:button id="cancel" value="Cancel" view="/main.xhtml"/>
More information about the seam-commits
mailing list