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

Shane Bryzak sbryzak at redhat.com
Sun Apr 15 23:57:41 EDT 2007


  User: sbryzak2
  Date: 07/04/15 23:57:41

  Modified:    examples/seambay/view   search.xhtml test.js
  Log:
  separated user login details
  
  Revision  Changes    Path
  1.4       +1 -1      jboss-seam/examples/seambay/view/search.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: search.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/view/search.xhtml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- search.xhtml	16 Apr 2007 01:39:51 -0000	1.3
  +++ search.xhtml	16 Apr 2007 03:57:41 -0000	1.4
  @@ -46,7 +46,7 @@
         <div id="searchResults">
         
         	<h:dataTable id="auctions" 
  -      	             value="#{auctionSearch.results}" 
  +      	             value="#{auctions}" 
         	             var="auction" 
         	             cellspacing="0px"
         	             rowClasses="resultRowOdd,resultRowEven"
  
  
  
  1.7       +12 -0     jboss-seam/examples/seambay/view/test.js
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: test.js
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/view/test.js,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- test.js	16 Apr 2007 01:39:51 -0000	1.6
  +++ test.js	16 Apr 2007 03:57:41 -0000	1.7
  @@ -105,6 +105,18 @@
   svc.addParameter(new ServiceParam("Auction ID", "auctionId"));
   svc.addParameter(new ServiceParam("Duration in days", "duration"));
   
  +svc = new ServiceMetadata("getNewAuctionDetails", "Create/Update Auction");
  +svc.setDescription("Get the auction details");
  +svc.setRequest("<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" " +
  +               "\n    xmlns:seam=\"http://seambay.example.seam.jboss.org/\">\n  <soapenv:Header/>" +
  +               "\n  <soapenv:Body>" +
  +               "\n    <seam:getNewAuctionDetails>" +
  +               "\n      <arg0>#{auctionId}</arg0>" +
  +               "\n    </seam:getNewAuctionDetails>" +
  +               "\n </soapenv:Body>" +
  +               "\n</soapenv:Envelope>");
  +svc.addParameter(new ServiceParam("Auction ID", "auctionId"));               
  +
   svc = new ServiceMetadata("confirmAuction", "Create/Update Auction");
   svc.setDescription("Confirm auction");
   svc.setRequest("<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" " +
  
  
  



More information about the jboss-cvs-commits mailing list