1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 13:04:23 +00:00

- Oops, forgot to commit those

This commit is contained in:
Christophe Dumez 2009-11-23 20:16:17 +00:00
parent f63199f7b7
commit 30b5daaa2a
3 changed files with 66 additions and 0 deletions

7
src/webui/filters.html Normal file
View File

@ -0,0 +1,7 @@
<ul>
<li class="selectedFilter" id="all_filter"><a href="#" onclick="setFilter('all');"><img src="images/skin/filterall.png"/>_(All)</a></li>
<li id="downloading_filter"><a href="#" onclick="setFilter('downloading');"><img src="images/skin/downloading.png"/>_(Downloading)</a></li>
<li id="completed_filter"><a href="#" onclick="setFilter('completed');"><img src="images/skin/uploading.png"/>_(Completed)</a></li>
<li id="active_filter"><a href="#" onclick="setFilter('active');"><img src="images/skin/filteractive.png"/>_(Active)</a></li>
<li id="inactive_filter"><a href="#" onclick="setFilter('inactive');"><img src="images/skin/filterinactive.png"/>_(Inactive)</a></li>
</ul>

37
src/webui/properties.html Normal file
View File

@ -0,0 +1,37 @@
<div>
<!-- <div style="float:right;padding-top:3px;"><img src="images/icons/help.gif" width="16" height="16" alt="Help" /></div> -->
<ul id="propertiesTabs" class="tab-menu">
<li id="PropGeneralLink" class="selected"><a>General</a></li>
<li id="PropTrackersLink"><a>Trackers</a></li>
<li id="PropFilesLink"><a>Files</a></li>
</ul>
<div class="clear"></div>
<!--<div id="propertyTab"></div>-->
</div>
<script type="text/javascript">
MochaUI.initializeTabs('propertiesTabs');
$('PropGeneralLink').addEvent('click', function(e){
MochaUI.updateContent({
'element': $('propertyTab'),
'url': 'pages/features-layout.html'
});
});
$('PropTrackersLink').addEvent('click', function(e){
MochaUI.updateContent({
'element': $('propertyTab'),
'url': 'pages/features-windows.html'
});
});
$('PropFilesLink').addEvent('click', function(e){
MochaUI.updateContent({
'element': $('propertyTab'),
'url': 'pages/features-general.html'
});
});
</script>

View File

@ -0,0 +1,22 @@
<table class="torrentTable" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th></th>
<th>_(Name)</th>
<th id='prioHeader'>#</th>
<th>_(Size)</th>
<th style="width: 90px;">_(Done)</th>
<th>_(Seeds)</th>
<th>_(Peers)</th>
<th>_(Down Speed)</th>
<th>_(Up Speed)</th>
<th>_(ETA)</th>
<th>_(Ratio)</th>
</tr>
</thead>
<tbody id="myTable"></tbody>
</table>
<script>
myTable.setup('myTable', 4);
</script>