[jboss-cvs] jboss-seam/examples/dvdstore/view/WEB-INF/incl ...

Shane Bryzak sbryzak at redhat.com
Mon Jul 23 20:29:01 EDT 2007


  User: sbryzak2
  Date: 07/07/23 20:29:01

  Modified:    examples/dvdstore/view/WEB-INF/incl     cart.xhtml
                        processmenu.xhtml stats.xhtml store_nav.xhtml
  Log:
  fixed validation problems
  
  Revision  Changes    Path
  1.2       +1 -0      jboss-seam/examples/dvdstore/view/WEB-INF/incl/cart.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: cart.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/view/WEB-INF/incl/cart.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- cart.xhtml	28 Jun 2007 23:22:57 -0000	1.1
  +++ cart.xhtml	24 Jul 2007 00:29:01 -0000	1.2
  @@ -3,6 +3,7 @@
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:s="http://jboss.com/products/seam/taglib"
  +           id="cartcontents"
              rendered="#{!cart.isEmpty}">
       <div class="menu">
               <dl>
  
  
  
  1.2       +2 -1      jboss-seam/examples/dvdstore/view/WEB-INF/incl/processmenu.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: processmenu.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/view/WEB-INF/incl/processmenu.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- processmenu.xhtml	28 Jun 2007 23:22:57 -0000	1.1
  +++ processmenu.xhtml	24 Jul 2007 00:29:01 -0000	1.2
  @@ -3,7 +3,8 @@
              xmlns:s="http://jboss.com/products/seam/taglib"
              xmlns:ui="http://java.sun.com/jsf/facelets"
              xmlns:f="http://java.sun.com/jsf/core"
  -           xmlns:h="http://java.sun.com/jsf/html">
  +           xmlns:h="http://java.sun.com/jsf/html"
  +           id="processmenu">
       <div class="menu">
           <dl>
               <dt class="menuHeader">Admin Options</dt>
  
  
  
  1.2       +1 -1      jboss-seam/examples/dvdstore/view/WEB-INF/incl/stats.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: stats.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/view/WEB-INF/incl/stats.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- stats.xhtml	28 Jun 2007 23:22:57 -0000	1.1
  +++ stats.xhtml	24 Jul 2007 00:29:01 -0000	1.2
  @@ -4,7 +4,7 @@
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:h="http://java.sun.com/jsf/html">
       
  -    <f:subview rendered="#{s:hasRole('admin')}">
  +    <f:subview id="statsdetails" rendered="#{s:hasRole('admin')}">
           <div class="menu">
               <dl>
                   <dt class="menuHeader">Statistics</dt>
  
  
  
  1.2       +26 -26    jboss-seam/examples/dvdstore/view/WEB-INF/incl/store_nav.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: store_nav.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/view/WEB-INF/incl/store_nav.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- store_nav.xhtml	28 Jun 2007 23:22:57 -0000	1.1
  +++ store_nav.xhtml	24 Jul 2007 00:29:01 -0000	1.2
  @@ -7,7 +7,7 @@
       <ul>
           <li id="page_home"><s:link view="/home.xhtml" value="Home" propagation="none"/></li>
           <li id="page_shop"><s:link view="/browse.xhtml" value="Shop" propagation="none"/></li>
  -        <f:subview rendered="#{identity.loggedIn}">
  +        <f:subview id="my_orders_link" rendered="#{identity.loggedIn}">
               <li id="page_orders"><s:link view="/showorders.xhtml" value="My Orders" propagation="none"/></li>
           </f:subview>
           <li id="page_cart"><s:link view="/checkout.xhtml" value="Cart" propagation="none"/></li>
  
  
  



More information about the jboss-cvs-commits mailing list