[jboss-cvs] jboss-seam/examples/dvdstore/web ...

Gavin King gavin.king at jboss.com
Tue Nov 14 00:03:01 EST 2006


  User: gavin   
  Date: 06/11/14 00:03:01

  Modified:    examples/dvdstore/web    dvd.xhtml home.xhtml
                        showorders.xhtml
  Log:
  update to s:button
  
  Revision  Changes    Path
  1.8       +2 -2      jboss-seam/examples/dvdstore/web/dvd.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: dvd.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/web/dvd.xhtml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- dvd.xhtml	29 Jun 2006 19:02:09 -0000	1.7
  +++ dvd.xhtml	14 Nov 2006 05:03:01 -0000	1.8
  @@ -50,9 +50,9 @@
                   </div>
   
                   <div class="productbuttons">
  -                    <s:link action="#{search.addToCart}" value="Add to Cart" linkStyle="button"/>
  +                    <s:button action="#{search.addToCart}" value="Add to Cart"/>
                       &#160;
  -                    <s:link view="/browse.xhtml" value="Back to Search" linkStyle="button"/>
  +                    <s:button view="/browse.xhtml" value="Back to Search"/>
                   </div>
               </div>
           </ui:define>
  
  
  
  1.11      +1 -1      jboss-seam/examples/dvdstore/web/home.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: home.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/web/home.xhtml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- home.xhtml	29 Jun 2006 19:02:09 -0000	1.10
  +++ home.xhtml	14 Nov 2006 05:03:01 -0000	1.11
  @@ -50,7 +50,7 @@
               </p> 
   
   
  -            <s:link linkStyle="button" view="/browse.xhtml" value="Start Shopping" />
  +            <s:button view="/browse.xhtml" value="Start Shopping" />
   
           </ui:define>
       </ui:composition> 
  
  
  
  1.18      +2 -2      jboss-seam/examples/dvdstore/web/showorders.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: showorders.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/web/showorders.xhtml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -b -r1.17 -r1.18
  --- showorders.xhtml	2 Nov 2006 18:26:04 -0000	1.17
  +++ showorders.xhtml	14 Nov 2006 05:03:01 -0000	1.18
  @@ -49,10 +49,10 @@
                   </h:column>                        
   
                   <h:column>
  -                    <s:link linkStyle="button" action="#{showorders.detailOrder}" value="Show Details" />
  +                    <s:button action="#{showorders.detailOrder}" value="Show Details" />
                   </h:column>
                   <h:column>
  -                    <s:link linkStyle="button" action="#{showorders.cancelOrder}" value="Cancel" rendered="#{item.open}"/>
  +                    <s:button action="#{showorders.cancelOrder}" value="Cancel" rendered="#{item.open}"/>
                   </h:column>
               </h:dataTable>
   
  
  
  



More information about the jboss-cvs-commits mailing list