| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| <screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd"> |
| <screen name="main-decorator"> |
| <section> |
| <actions> |
| <!-- base/top/specific map first, then more common map added for shared labels --> |
| <property-map resource="TemporalExpressionUiLabels" map-name="uiLabelMap" global="true"/> |
| <property-map resource="WebtoolsUiLabels" map-name="uiLabelMap" global="true"/> |
| <property-map resource="SecurityUiLabels" map-name="uiLabelMap" global="true"/> |
| <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/> |
| <set field="layoutSettings.companyName" from-field="uiLabelMap.WebtoolsCompanyName" global="true"/> |
| <set field="layoutSettings.companySubtitle" from-field="uiLabelMap.WebtoolsCompanySubtitle" global="true"/> |
| <!-- layoutSettings.headerImageUrl can be used to specify an application specific logo; if not set, |
| then the global layoutSettings.commonHeaderImageUrl (specified in GlobalDecorator) will be used. --> |
| <!--<set field="layoutSettings.headerImageUrl" value="/images/ofbiz_logo.gif" global="true"/>--> |
| <!-- <set field="layoutSettings.headerMiddleBackgroundUrl" value="" global="true"/> --> |
| <!-- <set field="layoutSettings.headerRightBackgroundUrl" value="" global="true"/> --> |
| <set field="activeApp" value="webtools" global="true"/> |
| <!-- <set field="appheaderTemplate" value="component://webtools/webapp/webtools/includes/appheader.ftl" global="true"/> --> |
| <!-- Help link actions --> |
| <set field="helpTopic" value="${groovy: webappName.toUpperCase() + '_' + requestAttributes._CURRENT_VIEW_}"/> |
| <set field="applicationMenuLocation" value="component://webtools/widget/Menus.xml" global="true"/> |
| <set field="applicationMenuName" value="WebtoolsAppBar" global="true"/> |
| <set field="applicationTitle" value="${uiLabelMap.FrameworkWebTools}" global="true"/> |
| </actions> |
| <widgets> |
| <include-screen name="GlobalDecorator" location="component://common/widget/CommonScreens.xml"/> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="main"> |
| <section> |
| <actions> |
| <set field="titleProperty" value="WebtoolsMainPage"/> |
| <set field="headerItem" value="main"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="body"> |
| <platform-specific><html><html-template location="component://webtools/webapp/webtools/main.ftl"/></html></platform-specific> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| <screen name="printStart"> |
| <section> |
| <widgets> |
| <platform-specific><html><html-template location="component://webtools/webapp/webtools/print/printStart.ftl"/></html></platform-specific> |
| </widgets> |
| </section> |
| </screen> |
| <screen name="printDone"> |
| <section> |
| <widgets> |
| <platform-specific><html><html-template location="component://webtools/webapp/webtools/print/printDone.ftl"/></html></platform-specific> |
| </widgets> |
| </section> |
| </screen> |
| <screen name="browsercerts"> |
| <section> |
| <actions> |
| <set field="tabButtonItem" value="myCertificates"/> |
| <set field="titleProperty" value="WebtoolsCertsX509"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="CommonConfigurationDecorator" location="component://webtools/widget/CommonScreens.xml"> |
| <decorator-section name="body"> |
| <platform-specific><html><html-template location="component://webtools/webapp/webtools/cert/viewbrowsercerts.ftl"/></html></platform-specific> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonEntityDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="entity"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="pre-body"> |
| <section> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <include-menu name="EntityTabBar" location="component://webtools/widget/Menus.xml"/> |
| </widgets> |
| </section> |
| </decorator-section> |
| <decorator-section name="body"> |
| <section> |
| <!-- do check for WEBTOOLS, _VIEW permission --> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WebtoolsPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonServiceDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="service"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="pre-body"> |
| <section> |
| <condition> |
| <if-has-permission permission="WEBTOOLS" action="_VIEW"/> |
| </condition> |
| <widgets> |
| <include-menu name="serviceTabBar" location="component://webtools/widget/Menus.xml"/> |
| </widgets> |
| </section> |
| </decorator-section> |
| <decorator-section name="body"> |
| <section> |
| <!-- do check for WEBTOOLS, _VIEW permission --> |
| <condition> |
| <if-has-permission permission="WEBTOOLS" action="_VIEW"/> |
| </condition> |
| <widgets> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WebtoolsPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonImportExportDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="importExport"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="pre-body"> |
| <section> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <include-menu name="importExportTabBar" location="component://webtools/widget/Menus.xml"/> |
| </widgets> |
| </section> |
| </decorator-section> |
| <decorator-section name="body"> |
| <section> |
| <!-- do check for WEBTOOLS, _VIEW permission --> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WebtoolsPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonArtifactDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="artifact"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="pre-body"> |
| <section> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <include-menu name="artifactTabBar" location="component://webtools/widget/Menus.xml"/> |
| </widgets> |
| </section> |
| </decorator-section> |
| <decorator-section name="body"> |
| <section> |
| <!-- do check for WEBTOOLS, _VIEW permission --> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WebtoolsPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonConfigurationDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="configuration"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="pre-body"> |
| <section> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <include-menu name="configurationTabBar" location="component://webtools/widget/Menus.xml"/> |
| </widgets> |
| </section> |
| </decorator-section> |
| <decorator-section name="body"> |
| <section> |
| <!-- do check for WEBTOOLS, _VIEW permission --> |
| <condition> |
| <if-has-permission permission="ENTITY_MAINT"/> |
| </condition> |
| <widgets> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WebtoolsPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonGeoManagementDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="geoManagement"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="pre-body"> |
| <section> |
| <condition> |
| <if-has-permission permission="WEBTOOLS" action="_VIEW"/> |
| </condition> |
| <widgets> |
| <include-menu name="geoManagement" location="component://webtools/widget/Menus.xml"/> |
| </widgets> |
| </section> |
| </decorator-section> |
| <decorator-section name="body"> |
| <section> |
| <!-- do check for WEBTOOLS, _VIEW permission --> |
| <condition> |
| <if-has-permission permission="WEBTOOLS" action="_VIEW"/> |
| </condition> |
| <widgets> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WebtoolsPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| </screens> |