svn commit: r1844744 - in /ofbiz: ofbiz-framework/trunk/framework/common/webcommon/WEB-INF/ ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/WEB-INF/ ofbiz-plugins/trunk/solr/webapp/solr/WEB-INF/ ofbiz-plugins/trunk/webpos/webapp/webpos/WEB-INF/

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1844744 - in /ofbiz: ofbiz-framework/trunk/framework/common/webcommon/WEB-INF/ ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/WEB-INF/ ofbiz-plugins/trunk/solr/webapp/solr/WEB-INF/ ofbiz-plugins/trunk/webpos/webapp/webpos/WEB-INF/

jleroux@apache.org
Author: jleroux
Date: Wed Oct 24 08:57:03 2018
New Revision: 1844744

URL: http://svn.apache.org/viewvc?rev=1844744&view=rev
Log:
Improved: Remove few request-map "edit" attributes in controllers
(OFBIZ-10608)

As documented, currently

    Reserved for future use (not used yet).

I checked, it's still not implemented. So no need to confuse people for now,
better to remove until it's really used.



Modified:
    ofbiz/ofbiz-framework/trunk/framework/common/webcommon/WEB-INF/common-controller.xml
    ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
    ofbiz/ofbiz-plugins/trunk/solr/webapp/solr/WEB-INF/controller.xml
    ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/WEB-INF/controller.xml

Modified: ofbiz/ofbiz-framework/trunk/framework/common/webcommon/WEB-INF/common-controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/common/webcommon/WEB-INF/common-controller.xml?rev=1844744&r1=1844743&r2=1844744&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/common/webcommon/WEB-INF/common-controller.xml (original)
+++ ofbiz/ofbiz-framework/trunk/framework/common/webcommon/WEB-INF/common-controller.xml Wed Oct 24 08:57:03 2018
@@ -39,7 +39,7 @@ under the License.
     </postprocessor>
 
     <!-- Security Mappings -->
-    <request-map uri="checkLogin" edit="false">
+    <request-map uri="checkLogin">
         <description>Verify a user is logged in.</description>
         <security https="true" auth="false"/>
         <event type="java" path="org.apache.ofbiz.webapp.control.LoginWorker" invoke="extensionCheckLogin"/>
@@ -47,7 +47,7 @@ under the License.
         <response name="impersonated" type="view" value="impersonated"/>
         <response name="error" type="view" value="login"/>
     </request-map>
-    <request-map uri="ajaxCheckLogin" edit="false">
+    <request-map uri="ajaxCheckLogin">
         <description>Verify a user is logged in.</description>
         <security https="true" auth="false"/>
         <event type="java" path="org.apache.ofbiz.webapp.control.LoginWorker" invoke="extensionCheckLogin"/>

Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/WEB-INF/controller.xml?rev=1844744&r1=1844743&r2=1844744&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/WEB-INF/controller.xml (original)
+++ ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/WEB-INF/controller.xml Wed Oct 24 08:57:03 2018
@@ -77,7 +77,7 @@ under the License.
     <default-request request-uri="cms"/>
 
     <!-- Security Request Mappings -->
-    <request-map uri="checkLogin" edit="false">
+    <request-map uri="checkLogin">
         <description>Verify a user is logged in.</description>
         <security https="true" auth="false"/>
         <event type="java" path="org.apache.ofbiz.securityext.login.LoginEvents" invoke="storeCheckLogin"/>

Modified: ofbiz/ofbiz-plugins/trunk/solr/webapp/solr/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/solr/webapp/solr/WEB-INF/controller.xml?rev=1844744&r1=1844743&r2=1844744&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/trunk/solr/webapp/solr/WEB-INF/controller.xml (original)
+++ ofbiz/ofbiz-plugins/trunk/solr/webapp/solr/WEB-INF/controller.xml Wed Oct 24 08:57:03 2018
@@ -33,7 +33,7 @@ under the License.
     </preprocessor>
     
     <!-- Security Mappings -->
-    <request-map uri="checkLogin" edit="false">
+    <request-map uri="checkLogin">
         <description>Verify a user is logged in.</description>
         <security https="true" auth="false"/>
         <event type="java" path="org.apache.ofbiz.solr.control.OFBizSolrLoginWorker" invoke="extensionCheckLogin"/>

Modified: ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/WEB-INF/controller.xml?rev=1844744&r1=1844743&r2=1844744&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/WEB-INF/controller.xml (original)
+++ ofbiz/ofbiz-plugins/trunk/webpos/webapp/webpos/WEB-INF/controller.xml Wed Oct 24 08:57:03 2018
@@ -57,7 +57,7 @@
     </after-login>
     
     <!-- Security Mappings -->
-    <request-map uri="checkLogin" edit="false">
+    <request-map uri="checkLogin">
         <description>Verify a user is logged in.</description>
         <security https="true" auth="false"/>
         <event type="java" path="org.apache.ofbiz.securityext.login.LoginEvents" invoke="storeCheckLogin"/>