2017-11-02 12:14:27 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="${LANG}">
|
2009-11-26 08:29:06 +00:00
|
|
|
<head>
|
2018-03-21 14:34:37 +08:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>QBT_TR(Download from URLs)QBT_TR[CONTEXT=downloadFromURL]</title>
|
2017-10-11 20:27:19 +08:00
|
|
|
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
2018-03-21 14:34:37 +08:00
|
|
|
<link rel="stylesheet" href="css/Tabs.css" type="text/css" />
|
|
|
|
<script src="scripts/mootools-1.2-core-yc.js"></script>
|
|
|
|
<script src="scripts/mootools-1.2-more.js"></script>
|
|
|
|
<script src="scripts/mocha-yc.js"></script>
|
2009-11-26 08:29:06 +00:00
|
|
|
</head>
|
|
|
|
<body style="padding: 5px;">
|
|
|
|
<!-- preferences -->
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
<div class="toolbarTabs">
|
2017-10-11 20:27:19 +08:00
|
|
|
<ul id="preferencesTabs" class="tab-menu">
|
2017-05-01 01:45:02 +03:00
|
|
|
<li id="PrefDownloadsLink" class="selected"><a>QBT_TR(Downloads)QBT_TR[CONTEXT=OptionsDialog]</a></li>
|
|
|
|
<li id="PrefConnectionLink"><a>QBT_TR(Connection)QBT_TR[CONTEXT=OptionsDialog]</a></li>
|
|
|
|
<li id="PrefSpeedLink"><a>QBT_TR(Speed)QBT_TR[CONTEXT=OptionsDialog]</a></li>
|
|
|
|
<li id="PrefBittorrentLink"><a>QBT_TR(BitTorrent)QBT_TR[CONTEXT=OptionsDialog]</a></li>
|
|
|
|
<li id="PrefWebUILink"><a>QBT_TR(Web UI)QBT_TR[CONTEXT=OptionsDialog]</a></li>
|
2017-10-11 20:27:19 +08:00
|
|
|
</ul>
|
|
|
|
<div class="clear"></div>
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
</div>
|
2009-11-26 09:49:57 +00:00
|
|
|
|
2018-03-21 14:34:37 +08:00
|
|
|
<script>
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
// Tabs
|
|
|
|
MochaUI.initializeTabs('preferencesTabs');
|
2009-11-26 08:29:06 +00:00
|
|
|
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
$('PrefDownloadsLink').addEvent('click', function(e) {
|
|
|
|
$$('.PrefTab').addClass('invisible');
|
|
|
|
$('DownloadsTab').removeClass('invisible');
|
|
|
|
});
|
2015-06-17 01:24:59 +02:00
|
|
|
$('PrefConnectionLink').addEvent('click', function(e){
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
$$('.PrefTab').addClass('invisible');
|
2015-06-17 01:24:59 +02:00
|
|
|
$('ConnectionTab').removeClass('invisible');
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
});
|
2015-06-17 01:24:59 +02:00
|
|
|
$('PrefSpeedLink').addEvent('click', function(e) {
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
$$('.PrefTab').addClass('invisible');
|
2015-06-17 01:24:59 +02:00
|
|
|
$('SpeedTab').removeClass('invisible');
|
|
|
|
});
|
|
|
|
$('PrefBittorrentLink').addEvent('click', function(e) {
|
|
|
|
$$('.PrefTab').addClass('invisible');
|
|
|
|
$('BittorrentTab').removeClass('invisible');
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 19:39:47 +00:00
|
|
|
});
|
|
|
|
$('PrefWebUILink').addEvent('click', function(e) {
|
|
|
|
$$('.PrefTab').addClass('invisible');
|
|
|
|
$('WebUITab').removeClass('invisible');
|
|
|
|
});
|
2009-11-26 09:49:57 +00:00
|
|
|
</script>
|
2009-11-26 08:29:06 +00:00
|
|
|
</body>
|
2009-11-30 21:30:14 +00:00
|
|
|
</html>
|