[jboss-cvs] jboss-seam/examples/dvdstore/view/admin ...

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


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

  Modified:    examples/dvdstore/view/admin   admin.xhtml process.xhtml
  Log:
  fixed validation problems
  
  Revision  Changes    Path
  1.2       +164 -164  jboss-seam/examples/dvdstore/view/admin/admin.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: admin.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/view/admin/admin.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- admin.xhtml	28 Jun 2007 23:22:58 -0000	1.1
  +++ admin.xhtml	24 Jul 2007 00:29:14 -0000	1.2
  @@ -56,7 +56,7 @@
               
               <h2>Task Assignment</h2>
   
  -            <f:subview rendered="#{empty pooledTaskInstanceList}">
  +            <f:subview id="no_pooled_tasks" rendered="#{empty pooledTaskInstanceList}">
                   <p>There are no pooled tasks to be assigned.</p>
               </f:subview>
               
  @@ -93,7 +93,7 @@
               
               
               <h2>Order Acceptance</h2>
  -            <f:subview rendered="#{empty taskInstanceListForType['approve']}">
  +            <f:subview id="no_orders" rendered="#{empty taskInstanceListForType['approve']}">
                   <p>There are no orders to be accepted.</p>
               </f:subview>
   
  @@ -125,7 +125,7 @@
               </h:dataTable>
               
               <h2>Shipping</h2>
  -            <f:subview rendered="#{empty taskInstanceListForType['ship']}">
  +            <f:subview id="no_shipping" rendered="#{empty taskInstanceListForType['ship']}">
                   <p>There are no orders to be shipped.</p>
               </f:subview>
               <h:dataTable rendered="#{not empty taskInstanceListForType['ship']}"
  
  
  
  1.2       +65 -65    jboss-seam/examples/dvdstore/view/admin/process.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: process.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/view/admin/process.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- process.xhtml	28 Jun 2007 23:22:58 -0000	1.1
  +++ process.xhtml	24 Jul 2007 00:29:14 -0000	1.2
  @@ -22,7 +22,7 @@
           <ui:define name="body">
               <h2>Active Process Status</h2>
               
  -            <f:subview rendered="#{empty processInstanceList}">
  +            <f:subview id="no_processes" rendered="#{empty processInstanceList}">
                   <p>There are no active processes.</p>
               </f:subview>
                       
  
  
  



More information about the jboss-cvs-commits mailing list