[seam-commits] Seam SVN: r10811 - examples/trunk/servlet-permalink/src/main/webapp/WEB-INF/fragments.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed May 6 02:24:40 EDT 2009


Author: dan.j.allen
Date: 2009-05-06 02:24:40 -0400 (Wed, 06 May 2009)
New Revision: 10811

Modified:
   examples/trunk/servlet-permalink/src/main/webapp/WEB-INF/fragments/entryList.xhtml
Log:
add IDs for testing


Modified: examples/trunk/servlet-permalink/src/main/webapp/WEB-INF/fragments/entryList.xhtml
===================================================================
--- examples/trunk/servlet-permalink/src/main/webapp/WEB-INF/fragments/entryList.xhtml	2009-05-06 04:50:15 UTC (rev 10810)
+++ examples/trunk/servlet-permalink/src/main/webapp/WEB-INF/fragments/entryList.xhtml	2009-05-06 06:24:40 UTC (rev 10811)
@@ -16,14 +16,14 @@
                     <ui:include src="entryContent.xhtml"/>
                 </ui:repeat>
                 <div class="post-navigation">
-                    <span class="arrow">&#171;&#171;</span> #{' '}<h:link value="First Page" disabled="#{not blog.previousPageAvailable}" includeViewParams="true"
+                    <span class="arrow">&#171;&#171;</span> #{' '}<h:link id="first" value="First Page" disabled="#{not blog.previousPageAvailable}" includeViewParams="true"
                         ><f:param name="page" disable="true"
                     /></h:link>
-                    <span class="arrow">&#171;</span> #{' '}<h:link value="Newer Entries" disabled="#{not blog.previousPageAvailable}" includeViewParams="true"
+                    <span class="arrow">&#171;</span> #{' '}<h:link id="previous" value="Newer Entries" disabled="#{not blog.previousPageAvailable}" includeViewParams="true"
                         ><f:param name="page" value="#{blog.previousPage}"
                     /></h:link>
                     <span style="font-size: smaller;">&#8211;</span>
-                    #{' '}<h:link outcome="#{view.viewId}" value="Older Entries" disabled="#{not blog.nextPageAvailable}" includeViewParams="true"
+                    #{' '}<h:link outcome="#{view.viewId}" id="next" value="Older Entries" disabled="#{not blog.nextPageAvailable}" includeViewParams="true"
                         ><f:param name="page" value="#{blog.nextPage}"
                     /></h:link> <span class="arrow">&#187;</span>
                 </div>




More information about the seam-commits mailing list