[jboss-cvs] jboss-seam/examples/icefaces/view ...
Michael Yuan
michael.yuan at jboss.com
Sun Oct 21 16:40:12 EDT 2007
User: myuan
Date: 07/10/21 16:40:12
Modified: examples/icefaces/view book.xhtml home.xhtml main.xhtml
register.xhtml
Log:
latest update from icefaces
Revision Changes Path
1.9 +9 -6 jboss-seam/examples/icefaces/view/book.xhtml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: book.xhtml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/icefaces/view/book.xhtml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- book.xhtml 1 Oct 2007 16:15:51 -0000 1.8
+++ book.xhtml 21 Oct 2007 20:40:12 -0000 1.9
@@ -26,16 +26,19 @@
<s:decorate id="checkinDateDecorate" template="edit.xhtml">
<ui:define name="label">Check In Date:</ui:define>
+ <span class="calendar">
<ice:selectInputDate id="checkinDate" value="#{booking.checkinDate}"
renderAsPopup="true" partialSubmit="true"/>
-
+ </span>
</s:decorate>
<br/>
<s:decorate id="checkoutDateDecorate" template="edit.xhtml">
<ui:define name="label">Check Out Date:</ui:define>
+ <span class="calendar">
<ice:selectInputDate id="checkoutDate" value="#{booking.checkoutDate}"
renderAsPopup="true" partialSubmit="true"/>
+ </span>
</s:decorate>
<br/>
<s:decorate id="bedsDecorate" template="edit.xhtml">
1.4 +8 -7 jboss-seam/examples/icefaces/view/home.xhtml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: home.xhtml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/icefaces/view/home.xhtml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- home.xhtml 1 Oct 2007 16:15:51 -0000 1.3
+++ home.xhtml 21 Oct 2007 20:40:12 -0000 1.4
@@ -21,15 +21,16 @@
<fieldset>
<div>
<h:outputLabel for="username">Login Name</h:outputLabel>
- <h:inputText id="username" value="#{identity.username}" style="width: 175px;"/>
+ <h:inputText id="username" value="#{identity.username}" style="width: 165px;"/>
<div class="errors"><h:message for="username"/></div>
</div>
<div>
<h:outputLabel for="password">Password</h:outputLabel>
- <h:inputSecret id="password" value="#{identity.password}" style="width: 175px;"/>
+ <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>
+ <div class="buttonBox"><h: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>
</h:form>
@@ -41,8 +42,8 @@
<p>
This sample application demonstrates how easy it is to develop stateful web
- applications using JBoss Seam. Just register, login, and book a room to see
- Seam in action. Throughout the application you'll see popup links like
+ applications using JBoss Seam and <a href="http://icefaces.org">ICEfaces</a>. Just register, login, and book a room to
+ see Seam in action. Throughout the application you'll see popup links like
the ones at the bottom of this page. Click them to see how the application
works under the hood.
</p>
@@ -54,7 +55,7 @@
<p>
<a href="#" onclick="window.open('exp/introExp.html','exp','width=752,height=500,scrollbars=yes');">
- What is JBoss Seam?
+ What is JBoss Seam with ICEfaces?
</a>
</p>
@@ -67,7 +68,7 @@
</div>
</div>
</div>
- <div id="footer">Created with JBoss EJB 3.0, Seam, MyFaces, and Facelets</div>
+ <div id="footer">Created with JBoss EJB 3.0, Seam, ICEFaces, and Facelets</div>
</div>
</f:view>
</body>
1.11 +1 -1 jboss-seam/examples/icefaces/view/main.xhtml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: main.xhtml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/icefaces/view/main.xhtml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- main.xhtml 1 Oct 2007 16:15:51 -0000 1.10
+++ main.xhtml 21 Oct 2007 20:40:12 -0000 1.11
@@ -44,7 +44,7 @@
</div>
<ice:form>
<ice:panelGroup id="searchResults">
- <div class="section">
+ <div class="section" style="overflow:auto">
<h:outputText value="No Hotels Found" rendered="#{hotels != null and hotels.rowCount==0}"/>
<ice:outputText value="Search Results"/>
<ice:dataTable id="hotels" value="#{hotels}" var="hot" rendered="#{hotels.rowCount>0}">
1.4 +2 -3 jboss-seam/examples/icefaces/view/register.xhtml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: register.xhtml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/icefaces/view/register.xhtml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- register.xhtml 1 Oct 2007 16:15:51 -0000 1.3
+++ register.xhtml 21 Oct 2007 20:40:12 -0000 1.4
@@ -7,7 +7,7 @@
xmlns:ice="http://www.icesoft.com/icefaces/component" >
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JBoss Suites: Seam Framework</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
@@ -46,8 +46,7 @@
<h1>Register</h1>
</div>
- <div class="section">
-
+ <div class="section" style="overflow:auto">
<div class="entry errors">
<h:messages globalOnly="true"/>
</div>
More information about the jboss-cvs-commits
mailing list