Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Wiki Markup
{scrollbar}

What

Explorer.xml

Config group

SystemConfigFiles

Required

yes

Description

Defines the main display and configures system settings

schema location

http://fews.wldelft.nl/schemas/version1.0/explorer.xsd

...

  • %VJDBC_PORT%, the actual JDBC port number
  • %PORT%, same as VJDBC_PORT
  • %HOSTNAME%, the actual JDBC host, returned as IP adress
  • %REGION_HOME%, internal variable of FEWS: returns the current FEWS application directory
  • %FEWSDIR%, internal variable of FEWS: returns reference to the current FEWS application directory
  • $ART_VERSCHIL_EXE$, a variable from the global properties
    Code Block
    xml
    xml
    <explorerTask name="Art_Verschil tool">
      <iconFile>%FEWSDIR%/icons/matlab.ico</iconFile>
      <mnemonic>B</mnemonic>
      <arguments>/VJDBC_HOST=localhost /VJDBC_PORT=<at:var at:name="VJDBC_PORT" /><@VJDBC_PORT@</arguments>
      <workDir>%REGION_HOME%/Modules/Art_Verschil</workDir>
      <taskExe>$ART_VERSCHIL_EXE$</taskExe>
      <toolbarTask>true</toolbarTask>
      <menubarTask>true</menubarTask>
      <accelerator>ctrl B</accelerator>
    </explorerTask>
    

...

This allows you to set the rolling barrel options for the client. Available options for the type are:

  • not_automatic: The Rolling Barrel will only run if you launch it using the F12 menu
  • startup_only: The Rolling Barrel will only run when starting up the client
  • shutdown_only: The Rolling Barrel will only run at showdown of the client
  • interval: The Rolling Barrel will run at the specified interval

Example:

Code Block
<rollingBarrelOptions>
	<type>interval</type>
	<interval unit="hour" multiplier="1"/>
</rollingBarrelOptions>

...

This allows you to set the default sorting option for the parameters in the Explorer. Available options are:

  • default: Use the default sorting from the configuration file Parameters.xml.
  • name: Sort by parameter name (ascending).

Example:

Code Block
<parameterListConfig>
	<sortOption>name</sortOption>
</parameterListConfig>

...