2014-03-10 10:38:53 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2014-04-22 10:25:54 -07:00
|
|
|
|
<title>${TitleDlna}</title>
|
2014-03-10 10:38:53 -07:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2014-04-24 10:30:59 -07:00
|
|
|
|
<div id="dlnaSettingsPage" data-role="page" class="page type-interior dlnaPage">
|
2014-03-10 10:38:53 -07:00
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
|
|
|
|
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
2014-04-19 22:21:08 -07:00
|
|
|
|
<a href="#" data-role="button" class="ui-btn-active">${TabPlayTo}</a>
|
|
|
|
|
<a href="dlnaserversettings.html" data-role="button">${TabServer}</a>
|
2014-04-08 19:12:17 -07:00
|
|
|
|
<a href="dlnaprofiles.html" data-role="button">${TabProfiles}</a>
|
2014-03-10 10:38:53 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form class="dlnaSettingsForm">
|
|
|
|
|
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
2014-04-08 19:12:17 -07:00
|
|
|
|
<label for="chkEnablePlayTo">${LabelEnableDlnaPlayTo}</label>
|
2014-03-10 10:38:53 -07:00
|
|
|
|
<input type="checkbox" id="chkEnablePlayTo" data-mini="true" />
|
2014-04-08 19:12:17 -07:00
|
|
|
|
<div class="fieldDescription">${LabelEnableDlnaPlayToHelp}</div>
|
2014-03-10 10:38:53 -07:00
|
|
|
|
</li>
|
2014-03-23 13:49:05 -07:00
|
|
|
|
<li>
|
2014-04-08 19:12:17 -07:00
|
|
|
|
<label for="chkEnableDlnaDebugLogging">${LabelEnableDlnaDebugLogging}</label>
|
2014-03-23 13:49:05 -07:00
|
|
|
|
<input type="checkbox" id="chkEnableDlnaDebugLogging" data-mini="true" />
|
2014-04-08 19:12:17 -07:00
|
|
|
|
<div class="fieldDescription">${LabelEnableDlnaDebugLoggingHelp}</div>
|
2014-03-23 13:49:05 -07:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2014-04-08 19:12:17 -07:00
|
|
|
|
<label for="txtClientDiscoveryInterval">${LabelEnableDlnaClientDiscoveryInterval}</label>
|
2014-03-23 13:49:05 -07:00
|
|
|
|
<input type="number" id="txtClientDiscoveryInterval" data-mini="true" min="1" max="300" />
|
2014-04-08 19:12:17 -07:00
|
|
|
|
<div class="fieldDescription">${LabelEnableDlnaClientDiscoveryIntervalHelp}</div>
|
2014-03-23 13:49:05 -07:00
|
|
|
|
</li>
|
2014-04-19 22:21:08 -07:00
|
|
|
|
</ul>
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
2014-03-10 10:38:53 -07:00
|
|
|
|
<li>
|
|
|
|
|
<button type="submit" data-theme="b" data-icon="check">
|
2014-04-08 19:12:17 -07:00
|
|
|
|
${ButtonSave}
|
2014-03-10 10:38:53 -07:00
|
|
|
|
</button>
|
|
|
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
|
2014-04-08 19:12:17 -07:00
|
|
|
|
${ButtonCancel}
|
2014-03-10 10:38:53 -07:00
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('.dlnaSettingsForm').off('submit', DlnaSettingsPage.onSubmit).on('submit', DlnaSettingsPage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|