blob: 3217b6c626d187f3e04a7f8e4832a4dc367cd3c8 [file] [log] [blame]
<?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"
xmlns="http://ofbiz.apache.org/Widget-Screen" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen http://ofbiz.apache.org/dtds/widget-screen.xsd">
<screen name="main-decorator">
<section>
<actions>
<property-map resource="EcommerceUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="ContentUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="AccountingUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/>
</actions>
<widgets>
<platform-specific><html>
<html-template location="component://cmssite/template/cms/HtmlHead.ftl"/>
</html></platform-specific>
<content content-id="CMSS_DEMO_HEADER"/>
<decorator-section-include name="body"/>
<content content-id="CMSS_DEMO_FOOTER"/>
</widgets>
</section>
</screen>
<screen name="testScreen">
<section>
<widgets>
<decorator-screen name="main-decorator">
<decorator-section name="body">
<label style="h2" text="example with screen decorator and widget"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="blogScreen">
<section>
<actions>
<property-to-field property="blog.view.size" field="blogViewSize" resource="blog" default="20"/>
<set field="blogContentId" value="BLOGROOTMADMAX"/>
<entity-condition entity-name="ContentAssocViewTo" use-cache="false" list="blogList">
<condition-list combine="and">
<condition-expr field-name="contentIdStart" operator="equals" from-field="blogContentId"/>
<condition-expr field-name="caContentAssocTypeId" operator="equals" value="PUBLISH_LINK"/>
<condition-expr field-name="caThruDate" operator="equals" value=""/>
<condition-expr field-name="statusId" operator="equals" value="CTNT_PUBLISHED"/>
</condition-list>
<order-by field-name="caFromDate DESC"/>
</entity-condition>
<set field="viewIndex" from-field="requestParameters.VIEW_INDEX" type="Integer"/>
</actions>
<widgets>
<decorator-screen name="main-decorator">
<decorator-section name="body">
<platform-specific><html>
<html-template location="component://cmssite/template/cms/BlogList.ftl"/>
</html></platform-specific>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="publicDocs">
<section>
<widgets>
<decorator-screen name="main-decorator">
<decorator-section name="body">
<container>
<link style="h2" text="The Apache OFBiz document HTML version" target="/cmssite/cms/APACHE_OFBIZ_HTML" target-window="_BLANK" url-mode="plain"></link>
</container>
<container>
<link style="h2" text="The Apache OFBiz document PDF version" target="/cmssite/cms/APACHE_OFBIZ_PDF" target-window="_BLANK" url-mode="plain"></link>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
</screens>