blob: b9f43fcfade238c1c8d9b25fe61b428e613e1240 [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"
xsi:noNamespaceSchemaLocation="http://www.ofbiz.org/dtds/widget-screen.xsd">
<screen name="LogConfiguration">
<section>
<actions>
<set field="titleProperty" value="PageTitleLogConfiguration"/>
<script location="component://webtools/webapp/webtools/WEB-INF/actions/log/LogConfiguration.bsh"/>
</actions>
<widgets>
<decorator-screen name="CommonWebtoolsDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="boxoutside">
<container style="boxtop">
<label style="boxhead">${uiLabelMap.WebtoolsDebuggingLevelFormDescription}</label>
</container>
<container style="boxbottom">
<include-form name="LevelSwitch" location="component://webtools/webapp/webtools/log/LogForms.xml"/>
</container>
</container>
<label>&lt;br/&gt;</label>
<container style="boxoutside">
<container style="boxtop">
<label style="boxhead">${uiLabelMap.WebtoolsAddLoggerFormDescription}</label>
</container>
<container style="boxbottom">
<include-form name="AddLogger" location="component://webtools/webapp/webtools/log/LogForms.xml"/>
</container>
</container>
<label>&lt;br/&gt;</label>
<container style="boxoutside">
<container style="boxtop">
<label style="boxhead">${uiLabelMap.WebtoolsLoggerListFormDescription}</label>
</container>
<container style="boxbottom">
<include-form name="LoggerList" location="component://webtools/webapp/webtools/log/LogForms.xml"/>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LogView">
<section>
<actions>
<set field="titleProperty" value="PageTitleLogView"/>
<!-- TODO: the following command is not really working (and the default value is always used);
my guess is that the base/config/debug.properties file is not found in the classpath -->
<property-to-field resource="debug" property="log4j.appender.css.File" field="logFileName" default="runtime/logs/ofbiz.html" no-locale="true"/>
<script location="component://webtools/webapp/webtools/WEB-INF/actions/log/LogView.bsh"/>
</actions>
<widgets>
<decorator-screen name="CommonWebtoolsDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container>
<label style="head1">${uiLabelMap.WebtoolsViewLog}</label>
</container>
<container>
<link target="LogView" text="${uiLabelMap.CommonRefresh}" style="buttontext"/>
</container>
<container>
<label style="label">${uiLabelMap.WebtoolsLogFileName}:</label>
<label>${logFileName}</label>
</container>
<platform-specific>
<html><html-template location="component://webtools/webapp/webtools/log/logContent.ftl"/></html>
</platform-specific>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
</screens>