You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2012/10/09 18:53:08 UTC

svn commit: r1396105 - /ofbiz/trunk/applications/content/ofbiz-component.xml

Author: jleroux
Date: Tue Oct  9 16:53:07 2012
New Revision: 1396105

URL: http://svn.apache.org/viewvc?rev=1396105&view=rev
Log:
A patch from Tom Burns "BIRT interferes with Context Help" https://issues.apache.org/jira/browse/OFBIZ-5033

To reproduce:
In the Accounting,Facility, or Order component.
Click the Help icon
Expected:
Help window opens for the active component
Actual:
Help window opens for BIRT

The following, added in Rev. 1361130 to BIRT ofbiz-component.xml, appears to be causing the problem. The problem goes away if BIRT is not loaded.

<webapp name="accounting"
title="Accounting"
server="default-server"
location="webapp/accounting"
base-permission="OFBTOOLS,ACCOUNTING"
mount-point="/accounting"/>
<webapp name="facility"
title="Facility"
description="FacilityComponentDescription"
server="default-server"
location="webapp/facility"
base-permission="OFBTOOLS,FACILITY"
mount-point="/facility"/>
<webapp name="order"
title="Order"
description="OrderComponentDescription"
server="default-server"
location="webapp/ordermgr"
base-permission="OFBTOOLS,ORDERMGR"
mount-point="/ordermgr"/>

Modified:
    ofbiz/trunk/applications/content/ofbiz-component.xml

Modified: ofbiz/trunk/applications/content/ofbiz-component.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/ofbiz-component.xml?rev=1396105&r1=1396104&r2=1396105&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/ofbiz-component.xml (original)
+++ ofbiz/trunk/applications/content/ofbiz-component.xml Tue Oct  9 16:53:07 2012
@@ -72,4 +72,11 @@ under the License.
         location="webapp/content"
         base-permission="CONTENTMGR"
         mount-point="/content"/>
+
+    <webapp name="ofbizhelp"
+        title="OFBiz Help"
+        server="default-server"
+        location="webapp/ofbizhelp"
+        base-permission="OFBTOOLS"
+        mount-point="/ofbizhelp"/>  
 </ofbiz-component>