This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new 946801048f Improved: fix cross-app menu location issues (Ofbiz 13035) (#774) 946801048f is described below commit 946801048fa065f437c8b9081826af32e7cf6cfa Author: Pierre Smits <pierre.sm...@somonar.com> AuthorDate: Thu Apr 18 10:18:40 2024 +0200 Improved: fix cross-app menu location issues (Ofbiz 13035) (#774) modified: humanres/web.xml - added context-param for calendarMenuLocation, communicationMenuLocation, profileMenuLocation --- applications/humanres/webapp/humanres/WEB-INF/web.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/applications/humanres/webapp/humanres/WEB-INF/web.xml b/applications/humanres/webapp/humanres/WEB-INF/web.xml index b93895f1d1..8a447b65c4 100644 --- a/applications/humanres/webapp/humanres/WEB-INF/web.xml +++ b/applications/humanres/webapp/humanres/WEB-INF/web.xml @@ -43,6 +43,21 @@ under the License. <param-name>mainMenuLocation</param-name> <param-value>component://humanres/widget/HumanresMenus.xml</param-value> </context-param> + <context-param> + <description>The location of the calendar menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description> + <param-name>calendarMenuLocation</param-name> + <param-value>component://workeffort/widget/WorkEffortMenus.xml</param-value> + </context-param> + <context-param> + <description>The location of the communications menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description> + <param-name>communicationMenuLocation</param-name> + <param-value>component://party/widget/partymgr/PartyMenus.xml</param-value> + </context-param> + <context-param> + <description>The location of the profile screen menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description> + <param-name>profileMenuLocation</param-name> + <param-value>component://party/widget/partymgr/PartyMenus.xml</param-value> + </context-param> <filter> <display-name>ControlFilter</display-name>