...
Configuration
The configuration file custom.js for the operationsGui is stored in the ./operations_gui directory beside the ./config directory.
For release < 1.3.9 you find the custom.js in the ./config/html directory.
In the custom.js are some variables which are defaults when the site is loaded but can be overwritten via cookies.
The custom.js of version 1.3.9 contains the following variables:
_disable_cookie_settings
Possible values are true
and false
.
If false
then almost all following variables are stored in cookies,
...
so that these settings are only default values and will be overwritten via the cookies.
If true
then only filters are read from cookies whereat the
...
defined correspondent filters in this file have priority.
Code Block |
---|
_disable_cookie_settings = false;
|
_sos_lang
Set the interface language.
A language file scheduler_lang__sos_lang.js must exist.
If this value is empty then no language file is tried to include and english is used.
At this time 'de' (german), 'fr' (french), 'ru' (russian) and 'es' (spanish) is supported.
Code Block |
---|
_sos_lang = '';
|