INSPIRE Konfiguration
Falls Sie die INSPIRE Job Konfigurationseinstellungen flexibler handhaben wollen, können Sie die Standardeinstellungen in einer JavaScript-Datei editieren.
Öffnen Sie die Datei <monitor>\webapps\monitor\js\monitor-edit.js
in einem geeigneten Editor.
Die INSPIRE Werte befinden sich am Anfang der Datei:
INSPIRE default values
/*con terra service.monitor javascript helper function (yes, quite outdated.) */
/*----------------*/
/*INSPIRE default values*/
/*----------------*/
/* Please specify if the input fields should turn into read only mode when dealing with INSPIRE services */
var inspireAccessibilityReadOnly = true;
/* the background color for inspire input fields */
var backgroundColor = "#ddd";
/*----------------*/
/* the default values for capacity settings on the different inspire service types, read: number of parallel requests */
var inspireCapacityDownload = "10";
var inspireCapacityView = "20";
var inspireCapacityDiscovery = "30";
/*----------------*/
/* the default values for timout settings on the different inspire service types, read: number of milliseconds to respond in */
var inspireTimeoutDiscovery = "3000";
var inspireTimeoutView = "5000";
var inspireTimeoutDownload = "30000";
/*----------------*/
/* the default value for availability settings on all inspire service types, read: percentage of availability */
var inspireAvailability = "99";
Falls die HTML Eingabefelder auch bei INSPIRE Diensten editierbar haben wollen, setzen Sie die Variable inspireAccessibilityReadOnly
auf true
.
Ebenso ist es möglich die Standardwerte der INSPIRE Dienst-spezifischen Eigenschaften zu ändern.