Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


What

WebOperatorClien.xml

Config group

SystemConfigFiles

Required

no

Description

Defines the look and feel of the Web Operator Client

schema location

https://fewsdocs.deltares.nl/schemas/version1.0/webOperatorClient.xsd

General

Configuration of Web Operator client can be used to customize the look and feel of a Web OC.

...

In the components section the order of the compontent, name of components and permissions can be configured.


Example config file

Code Block
<?xml version="1.0" encoding="utf-8"?>
<webOperatorClient xmlns="http://www.wldelft.nl/fews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews https://fewsdocs.deltares.nl/schemas/version1.0/webOperatorClient.xsd">
	<!--Optional:-->
	<general>
		<title>Delft-FEWS Web OC</title>
		<icons>
			<logo>resources/images/my-logo.png</logo>
			<favicon>resources/images/favicon.ico</favicon>
		</icons>
	</general>
	<components>
		<dataViewer enabled="true">
			<title>My Data Viewer</title>
			<viewPermission>Forecaster</viewPermission>
		</dataViewer>
		<timeSeriesDisplay enabled="true">
			<title>My Time Series Display</title>
		</timeSeriesDisplay>
		<spatialDisplay enabled="true">
			<title>My Spatial Display</title>
		</spatialDisplay>
		<systemMonitor enabled="true">
			<title>My System Monitor</title>
			<viewPermission>Operator</viewPermission>
		</systemMonitor>
		<archiveDisplay enabled="true">
			<title>My Archive Display</title>
		</archiveDisplay>
	</components>
</webOperatorClient>

...