Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.0 KiB
54 lines
2.0 KiB
15 years ago
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
|
<title>_(Torrent Download Speed Limiting)</title>
|
||
|
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
||
|
<link rel="stylesheet" href="css/mocha.css" type="text/css" />
|
||
|
<script type="text/javascript" src="scripts/mootools-1.2-core-yc.js" charset="utf-8"></script>
|
||
|
<script type="text/javascript" src="scripts/mootools-1.2-more.js" charset="utf-8"></script>
|
||
15 years ago
|
<script type="text/javascript" src="scripts/mocha-yc.js" charset="utf-8"></script>
|
||
15 years ago
|
<script type="text/javascript" src="scripts/parametrics.js" charset="utf-8"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div style="width: 100%; text-align: center; margin: 0 auto;">
|
||
|
<div id="dllimitSlider" class="slider">
|
||
|
<div id="dllimitUpdate" class="update">_(Download limit:) <span id="dllimitUpdatevalue" class="updatevalue">0</span> <span id="dlLimitUnit">_(KiB/s)</span></div>
|
||
|
<div class="sliderWrapper">
|
||
|
<div id="dllimitSliderknob" class="sliderknob"></div>
|
||
|
<div id="dllimitSliderarea" class="sliderarea"></div>
|
||
|
</div>
|
||
|
<div class="clear"></div>
|
||
|
</div>
|
||
|
<script type="text/javascript">
|
||
|
var hash = new URI().getData('hash');
|
||
|
setDlLimit = function() {
|
||
|
var limit = $("dllimitUpdatevalue").get('html').toInt() * 1024;
|
||
15 years ago
|
if(hash == "global") {
|
||
|
new Request({url: '/command/setGlobalDlLimit',
|
||
|
method: 'post',
|
||
|
data: {'limit': limit},
|
||
|
onComplete: function() {
|
||
|
window.parent.closeWindows();
|
||
|
}
|
||
|
}).send();
|
||
|
} else {
|
||
|
new Request({url: '/command/setTorrentDlLimit',
|
||
|
method: 'post',
|
||
|
data: {'hash': hash, 'limit': limit},
|
||
|
onComplete: function() {
|
||
|
window.parent.closeWindows();
|
||
|
}
|
||
|
}).send();
|
||
|
}
|
||
15 years ago
|
}
|
||
|
</script>
|
||
|
<input type="button" value="_(Apply)" onclick="setDlLimit()"/>
|
||
|
</div>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
MochaUI.addDlLimitSlider(hash);
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|