[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">
 &lt;div&gt;
-    &lt;h:outputLabel for="username">Login Name&lt;/h:outputLabel>
-    &lt;h:inputText id="username" value="#{identity.username}" />
+    &lt;h:outputLabel for="username" &gt; Login Name&lt;/h:outputLabel&gt;
+    &lt;h:inputText id="username" value="#{identity.username}" /&gt;
 &lt;/div&gt;
 &lt;div&gt;
-    &lt;h:outputLabel for="password">Password&lt;/h:outputLabel>
-    &lt;h:inputSecret id="password" value="#{identity.password}" />
+    &lt;h:outputLabel for="password" &gt; Password&lt;/h:outputLabel&gt;
+    &lt;h:inputSecret id="password" value="#{identity.password}" /&gt;
 &lt;/div&gt;
 
 ... ...

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 &amp;&amp; hotels.size()==pageSize;
    }
    
    public int getPageSize() {
@@ -137,7 +137,7 @@
 <code class="block">
 &lt;h:outputText value="No Hotels Found" 
               rendered="#{hotels != null and hotels.rowCount==0}"/&gt;
-&lt;h:dataTable value="#{hotels}" var="hot" rendered="#{hotels.rowCount>0}"&gt;
+&lt;h:dataTable value="#{hotels}" var="hot" rendered="#{hotels.rowCount &gt; 0}"&gt;
 	&lt;h:column&gt;
 		&lt;f:facet name="header"&gt;Name&lt;/f:facet&gt;
 		#{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 @@
 &lt;s:validateAll&gt;
 &lt;div class="entry"&gt;
     &lt;div class="label"&gt;
-        &lt;h:outputLabel for="username">Username:&lt;/h:outputLabel&gt;
+        &lt;h:outputLabel for="username" &gt; Username:&lt;/h:outputLabel&gt;
     &lt;/div&gt;
     &lt;div class="input"&gt;
         &lt;h:inputText id="username" value="#{user.username}"/&gt;&lt;br/&gt;
@@ -39,11 +39,11 @@
 &lt;/div&gt;
 &lt;div class="entry"&gt;
     &lt;div class="label"&gt;
-        &lt;h:outputLabel for="name">Real Name:&lt;/h:outputLabel&gt;
+        &lt;h:outputLabel for="name" &gt; Real Name:&lt;/h:outputLabel&gt;
     &lt;/div&gt;
     &lt;div class="input"&gt;
         &lt;h:inputText id="name" value="#{user.name}" /&gt;&lt;br/&gt;
-        &lt;span class="errors">&lt;h:message for="name" /&gt;&lt;/span&gt;
+        &lt;span class="errors" &gt; &lt;h:message for="name" /&gt;&lt;/span&gt;
     &lt;/div&gt;
 &lt;/div&gt;
 &lt;/s:validateAll&gt;



More information about the seam-commits mailing list