Author: jleroux Date: Tue Oct 9 17:25:08 2012 New Revision: 1396128 URL: http://svn.apache.org/viewvc?rev=1396128&view=rev Log: "Applied fix from trunk for revision: 1396105 " ------------------------------------------------------------------------ r1396105 | jleroux | 2012-10-09 18:53:07 +0200 (mar., 09 oct. 2012) | 33 lines
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/branches/release11.04/ (props changed) ofbiz/branches/release11.04/applications/content/ofbiz-component.xml Propchange: ofbiz/branches/release11.04/ ------------------------------------------------------------------------------ Merged /ofbiz/trunk:r1396105 Modified: ofbiz/branches/release11.04/applications/content/ofbiz-component.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/applications/content/ofbiz-component.xml?rev=1396128&r1=1396127&r2=1396128&view=diff ============================================================================== --- ofbiz/branches/release11.04/applications/content/ofbiz-component.xml (original) +++ ofbiz/branches/release11.04/applications/content/ofbiz-component.xml Tue Oct 9 17:25:08 2012 @@ -73,4 +73,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>

