You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by co...@apache.org on 2003/04/13 07:25:18 UTC

cvs commit: cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl Checkout.xml SearchProducts.xml ShippingForm.xml SignonForm.xml

coliver     2003/04/12 22:25:18

  Modified:    src/scratchpad/webapp/samples/petstore/view/jexl
                        Checkout.xml SearchProducts.xml ShippingForm.xml
                        SignonForm.xml
  Log:
  fixed bugs from poor cut-and-past job
  
  Revision  Changes    Path
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Checkout.xml
  
  Index: Checkout.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Checkout.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Checkout.xml	27 Mar 2003 18:59:23 -0000	1.1
  +++ Checkout.xml	13 Apr 2003 05:25:18 -0000	1.2
  @@ -1,7 +1,7 @@
   <?xml version="1.0"?>
   
   <page xmlns:jexl="http://cocoon.apache.org/transformation/jexl/1.0">
  -    <site signOn="${accountForm/signOn}" view="jexl">
  +    <site signOn="${accountForm.signOn}" view="jexl">
           <cart name="Checkout Summary">
               <backpointer name="Shopping Cart" do="viewCart.do" />
               <jexl:forEach var="cartItem" items="${cartItems}" >
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SearchProducts.xml
  
  Index: SearchProducts.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SearchProducts.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SearchProducts.xml	27 Mar 2003 18:59:23 -0000	1.1
  +++ SearchProducts.xml	13 Apr 2003 05:25:18 -0000	1.2
  @@ -1,7 +1,7 @@
   <?xml version="1.0"?>
   
   <page xmlns:jexl="http://cocoon.apache.org/transformation/jexl/1.0">
  -    <site signOn="${accountForm/signOn}" view="jexl">
  +    <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="Main Menu" do="index.do" />
           <search>
               <jexl:forEach var="item" items="${searchResultsProductList}" >
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ShippingForm.xml
  
  Index: ShippingForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ShippingForm.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ShippingForm.xml	27 Mar 2003 18:59:23 -0000	1.1
  +++ ShippingForm.xml	13 Apr 2003 05:25:18 -0000	1.2
  @@ -1,7 +1,7 @@
   <?xml version="1.0"?>
   
   <page xmlns:jexl="http://cocoon.apache.org/transformation/jexl/1.0">
  -    <site signOn="${accountForm/signOn}" view="jexl">
  +    <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="Main Menu" do="index.do" />
           <form method="POST" styleId="workingOrderForm" action="${continuation.id}.kont">
           <panel>
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SignonForm.xml
  
  Index: SignonForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SignonForm.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SignonForm.xml	27 Mar 2003 18:59:23 -0000	1.1
  +++ SignonForm.xml	13 Apr 2003 05:25:18 -0000	1.2
  @@ -1,7 +1,7 @@
   <?xml version="1.0"?>
   
   <page xmlns:jexl="http://cocoon.apache.org/transformation/jexl/1.0">
  -    <site signOn="{accountForm/signOn}" view="jexl">
  +    <site signOn="${accountForm.signOn}" view="jexl">
           <form method="POST" label="signon" action="${continuation.id}.kont">
               <message type="warning"><jexl:out value="${message}"/></message>
               <input type="text" name="username" value="j2ee" label="Username" />