summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-04 06:47:07 +0100
committerAndrew Dolgov <[email protected]>2008-05-04 06:47:07 +0100
commit9a85081ae0dbe006b464e5985fdccd90962b5346 (patch)
tree61c9ef5c526b445df7b866b9cc7531b58bae195f /tt-rss.js
parentba7f81d8d5f8405413657b24d0c1689fd5b4c053 (diff)
main ui: add action to rescore current feed
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index d127e03d2..632330311 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -520,6 +520,10 @@ function quickMenuGo(opid) {
displayDlg("quickAddFilter", getActiveFeedId());
}
+ if (opid == "qmcRescoreFeed") {
+ rescoreCurrentFeed();
+ }
+
} catch (e) {
exception_error("quickMenuGo", e);
}
@@ -857,3 +861,33 @@ function adjustArticleScore(id, score) {
exception_error(e, "adjustArticleScore");
}
}
+
+function rescoreCurrentFeed() {
+
+ var actid = getActiveFeedId();
+
+ if (activeFeedIsCat() || actid < 0 || tagsAreDisplayed()) {
+ alert(__("You can't rescore this kind of feed."));
+ return;
+ }
+
+ if (!actid) {
+ alert(__("Please select some feed first."));
+ return;
+ }
+
+ var fn = getFeedName(actid);
+ var pr = __("Rescore articls in %s?").replace("%s", fn);
+
+ if (confirm(pr)) {
+ notify_progress("Rescoring articles...");
+
+ var query = "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids=" + actid;
+
+ new Ajax.Request(query, {
+ onComplete: function(transport) {
+ viewCurrentFeed();
+ } });
+ }
+}
+