2013-02-20 18:33:05 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2014-04-05 08:02:50 -07:00
|
|
|
|
<title>${TitleAdvanced}</title>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2016-02-11 11:29:32 -07:00
|
|
|
|
<div id="advancedConfigurationPage" data-role="page" class="page type-interior advancedConfigurationPage" data-require="jqmcollapsible,scripts/advancedconfigurationpage,paper-input,jqmcheckbox">
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
2014-01-07 11:39:35 -07:00
|
|
|
|
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
2014-04-03 15:50:04 -07:00
|
|
|
|
<a href="#" data-role="button" class="ui-btn-active">${TabGeneral}</a>
|
2015-01-18 21:29:57 -07:00
|
|
|
|
<a href="dashboardhosting.html" data-role="button">${TabHosting}</a>
|
2016-01-19 20:02:14 -07:00
|
|
|
|
<a href="serversecurity.html" data-role="button">${TabSecurity}</a>
|
2014-01-07 11:39:35 -07:00
|
|
|
|
</div>
|
2015-05-14 10:16:29 -07:00
|
|
|
|
<form class="advancedConfigurationForm">
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
2014-01-07 11:39:35 -07:00
|
|
|
|
<li id="fldRunAtStartup" style="display: none;">
|
2013-12-14 18:17:57 -07:00
|
|
|
|
<input type="checkbox" id="chkRunAtStartup" name="chkRunAtStartup" data-mini="true" />
|
2014-04-05 08:02:50 -07:00
|
|
|
|
<label for="chkRunAtStartup">${LabelRunServerAtStartup}</label>
|
2013-09-30 08:15:47 -07:00
|
|
|
|
<div id="windowsStartupDescription" class="fieldDescription warningFieldDescription" style="display: none;">
|
2014-07-21 18:29:06 -07:00
|
|
|
|
${LabelRunServerAtStartupHelp}
|
2013-09-30 08:15:47 -07:00
|
|
|
|
</div>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</li>
|
2014-01-11 13:13:18 -07:00
|
|
|
|
<li>
|
|
|
|
|
<input type="checkbox" id="chkDebugLog" name="chkDebugLog" data-mini="true" />
|
2014-04-05 08:02:50 -07:00
|
|
|
|
<label for="chkDebugLog">${LabelEnableDebugLogging}</label>
|
2014-01-11 13:13:18 -07:00
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
2014-07-21 18:29:06 -07:00
|
|
|
|
|
|
|
|
|
<div data-role="collapsible">
|
|
|
|
|
<h2>${HeaderAutomaticUpdates}</h2>
|
|
|
|
|
<div>
|
2015-01-17 22:45:10 -07:00
|
|
|
|
<br />
|
2014-07-21 18:29:06 -07:00
|
|
|
|
<ul data-role="listview" class="ulForm">
|
2015-07-13 14:26:11 -07:00
|
|
|
|
<li class="fldAutomaticUpdates">
|
|
|
|
|
<div data-role="controlgroup">
|
|
|
|
|
<input type="checkbox" id="chkEnableAutomaticServerUpdates" data-mini="true" />
|
|
|
|
|
<label for="chkEnableAutomaticServerUpdates">${OptionEnableAutomaticServerUpdates}</label>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
2014-07-21 18:29:06 -07:00
|
|
|
|
<li>
|
2015-09-13 16:16:33 -07:00
|
|
|
|
<label class="lnlAutomaticUpdateLevel" for="selectAutomaticUpdateLevel"></label>
|
2014-07-26 10:30:15 -07:00
|
|
|
|
<select name="selectAutomaticUpdateLevel" id="selectAutomaticUpdateLevel">
|
2014-07-21 18:29:06 -07:00
|
|
|
|
<option value="Release">${OptionRelease}</option>
|
|
|
|
|
<option value="Beta">${OptionBeta}</option>
|
|
|
|
|
<option value="Dev">${OptionDev}</option>
|
|
|
|
|
</select>
|
|
|
|
|
<div id="devBuildWarning" class="fieldDescription warningFieldDescription" style="display: none;">
|
|
|
|
|
${DevBuildWarning}
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li id="fldEnableAutomaticRestart" style="display: none;">
|
|
|
|
|
<input type="checkbox" id="chkEnableAutomaticRestart" name="chkEnableAutomaticRestart" data-mini="true" />
|
|
|
|
|
<label for="chkEnableAutomaticRestart">${LabelAllowServerAutoRestart}</label>
|
|
|
|
|
<div class="fieldDescription">
|
|
|
|
|
${LabelAllowServerAutoRestartHelp}
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2015-01-17 22:45:10 -07:00
|
|
|
|
<div data-role="collapsible">
|
|
|
|
|
<h2>${HeaderDeveloperOptions}</h2>
|
|
|
|
|
<div>
|
|
|
|
|
<br />
|
|
|
|
|
<div data-role="controlgroup">
|
|
|
|
|
<input type="checkbox" id="chkEnableDashboardResponseCache" data-mini="true" />
|
|
|
|
|
<label for="chkEnableDashboardResponseCache">${OptionEnableWebClientResponseCache}</label>
|
|
|
|
|
<input type="checkbox" id="chkEnableMinification" data-mini="true" />
|
|
|
|
|
<label for="chkEnableMinification">${OptionEnableWebClientResourceMinification}</label>
|
2015-01-18 21:29:57 -07:00
|
|
|
|
</div>
|
2015-01-17 22:45:10 -07:00
|
|
|
|
<div class="fieldDescription">
|
|
|
|
|
${OptionDisableForDevelopmentHelp}
|
|
|
|
|
</div>
|
|
|
|
|
<br /><br />
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
2015-09-05 21:53:37 -07:00
|
|
|
|
<paper-input type="text" id="txtDashboardSourcePath" label="${LabelDashboardSourcePath}" style="display: inline-block; width: 80%;"></paper-input>
|
|
|
|
|
<paper-icon-button id="btnSelectDashboardSourcePath" icon="search" title="${ButtonSelectDirectory}"></paper-icon-button>
|
2015-01-17 22:45:10 -07:00
|
|
|
|
<div class="fieldDescription">${LabelDashboardSourcePathHelp}</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-03-25 14:13:55 -07:00
|
|
|
|
<br />
|
2013-12-14 18:17:57 -07:00
|
|
|
|
<ul data-role="listview" class="ulForm">
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<li>
|
2015-06-25 18:10:56 -07:00
|
|
|
|
<button type="submit" data-role="none" class="clearButton">
|
|
|
|
|
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</button>
|
|
|
|
|
</li>
|
2013-12-25 20:55:59 -07:00
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</ul>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|