You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ap...@apache.org on 2008/03/17 07:44:03 UTC

svn commit: r637742 - /ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml

Author: apatel
Date: Sun Mar 16 23:44:00 2008
New Revision: 637742

URL: http://svn.apache.org/viewvc?rev=637742&view=rev
Log:
first request of quick checkout process should not require user authentication.

Modified:
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml?rev=637742&r1=637741&r2=637742&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml Sun Mar 16 23:44:00 2008
@@ -582,11 +582,11 @@
       <response name="quick" type="view" value="quickcheckout"/>
       <response name="error" type="view" value="checkoutshippingaddress"/>
       <response name="success" type="view" value="checkoutshippingaddress"/>
-    </request-map>
+    </request-map> 
     <request-map uri="quickcheckout">
-        <security https="true" auth="true"/>
+        <security https="true" auth="false"/>
         <event type="java" path="org.ofbiz.order.shoppingcart.CheckOutEvents" invoke="cartNotEmpty"/>
-        <response name="success" type="view" value="quickcheckout"/>
+        <response name="success" type="request" value="quickAnonSetCustomer"/>
         <response name="error" type="view" value="main"/>
     </request-map>