2013-05-27 18:59:26 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Media Browser</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<div id="musicVideosPage" data-role="page" class="page libraryPage" data-theme="b" data-view="music">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
|
|
|
|
<div class="libraryViewNav">
|
|
|
|
|
<a href="musicrecommended.html">Suggested</a>
|
|
|
|
|
<a href="songs.html">Songs</a>
|
|
|
|
|
<a href="musicalbums.html">Albums</a>
|
2013-11-21 13:48:26 -07:00
|
|
|
|
<a href="musicalbumartists.html">Album Artists</a>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<a href="musicartists.html">Artists</a>
|
|
|
|
|
<a href="musicgenres.html">Genres</a>
|
|
|
|
|
<a href="musicvideos.html" class="ui-btn-active">Music Videos</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="alphabetPicker">
|
|
|
|
|
</div>
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="viewSettings">
|
|
|
|
|
<div class="viewControls">
|
2013-12-27 09:18:42 -07:00
|
|
|
|
<button data-mini="true" data-icon="sort" data-inline="true" onclick="$('#sortPanel', $(this).parents('.page')).panel( 'toggle' );">Sort</button>
|
|
|
|
|
<button data-mini="true" data-icon="filter" data-inline="true" onclick="$('#filterPanel', $(this).parents('.page')).panel( 'toggle' );">Filter</button>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div class="listTopPaging">
|
|
|
|
|
</div>
|
2013-10-17 09:24:35 -07:00
|
|
|
|
<div class="viewSummary"></div>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div id="items" class="itemsContainer"></div>
|
|
|
|
|
</div>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Sort By:</strong>
|
|
|
|
|
</legend>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy defaultSort" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="radioSortName">Name</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioBudget" value="off" data-sortby="Budget" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="radioBudget">Budget</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating" data-mini="true">
|
2013-09-13 18:03:55 -07:00
|
|
|
|
<label for="radioCommunityRating">Community rating</label>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioCriticRating" value="off" data-sortby="CriticRating" data-mini="true">
|
2013-09-13 18:03:55 -07:00
|
|
|
|
<label for="radioCriticRating">Critic rating</label>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
|
2013-09-13 18:03:55 -07:00
|
|
|
|
<label for="radioDateCreated">Date added</label>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDatePlayed" value="off" data-sortby="DatePlayed" data-mini="true">
|
2013-09-13 18:03:55 -07:00
|
|
|
|
<label for="radioDatePlayed">Date played</label>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioPlayCount" value="off" data-sortby="PlayCount" data-mini="true">
|
2013-09-13 18:03:55 -07:00
|
|
|
|
<label for="radioPlayCount">Play count</label>
|
2013-10-17 09:24:35 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="PremiereDate" data-mini="true">
|
2013-09-22 09:49:55 -07:00
|
|
|
|
<label for="radioPremiereDate">Release Date</label>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioRevenue" value="off" data-sortby="Revenue" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="radioRevenue">Revenue</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioRuntime" value="off" data-sortby="Runtime" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="radioRuntime">Runtime</label>
|
2013-09-13 13:53:46 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioVideoBitRate" value="off" data-sortby="VideoBitRate,SortName" data-mini="true">
|
2013-09-13 18:03:55 -07:00
|
|
|
|
<label for="radioVideoBitRate">Video bit rate</label>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Sort Order:</strong>
|
|
|
|
|
</legend>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="radioAscending">Ascending</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="radioDescending">Descending</label>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<form>
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Filters:</strong>
|
|
|
|
|
</legend>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkPlayed" id="chkPlayed" data-filter="IsPlayed" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkPlayed">Watched</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkUnplayed" id="chkUnplayed" data-filter="IsUnPlayed" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkUnplayed">Unwatched</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkResumable" id="chkResumable" data-filter="IsResumable" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkResumable">Resumable</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkIsFavorite">Favorite</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkLikes">Likes</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkDislikes">Dislikes</label>
|
|
|
|
|
</fieldset>
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Type:</strong>
|
|
|
|
|
</legend>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkVideoTypeFilter" type="checkbox" name="chkBluray" id="chkBluray" data-filter="Bluray" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkBluray">Bluray</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkVideoTypeFilter" type="checkbox" name="chkDvd" id="chkDvd" data-filter="Dvd" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkDvd">Dvd</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkVideoTypeFilter" type="checkbox" name="chkIso" id="chkIso" data-filter="Iso" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkIso">Iso</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chk3DFilter" type="checkbox" name="chk3D" id="chk3D" data-filter="Digital3D,Sbs3D" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chk3D">3D</label>
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Features:</strong>
|
|
|
|
|
</legend>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkFeatureFilter" type="checkbox" name="chkSubtitle" id="chkSubtitle" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkSubtitle">Subtitles</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkFeatureFilter" type="checkbox" name="chkTrailer" id="chkTrailer" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkTrailer">Trailer</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkFeatureFilter" type="checkbox" name="chkThemeSong" id="chkThemeSong" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkThemeSong">Theme song</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkFeatureFilter" type="checkbox" name="chkThemeVideo" id="chkThemeVideo" data-mini="true">
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<label for="chkThemeVideo">Theme video</label>
|
|
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|