[ofbiz-framework] branch release18.12 updated (bccdb8b -> a90ccd6)

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

[ofbiz-framework] branch release18.12 updated (bccdb8b -> a90ccd6)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a change to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git.


    from bccdb8b  Fixed: SOAPService does not work (OFBIZ-11259)
     new baf537e  Fixed: baseEcommerceSecureUrl does not work in ecomseo. (OFBIZ-11267)
     new a90ccd6  Fixed: baseEcommerceSecureUrl does not work in ecomseo. (OFBIZ-11267)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 applications/commonext/config/SeoConfig.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] 01/02: Fixed: baseEcommerceSecureUrl does not work in ecomseo. (OFBIZ-11267)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit baf537e3ac93bcf5b578cb0657a3aa62d3efe560
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Sat Nov 2 09:43:08 2019 +0100

    Fixed: baseEcommerceSecureUrl does not work in ecomseo.
    (OFBIZ-11267)
   
    This fixes it by introducing a new pattern in SeoConfig.xml
   
    (cherry picked from commit 8f4cfeb95185685204e04e778e915b1027234562)
---
 applications/commonext/config/SeoConfig.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/applications/commonext/config/SeoConfig.xml b/applications/commonext/config/SeoConfig.xml
index 65bcea9..0462ed4 100644
--- a/applications/commonext/config/SeoConfig.xml
+++ b/applications/commonext/config/SeoConfig.xml
@@ -90,6 +90,19 @@ under the License.
                 <responsecode>301</responsecode>
             </forward>
         </url-config>
+        
+        <url-config>
+            <description>sample: remove /control in baseEcommerceSecureUrl (OFBIZ-11267)</description>
+            <url-pattern>^/ecomseo/control/(.*)$</url-pattern>
+            <seo>
+                <replacement>/ecomseo/$1</replacement>
+            </seo>
+            <forward>
+                <replacement>/ecomseo/$1</replacement>
+                <responsecode>301</responsecode>
+            </forward>
+        </url-config>
+        
     </url-configs>
 
     <char-filters>

Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] 02/02: Fixed: baseEcommerceSecureUrl does not work in ecomseo. (OFBIZ-11267)

jleroux@apache.org
In reply to this post by jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit a90ccd62a00a56476fb3f2d20dead070dfbde468
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Sat Nov 2 09:43:08 2019 +0100

    Fixed: baseEcommerceSecureUrl does not work in ecomseo.
    (OFBIZ-11267)
   
    This fixes it by introducing a new pattern in SeoConfig.xml