2013-02-20 20:33:05 -05:00
<!DOCTYPE html>
< html >
< head >
< title > Advanced< / title >
< / head >
< body >
< div id = "advancedConfigurationPage" data-role = "page" class = "page type-interior" >
< div data-role = "content" >
< div class = "content-primary" >
< form id = "advancedConfigurationForm" >
< ul data-role = "listview" class = "ulForm" >
< li >
< input type = "checkbox" id = "chkRunAtStartup" name = "chkRunAtStartup" / >
< label for = "chkRunAtStartup" > Run server at startup< / label >
2013-09-30 11:15:47 -04:00
< div id = "windowsStartupDescription" class = "fieldDescription warningFieldDescription" style = "display: none;" >
This will start the tray icon on windows startup. If you'd prefer to start the windows service instead, disable this and configure the service from the control panel.
< / div >
2013-02-20 20:33:05 -05:00
< / li >
2013-03-11 23:09:30 -04:00
< li >
< label for = "selectAutomaticUpdateLevel" > Automatic update level< / label >
< select name = "selectAutomaticUpdateLevel" id = "selectAutomaticUpdateLevel" >
< option value = "Release" > Official Release< / option >
< option value = "Beta" > Beta< / option >
2013-07-06 19:08:20 -04:00
< option value = "Dev" > Dev (Unstable)< / option >
2013-03-11 23:09:30 -04:00
< / select >
2013-09-04 14:26:32 -04:00
< div id = "devBuildWarning" class = "fieldDescription warningFieldDescription" style = "display: none;" >
Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.
< / div >
2013-03-11 23:09:30 -04:00
< / li >
2013-02-20 20:33:05 -05:00
< li >
< label for = "txtPortNumber" > Http server port number: < / label >
< input type = "number" id = "txtPortNumber" name = "txtPortNumber" pattern = "[0-9]*" required = "required" min = "1" / >
< / li >
2013-03-11 23:09:30 -04:00
< li id = "fldWebSocketPortNumber" style = "display: none;" >
2013-02-20 20:33:05 -05:00
< label for = "txtWebSocketPortNumber" > Web socket port number: < / label >
< input type = "number" id = "txtWebSocketPortNumber" name = "txtWebSocketPortNumber" pattern = "[0-9]*" required = "required" min = "1" / >
< / li >
2013-04-23 15:17:21 -04:00
< / ul >
< h2 > Miscellaneous< / h2 >
< ul data-role = "listview" class = "ulForm" >
2013-02-20 20:33:05 -05:00
< li >
< input type = "checkbox" id = "chkEnableDeveloperTools" name = "chkEnableDeveloperTools" / >
< label for = "chkEnableDeveloperTools" > Enable developer tools< / label >
< div class = "fieldDescription" >
When enabled, developer tools will be available from the system tray.
< / div >
< / li >
< li >
< input type = "checkbox" id = "chkDebugLog" name = "chkDebugLog" / >
< label for = "chkDebugLog" > Enable debug logging < / label >
< / li >
< li >
< button type = "submit" data-theme = "b" data-icon = "ok" >
Save
< / button >
< button type = "button" onclick = "Dashboard.navigate('dashboard.html');" data-icon = "delete" >
Cancel
< / button >
< / li >
< / ul >
< / form >
< / div >
< / div >
< script type = "text/javascript" >
$('#advancedConfigurationForm').on('submit', AdvancedConfigurationPage.onSubmit);
< / script >
< / div >
< / body >
< / html >