[jboss-cvs] jboss-seam/examples/seambay/view ...

Shane Bryzak sbryzak at redhat.com
Mon Aug 20 21:57:23 EDT 2007


  User: sbryzak2
  Date: 07/08/20 21:57:23

  Modified:    examples/seambay/view   preview.xhtml sell3.xhtml
  Log:
  scheduled auction ends
  
  Revision  Changes    Path
  1.2       +4 -9      jboss-seam/examples/seambay/view/preview.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: preview.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/view/preview.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- preview.xhtml	5 Jul 2007 05:54:15 -0000	1.1
  +++ preview.xhtml	21 Aug 2007 01:57:23 -0000	1.2
  @@ -72,15 +72,10 @@
               <div class="itemDetails">
                 <div class="itemDetailRow">
                   <label>
  -                  <s:fragment rendered="#{auctionAction.auction.highBidder ne null}">
  -                    Current bid:
  -                  </s:fragment>
  -                  <s:fragment rendered="#{auctionAction.auction.highBidder eq null}">
                       Starting price:
  -                  </s:fragment>            
                   </label>
                   <div>
  -                  $<b><h:outputText value="#{auctionAction.auction.price}">
  +                  $<b><h:outputText value="#{auctionAction.auction.currentPrice}">
                       <f:convertNumber minFractionDigits="2" maxFractionDigits="2"/>
                     </h:outputText></b>
                   </div>
  @@ -117,8 +112,8 @@
                 <div class="itemDetailRow">
                   <label>High bidder:</label>
                   <div>
  -                  <span>#{auctionAction.auction.highBidder.name}</span>
  -                  <h:outputText value="No bids" rendered="#{auctionAction.auction.highBidder eq null}"/>
  +                  <span>#{auctionAction.auction.highBid.account.name}</span>
  +                  <h:outputText value="No bids" rendered="#{auctionAction.auction.highBid.account.name eq null}"/>
                   </div>
                 </div>
       
  
  
  
  1.2       +1 -1      jboss-seam/examples/seambay/view/sell3.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: sell3.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/view/sell3.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- sell3.xhtml	5 Jul 2007 05:54:15 -0000	1.1
  +++ sell3.xhtml	21 Aug 2007 01:57:23 -0000	1.2
  @@ -40,7 +40,7 @@
               
               <div class="formRow">
                 <h:outputLabel for="price">Please enter the starting price for your auction $</h:outputLabel>
  -              <h:inputText id="price" value="#{auctionAction.auction.price}" required="true">
  +              <h:inputText id="price" value="#{auctionAction.auction.startingPrice}" required="true">
                   <f:convertNumber minFractionDigits="2" maxFractionDigits="2" minIntegerDigits="1"/>
                 </h:inputText>
                 <div class="validationError"><h:message for="price"/></div>
  
  
  



More information about the jboss-cvs-commits mailing list