Skip to content

Commit

Permalink
Improved: Plugins - add mainMenuLocation to web.xml (OFBIZ-12948) (#93)
Browse files Browse the repository at this point in the history
Add the mainMenuLocation to the web.xml file of various plugins

modified:
- assetmaint/web.xml
- ismgr/web.xml
- bi/web/web.xml
- birt/web.xml
- ebay/web.xml
- ebaystore/web.xml
- example/web.xml
- exampleext/web.xml
- firstpaymentgateway/web.xml
- lucene/web.xml
- msggateway/web.xml
- pricat/web.xml
- pricatdemo/web.xml
- projectmgr/web.xml
- scrum/web.xml
- solr/web.xml
- webpos/web.xml
  • Loading branch information
PierreSmits committed Mar 19, 2024
1 parent 9161c71 commit a40e38a
Show file tree
Hide file tree
Showing 18 changed files with 90 additions and 0 deletions.
5 changes: 5 additions & 0 deletions assetmaint/webapp/assetmaint/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@
<param-name>partyDecoratorLocation</param-name>
<param-value>component://accounting/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://assetmaint/widget/AssetMaintMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions assetmaint/webapp/ismgr/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@
<param-name>fixedAssetMaintDecoratorLocation</param-name>
<param-value>component://assetmaint/widget/ismgr/AssetmaintScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://assetmaint/widget/ismgr/Menus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions bi/webapp/bi/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
<param-name>mainDecoratorLocation</param-name>
<param-value>component://bi/widget/BiScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://bi/widget/BiMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions birt/webapp/birt/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://birt/widget/birt/BirtScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://birt/widget/birt/BirtMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions ebay/webapp/ebay/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://ebay/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://ebay/widget/EbayMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions ebaystore/webapp/ebaystore/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://ebaystore/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://ebaystore/widget/EbayStoreMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions example/webapp/example/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://example/widget/example/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://example/widget/example/ExampleMenus.xml</param-value>
</context-param>
<context-param>
<description>Remove unnecessary whitespace from HTML output.</description>
<param-name>compressHTML</param-name>
Expand Down
5 changes: 5 additions & 0 deletions exampleext/webapp/exampleext/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://exampleext/widget/example/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://exampleext/widget/example/ExampleMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions firstdatapaymentgateway/webapp/firstdata/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://firstdatapaymentgateway/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://firstdatapaymentgateway/widget/FirstDataMenus.xml</param-value>
</context-param>
<context-param>
<description>Remove unnecessary whitespace from HTML output.</description>
<param-name>compressHTML</param-name>
Expand Down
5 changes: 5 additions & 0 deletions lucene/webapp/content/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ under the License.
<param-name>cmsDecoratorLocation</param-name>
<param-value>component://lucene/widget/LuceneScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://lucene/widget/LuceneMenus.xml</param-value>
</context-param>
<context-param>
<description>Remove unnecessary whitespace from HTML output.</description>
<param-name>compressHTML</param-name>
Expand Down
5 changes: 5 additions & 0 deletions msggateway/webapp/msggateway/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://msggateway/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://msggateway/widget/MsgGatewayMenus.xml</param-value>
</context-param>
<context-param>
<description>Remove unnecessary whitespace from HTML output.</description>
<param-name>compressHTML</param-name>
Expand Down
5 changes: 5 additions & 0 deletions myportal/webapp/myportal/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
<param-name>mainDecoratorLocation</param-name>
<param-value>component://myportal/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://myportal/widget/MyPortalMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions pricat/webapp/pricat/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://pricat/widget/SampleScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://pricat/widget/PriCatMenus.xml</param-value>
</context-param>
<context-param>
<description>Remove unnecessary whitespace from HTML output.</description>
<param-name>compressHTML</param-name>
Expand Down
5 changes: 5 additions & 0 deletions pricat/webapp/pricatdemo/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://pricat/widget/SampleScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://pricat/widget/PriCatDemoMenus.xml</param-value>
</context-param>
<context-param>
<description>Remove unnecessary whitespace from HTML output.</description>
<param-name>compressHTML</param-name>
Expand Down
5 changes: 5 additions & 0 deletions projectmgr/webapp/projectmgr/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
<param-name>mainDecoratorLocation</param-name>
<param-value>component://projectmgr/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://projectmgr/widget/ProjectMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions scrum/webapp/scrum/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ under the License.
<param-name>mainDecoratorLocation</param-name>
<param-value>component://scrum/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://scrum/widget/scrumMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down
5 changes: 5 additions & 0 deletions solr/webapp/solr/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
<param-value>component://solr/widget/CommonScreens.xml</param-value>
<!-- The location of the main-decorator screen to use for this webapp; referred to as a context variable in screen def XML files. -->
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://solr/widget/SolrMenus.xml</param-value>
</context-param>
<context-param>
<param-name>partyDecoratorLocation</param-name>
<param-value>component://content/widget/CommonScreens.xml</param-value>
Expand Down
5 changes: 5 additions & 0 deletions webpos/webapp/webpos/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
<param-name>mainDecoratorLocation</param-name>
<param-value>component://webpos/widget/CommonScreens.xml</param-value>
</context-param>
<context-param>
<description>The location of the menus file to be used in this webapp; referred to as a context variable in screen def XML files.</description>
<param-name>mainMenuLocation</param-name>
<param-value>component://webpos/widget/WebPosMenus.xml</param-value>
</context-param>

<filter>
<display-name>ControlFilter</display-name>
Expand Down

0 comments on commit a40e38a

Please sign in to comment.