mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-10 09:07:25 +03:00
2b3c92a4a8
Implemented RSS Reader and AutoDownloader in reference WebUI.
78 lines
2.8 KiB
HTML
78 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="${LANG}">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>QBT_TR(Please type a RSS feed URL)QBT_TR[CONTEXT=RSSWidget]</title>
|
|
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
|
<script src="scripts/lib/mootools-1.2-core-yc.js"></script>
|
|
<script src="scripts/lib/mootools-1.2-more.js"></script>
|
|
<script src="scripts/misc.js?locale=${LANG}&v=${CACHEID}"></script>
|
|
<script>
|
|
'use strict';
|
|
|
|
new Keyboard({
|
|
defaultEventType: 'keydown',
|
|
events: {
|
|
'Enter': (event) => {
|
|
$('submitButton').click();
|
|
event.preventDefault();
|
|
},
|
|
'Escape': (event) => {
|
|
window.parent.closeWindows();
|
|
event.preventDefault();
|
|
},
|
|
'Esc': (event) => {
|
|
window.parent.closeWindows();
|
|
event.preventDefault();
|
|
}
|
|
}
|
|
}).activate();
|
|
window.addEvent('domready', () => {
|
|
$('feedURL').focus();
|
|
const path = decodeURIComponent(new URI().getData('path'));
|
|
$('submitButton').addEvent('click', (e) => {
|
|
new Event(e).stop();
|
|
// check field
|
|
const feedURL = $('feedURL').value.trim();
|
|
if (feedURL === '') {
|
|
alert('QBT_TR(Name cannot be empty)QBT_TR[CONTEXT=HttpServer]');
|
|
return;
|
|
}
|
|
|
|
$('submitButton').disabled = true;
|
|
|
|
new Request({
|
|
url: '/api/v2/rss/addFeed',
|
|
noCache: true,
|
|
method: 'post',
|
|
data: {
|
|
url: feedURL,
|
|
path: path ? (path + '\\' + feedURL) : ''
|
|
},
|
|
onSuccess: (response) => {
|
|
window.parent.qBittorrent.Rss.updateRssFeedList();
|
|
window.parent.closeWindows();
|
|
},
|
|
onFailure: (response) => {
|
|
if (response.status === 409)
|
|
alert(response.responseText);
|
|
$('submitButton').disabled = false;
|
|
}
|
|
}).send();
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="padding: 10px 10px 0px 10px;">
|
|
<p style="font-weight: bold;">QBT_TR(Feed URL:)QBT_TR[CONTEXT=RSSWidget]</p>
|
|
<input type="text" id="feedURL" value="" maxlength="100" style="width: 320px;" />
|
|
<div style="text-align: center; padding-top: 10px;">
|
|
<input type="button" value="QBT_TR(OK)QBT_TR[CONTEXT=HttpServer]" id="submitButton" />
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|