[seam-commits] Seam SVN: r15451 - branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Mon Mar 18 05:14:38 EDT 2013
Author: manaRH
Date: 2013-03-18 05:14:38 -0400 (Mon, 18 Mar 2013)
New Revision: 15451
Modified:
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/loginExp.html
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/mainExp.html
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/registerExp.html
Log:
fixed html letters to not warn in JBDS
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/loginExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/loginExp.html 2013-03-18 09:14:20 UTC (rev 15450)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/loginExp.html 2013-03-18 09:14:38 UTC (rev 15451)
@@ -30,12 +30,12 @@
<code class="block">
<div>
- <h:outputLabel for="username">Login Name</h:outputLabel>
- <h:inputText id="username" value="#{identity.username}" />
+ <h:outputLabel for="username" > Login Name</h:outputLabel>
+ <h:inputText id="username" value="#{identity.username}" />
</div>
<div>
- <h:outputLabel for="password">Password</h:outputLabel>
- <h:inputSecret id="password" value="#{identity.password}" />
+ <h:outputLabel for="password" > Password</h:outputLabel>
+ <h:inputSecret id="password" value="#{identity.password}" />
</div>
... ...
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/mainExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/mainExp.html 2013-03-18 09:14:20 UTC (rev 15450)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/mainExp.html 2013-03-18 09:14:38 UTC (rev 15451)
@@ -91,7 +91,7 @@
public boolean isNextPageAvailable()
{
- return hotels!=null && hotels.size()==pageSize;
+ return hotels!=null && hotels.size()==pageSize;
}
public int getPageSize() {
@@ -137,7 +137,7 @@
<code class="block">
<h:outputText value="No Hotels Found"
rendered="#{hotels != null and hotels.rowCount==0}"/>
-<h:dataTable value="#{hotels}" var="hot" rendered="#{hotels.rowCount>0}">
+<h:dataTable value="#{hotels}" var="hot" rendered="#{hotels.rowCount > 0}">
<h:column>
<f:facet name="header">Name</f:facet>
#{hot.name}
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/registerExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/registerExp.html 2013-03-18 09:14:20 UTC (rev 15450)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/registerExp.html 2013-03-18 09:14:38 UTC (rev 15451)
@@ -30,7 +30,7 @@
<s:validateAll>
<div class="entry">
<div class="label">
- <h:outputLabel for="username">Username:</h:outputLabel>
+ <h:outputLabel for="username" > Username:</h:outputLabel>
</div>
<div class="input">
<h:inputText id="username" value="#{user.username}"/><br/>
@@ -39,11 +39,11 @@
</div>
<div class="entry">
<div class="label">
- <h:outputLabel for="name">Real Name:</h:outputLabel>
+ <h:outputLabel for="name" > Real Name:</h:outputLabel>
</div>
<div class="input">
<h:inputText id="name" value="#{user.name}" /><br/>
- <span class="errors"><h:message for="name" /></span>
+ <span class="errors" > <h:message for="name" /></span>
</div>
</div>
</s:validateAll>
More information about the seam-commits
mailing list