]> git.wh0rd.org - tt-rss.git/blobdiff - classes/feeds.php
format_headlines_list: fix pg_num_rows() called incorrectly when firstid check failed
[tt-rss.git] / classes / feeds.php
old mode 100644 (file)
new mode 100755 (executable)
index 86a4262..eff66dd
@@ -3,7 +3,9 @@ require_once "colors.php";
 
 class Feeds extends Handler_Protected {
 
-       function csrf_ignore($method) {
+    private $params;
+
+    function csrf_ignore($method) {
                $csrf_ignored = array("index", "feedbrowser", "quickaddfeed", "search");
 
                return array_search($method, $csrf_ignored) !== false;
@@ -11,14 +13,8 @@ class Feeds extends Handler_Protected {
 
        private function format_headline_subtoolbar($feed_site_url, $feed_title,
                        $feed_id, $is_cat, $search,
-                       $search_mode, $view_mode, $error, $feed_last_updated) {
-
-               $page_prev_link = "viewFeedGoPage(-1)";
-               $page_next_link = "viewFeedGoPage(1)";
-               $page_first_link = "viewFeedGoPage(0)";
+                       $view_mode, $error, $feed_last_updated) {
 
-               $catchup_page_link = "catchupPage()";
-               $catchup_feed_link = "catchupCurrentFeed()";
                $catchup_sel_link = "catchupSelection()";
 
                $archive_sel_link = "archiveSelection()";
@@ -38,7 +34,7 @@ class Feeds extends Handler_Protected {
                if ($is_cat) $cat_q = "&is_cat=$is_cat";
 
                if ($search) {
-                       $search_q = "&q=$search&smode=$search_mode";
+                       $search_q = "&q=$search";
                } else {
                        $search_q = "";
                }
@@ -62,19 +58,17 @@ class Feeds extends Handler_Protected {
 #              $reply .= "<span>";
                $reply .= "<span id='feed_title' class='$error_class'>";
 
-               $reply .= "</span>";
-
                if ($feed_site_url) {
                        $last_updated = T_sprintf("Last updated: %s",
                                $feed_last_updated);
 
                        $target = "target=\"_blank\"";
                        $reply .= "<a title=\"$last_updated\" $target href=\"$feed_site_url\">".
-                               truncate_string($feed_title,30)."</a>";
+                               truncate_string($feed_title, 30)."</a>";
 
                        if ($error) {
                                $error = htmlspecialchars($error);
-                               $reply .= "&nbsp;<img title=\"$error\" src='images/error.png' alt='error' class=\"noborder\" style=\"vertical-align : middle\">";
+                               $reply .= "&nbsp;<img title=\"$error\" src='images/error.png' alt='error' class=\"noborder\">";
                        }
 
                } else {
@@ -83,6 +77,8 @@ class Feeds extends Handler_Protected {
 
                $reply .= "</span>";
 
+               $reply .= "</span>";
+
 #              $reply .= "</span>";
 
                // left part
@@ -90,13 +86,13 @@ class Feeds extends Handler_Protected {
                $reply .= "<span class=\"main\">";
                $reply .= "<span id='selected_prompt'></span>";
 
-               $reply .= "
+               $reply .= "<span class=\"sel_links\">
                        <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
                        <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
                        <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
                        <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
 
-               $reply .= " ";
+               $reply .= "</span> ";
 
                $reply .= "<select dojoType=\"dijit.form.Select\"
                        onchange=\"headlineActionsChange(this)\">";
@@ -142,7 +138,7 @@ class Feeds extends Handler_Protected {
                //$reply .= "</h2";
 
                foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) {
-                        echo $p->hook_headline_toolbar_button($feed_id, $is_cat);
+                        $reply .= $p->hook_headline_toolbar_button($feed_id, $is_cat);
                }
 
                $reply .= "</span></span>";
@@ -152,10 +148,8 @@ class Feeds extends Handler_Protected {
 
        private function format_headlines_list($feed, $method, $view_mode, $limit, $cat_view,
                                        $next_unread_feed, $offset, $vgr_last_feed = false,
-                                       $override_order = false, $include_children = false) {
-
-               if (isset($_REQUEST["DevForceUpdate"]))
-                       header("Content-Type: text/plain; charset=utf-8");
+                                       $override_order = false, $include_children = false, $check_first_id = false,
+                                       $skip_first_id_check = false) {
 
                $disable_cache = false;
 
@@ -183,7 +177,7 @@ class Feeds extends Handler_Protected {
                                        $last_updated = strtotime($this->dbh->fetch_result($result, 0, "last_updated"));
                                        $cache_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "cache_images"));
 
-                                       if (!$cache_images && time() - $last_updated > 120 || isset($_REQUEST['DevForceUpdate'])) {
+                                       if (!$cache_images && time() - $last_updated > 120) {
                                                include "rssfuncs.php";
                                                update_rss_feed($feed, true, true);
                                        } else {
@@ -209,34 +203,25 @@ class Feeds extends Handler_Protected {
                }
 
                @$search = $this->dbh->escape_string($_REQUEST["query"]);
+               @$search_language = $this->dbh->escape_string($_REQUEST["search_language"]); // PGSQL only
 
                if ($search) {
                        $disable_cache = true;
                }
 
-               @$search_mode = $this->dbh->escape_string($_REQUEST["search_mode"]);
-
                if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
 
-//             error_log("format_headlines_list: [" . $feed . "] method [" . $method . "]");
-               if($search_mode == '' && $method != '' ){
-                   $search_mode = $method;
-               }
-//             error_log("search_mode: " . $search_mode);
 
                if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
                        $handler = PluginHost::getInstance()->get_feed_handler(
                                PluginHost::feed_to_pfeed_id($feed));
 
-               //      function queryFeedHeadlines($feed, $limit, $view_mode, $cat_view, $search, $search_mode, $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false, $ignore_vfeed_group = false) {
-
                        if ($handler) {
                                $options = array(
                                        "limit" => $limit,
                                        "view_mode" => $view_mode,
                                        "cat_view" => $cat_view,
                                        "search" => $search,
-                                       "search_mode" => $search_mode,
                                        "override_order" => $override_order,
                                        "offset" => $offset,
                                        "owner_uid" => $_SESSION["uid"],
@@ -249,11 +234,34 @@ class Feeds extends Handler_Protected {
                        }
 
                } else {
-                       $qfh_ret = queryFeedHeadlines($feed, $limit, $view_mode, $cat_view,
-                               $search, $search_mode, $override_order, $offset, 0,
-                               false, 0, $include_children);
+                       /*$qfh_ret = queryFeedHeadlines($feed, $limit, $view_mode, $cat_view,
+                               $search, false, $override_order, $offset, 0,
+                               false, 0, $include_children, $topid);*/
+
+                       //function queryFeedHeadlines($feed, $limit,
+                       // $view_mode, $cat_view, $search, $search_mode,
+                       // $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false,
+                       // $ignore_vfeed_group = false, $override_strategy = false, $override_vfeed = false, $start_ts = false, $check_top_id = false) {
+
+                       $params = array(
+                               "feed" => $feed,
+                               "limit" => $limit,
+                               "view_mode" => $view_mode,
+                               "cat_view" => $cat_view,
+                               "search" => $search,
+                               "search_language" => $search_language,
+                               "override_order" => $override_order,
+                               "offset" => $offset,
+                               "include_children" => $include_children,
+                               "check_first_id" => $check_first_id,
+                               "skip_first_id_check" => $skip_first_id_check
+                       );
+
+                       $qfh_ret = queryFeedHeadlines($params);
                }
 
+               $vfeed_group_enabled = get_pref("VFEED_GROUP_BY_FEED") && $feed != -6;
+
                if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
 
                $result = $qfh_ret[0];
@@ -263,42 +271,38 @@ class Feeds extends Handler_Protected {
                $last_updated = strpos($qfh_ret[4], '1970-') === FALSE ?
                        make_local_datetime($qfh_ret[4], false) : __("Never");
                $highlight_words = $qfh_ret[5];
+               $reply['first_id'] = $qfh_ret[6];
 
                $vgroup_last_feed = $vgr_last_feed;
 
                $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
                        $feed_title,
-                       $feed, $cat_view, $search, $search_mode, $view_mode,
+                       $feed, $cat_view, $search, $view_mode,
                        $last_error, $last_updated);
 
-               $headlines_count = $this->dbh->num_rows($result);
+               $headlines_count = is_numeric($result) ? 0 : $this->dbh->num_rows($result);
 
-               /* if (get_pref('COMBINED_DISPLAY_MODE')) {
-                       $button_plugins = array();
-                       foreach (explode(",", ARTICLE_BUTTON_PLUGINS) as $p) {
-                               $pclass = "button_" . trim($p);
-
-                               if (class_exists($pclass)) {
-                                       $plugin = new $pclass();
-                                       array_push($button_plugins, $plugin);
-                               }
+               if ($offset == 0) {
+                       foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINES_BEFORE) as $p) {
+                                $reply['content'] .= $p->hook_headlines_before($feed, $cat_view, $qfh_ret);
                        }
-               } */
+               }
+
+               $reply['content'] = '';
 
-               if ($this->dbh->num_rows($result) > 0) {
+               if ($headlines_count > 0) {
 
                        $lnum = $offset;
 
                        $num_unread = 0;
                        $cur_feed_title = '';
 
-                       $fresh_intl = get_pref("FRESH_ARTICLE_MAX_AGE") * 60 * 60;
-
                        if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
 
                        $expand_cdm = get_pref('CDM_EXPANDED');
 
                        while ($line = $this->dbh->fetch_assoc($result)) {
+
                                $line["content_preview"] =  "&mdash; " . truncate_string(strip_tags($line["content"]), 250);
 
                                foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
@@ -377,7 +381,7 @@ class Feeds extends Handler_Protected {
 #                              $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
 #                                      $line["title"] . "</a>";
 
-                               $updated_fmt = make_local_datetime($line["updated"], false);
+                               $updated_fmt = make_local_datetime($line["updated"], false, false, false, true);
                                $date_entered_fmt = T_sprintf("Imported at %s",
                                        make_local_datetime($line["date_entered"], false));
 
@@ -429,7 +433,7 @@ class Feeds extends Handler_Protected {
 
                                if (!get_pref('COMBINED_DISPLAY_MODE')) {
 
-                                       if (get_pref('VFEED_GROUP_BY_FEED')) {
+                                       if ($vfeed_group_enabled) {
                                                if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
 
                                                        $cur_feed_title = $line["feed_title"];
@@ -441,9 +445,11 @@ class Feeds extends Handler_Protected {
 
                                                        $reply['content'] .= "<div id='FTITLE-$feed_id' class='cdmFeedTitle'>".
                                                                "<div style='float : right'>$feed_icon_img</div>".
-                                                               "<a class='title' href=\"#\" onclick=\"viewfeed($feed_id)\">".                                                          $line["feed_title"]."</a>
+                                                               "<a class='title' href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
+                                                               $line["feed_title"]."</a>
                                                                $vf_catchup_link</div>";
 
+
                                                }
                                        }
 
@@ -480,17 +486,18 @@ class Feeds extends Handler_Protected {
 
                                        $reply['content'] .= "</div>";
 
-                                       $reply['content'] .= "<span class=\"hlUpdated\">";
-
-                                       if (!get_pref('VFEED_GROUP_BY_FEED')) {
+                                       if (!$vfeed_group_enabled) {
                                                if (@$line["feed_title"]) {
                                                        $rgba = @$rgba_cache[$feed_id];
 
-                                                       $reply['content'] .= "<a class=\"hlFeed\" style=\"background : rgba($rgba, 0.3)\" href=\"#\" onclick=\"viewfeed($feed_id)\">".
-                                                               truncate_string($line["feed_title"],30)."</a>";
+                                                       $reply['content'] .= "<span class=\"hlFeed\"><a style=\"background : rgba($rgba, 0.3)\" href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
+                                                               truncate_string($line["feed_title"],30)."</a></span>";
                                                }
                                        }
 
+
+                                       $reply['content'] .= "<span class=\"hlUpdated\">";
+
                                        $reply['content'] .= "<div title='$date_entered_fmt'>$updated_fmt</div>
                                                </span>";
 
@@ -498,12 +505,12 @@ class Feeds extends Handler_Protected {
 
                                        $reply['content'] .= $score_pic;
 
-                                       if ($line["feed_title"] && !get_pref('VFEED_GROUP_BY_FEED')) {
+                                       if ($line["feed_title"] && !$vfeed_group_enabled) {
 
-                                               $reply['content'] .= "<span onclick=\"viewfeed($feed_id)\"
+                                               $reply['content'] .= "<span onclick=\"viewfeed({feed:$feed_id})\"
                                                        style=\"cursor : pointer\"
                                                        title=\"".htmlspecialchars($line['feed_title'])."\">
-                                                       $feed_icon_img<span>";
+                                                       $feed_icon_img</span>";
                                        }
 
                                        $reply['content'] .= "</div>";
@@ -523,7 +530,7 @@ class Feeds extends Handler_Protected {
                                                $line = $p->hook_render_article_cdm($line);
                                        }
 
-                                       if (get_pref('VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
+                                       if ($vfeed_group_enabled && $line["feed_title"]) {
                                                if ($feed_id != $vgroup_last_feed) {
 
                                                        $cur_feed_title = $line["feed_title"];
@@ -543,8 +550,9 @@ class Feeds extends Handler_Protected {
 
                                                        $reply['content'] .= "<div id='FTITLE-$feed_id' class='cdmFeedTitle'>".
                                                                "<div style=\"float : right\">$feed_icon_img</div>".
-                                                               "<a href=\"#\" class='title' onclick=\"viewfeed($feed_id)\">".
+                                                               "<a href=\"#\" class='title' onclick=\"viewfeed({feed:$feed_id})\">".
                                                                $line["feed_title"]."</a> $vf_catchup_link</div>";
+
                                                }
                                        }
 
@@ -556,7 +564,7 @@ class Feeds extends Handler_Protected {
                                        $reply['content'] .= "<div class=\"cdm $hlc_suffix $expanded_class $class\"
                                                id=\"RROW-$id\" orig-feed-id='$feed_id' $mouseover_attrs>";
 
-                                       $reply['content'] .= "<div class=\"cdmHeader\" style=\"$row_background\">";
+                                       $reply['content'] .= "<div class=\"cdmHeader\">";
                                        $reply['content'] .= "<div style=\"vertical-align : middle\">";
 
                                        $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
@@ -579,6 +587,7 @@ class Feeds extends Handler_Protected {
                                                onclick=\"return cdmClicked(event, $id);\"
                                                class=\"titleWrap $hlc_suffix\">
                                                <a class=\"title $hlc_suffix\"
+                                               title=\"".htmlspecialchars($line["title"])."\"
                                                target=\"_blank\" href=\"".
                                                htmlspecialchars($line["link"])."\">".
                                                $line["title"] .
@@ -599,13 +608,13 @@ class Feeds extends Handler_Protected {
 
                                        $reply['content'] .= "</span>";
 
-                                       if (!get_pref('VFEED_GROUP_BY_FEED')) {
+                                       if (!$vfeed_group_enabled) {
                                                if (@$line["feed_title"]) {
                                                        $rgba = @$rgba_cache[$feed_id];
 
                                                        $reply['content'] .= "<div class=\"hlFeed\">
                                                                <a href=\"#\" style=\"background-color: rgba($rgba,0.3)\"
-                                                               onclick=\"viewfeed($feed_id)\">".
+                                                               onclick=\"viewfeed({feed:$feed_id})\">".
                                                                truncate_string($line["feed_title"],30)."</a>
                                                        </div>";
                                                }
@@ -620,7 +629,7 @@ class Feeds extends Handler_Protected {
                                        if (!get_pref("VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
                                                $reply['content'] .= "<span style=\"cursor : pointer\"
                                                        title=\"".htmlspecialchars($line["feed_title"])."\"
-                                                       onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
+                                                       onclick=\"viewfeed({feed:$feed_id})\">$feed_icon_img</span>";
                                        }
                                        $reply['content'] .= "</div>";
 
@@ -680,13 +689,16 @@ class Feeds extends Handler_Protected {
 
                                        $reply['content'] .= "</span>";
 
-                                       $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
+                                       $reply['content'] .= "</div>";
+
+                                       $reply['content'] .= "<div class=\"cdmIntermediate\">";
 
+                                       $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
                                        $reply['content'] .= format_article_enclosures($id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
 
                                        $reply['content'] .= "</div>";
 
-                                       $reply['content'] .= "<div class=\"cdmFooter\">";
+                                       $reply['content'] .= "<div class=\"cdmFooter\" onclick=\"cdmFooterClick(event)\">";
 
                                        foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
                                                $reply['content'] .= $p->hook_article_left_button($line);
@@ -694,6 +706,8 @@ class Feeds extends Handler_Protected {
 
                                        $tags_str = format_tags_string($tags, $id);
 
+                                       $reply['content'] .= "<span class='left'>";
+
                                        $reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
                                                <span id=\"ATSTR-$id\">$tags_str</span>
                                                <a title=\"".__('Edit tags for this article')."\"
@@ -720,7 +734,8 @@ class Feeds extends Handler_Protected {
 
                                        if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
 
-                                       $reply['content'] .= "<div style=\"float : right\">";
+                                       $reply['content'] .= "</span>";
+                                       $reply['content'] .= "<div>";
 
 //                                     $reply['content'] .= "$marked_pic";
 //                                     $reply['content'] .= "$published_pic";
@@ -743,7 +758,7 @@ class Feeds extends Handler_Protected {
 
                        if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
 
-               } else {
+               } else if (!is_numeric($result)) {
                        $message = "";
 
                        switch ($view_mode) {
@@ -765,7 +780,7 @@ class Feeds extends Handler_Protected {
                        }
 
                        if (!$offset && $message) {
-                               $reply['content'] .= "<div class='whiteBox'>$message";
+                               $reply['content'] = "<div class='whiteBox'>$message";
 
                                $reply['content'] .= "<p><span class=\"insensitive\">";
 
@@ -788,7 +803,10 @@ class Feeds extends Handler_Protected {
                                                __('Some feeds have update errors (click for details)')."</a>";
                                }
                                $reply['content'] .= "</span></p></div>";
+
                        }
+               } else if (is_numeric($result) && $result == -1) {
+                       $reply['first_id_changed'] = true;
                }
 
                if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
@@ -810,8 +828,6 @@ class Feeds extends Handler_Protected {
 
                if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
 
-               $omode = $this->dbh->escape_string($_REQUEST["omode"]);
-
                $feed = $this->dbh->escape_string($_REQUEST["feed"]);
                $method = $this->dbh->escape_string($_REQUEST["m"]);
                $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
@@ -821,6 +837,7 @@ class Feeds extends Handler_Protected {
                @$offset = $this->dbh->escape_string($_REQUEST["skip"]);
                @$vgroup_last_feed = $this->dbh->escape_string($_REQUEST["vgrlf"]);
                $order_by = $this->dbh->escape_string($_REQUEST["order_by"]);
+               $check_first_id = $this->dbh->escape_string($_REQUEST["fid"]);
 
                if (is_numeric($feed)) $feed = (int) $feed;
 
@@ -875,14 +892,8 @@ class Feeds extends Handler_Protected {
 
                $reply['headlines'] = array();
 
-               if (!$next_unread_feed)
-                       $reply['headlines']['id'] = $feed;
-               else
-                       $reply['headlines']['id'] = $next_unread_feed;
-
-               $reply['headlines']['is_cat'] = (bool) $cat_view;
-
                $override_order = false;
+               $skip_first_id_check = false;
 
                switch ($order_by) {
                case "title":
@@ -890,6 +901,7 @@ class Feeds extends Handler_Protected {
                        break;
                case "date_reverse":
                        $override_order = "score DESC, date_entered, updated";
+                       $skip_first_id_check = true;
                        break;
                case "feed_dates":
                        $override_order = "updated DESC";
@@ -900,16 +912,25 @@ class Feeds extends Handler_Protected {
 
                $ret = $this->format_headlines_list($feed, $method,
                        $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
-                       $vgroup_last_feed, $override_order, true);
+                       $vgroup_last_feed, $override_order, true, $check_first_id, $skip_first_id_check);
 
                //$topmost_article_ids = $ret[0];
                $headlines_count = $ret[1];
-               $returned_feed = $ret[2];
+               /* $returned_feed = $ret[2]; */
                $disable_cache = $ret[3];
                $vgroup_last_feed = $ret[4];
 
-               $reply['headlines']['content'] =& $ret[5]['content'];
-               $reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
+               //$reply['headlines']['content'] =& $ret[5]['content'];
+               //$reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
+
+               $reply['headlines'] = $ret[5];
+
+               if (!$next_unread_feed)
+                       $reply['headlines']['id'] = $feed;
+               else
+                       $reply['headlines']['id'] = $next_unread_feed;
+
+               $reply['headlines']['is_cat'] = (bool) $cat_view;
 
                if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
 
@@ -932,6 +953,7 @@ class Feeds extends Handler_Protected {
                $reply['headlines']['is_cat'] = false;
 
                $reply['headlines']['toolbar'] = '';
+
                $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
 
                $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
@@ -967,7 +989,7 @@ class Feeds extends Handler_Protected {
        private function generate_error_feed($error) {
                $reply = array();
 
-               $reply['headlines']['id'] = -6;
+               $reply['headlines']['id'] = -7;
                $reply['headlines']['is_cat'] = false;
 
                $reply['headlines']['toolbar'] = '';
@@ -1084,20 +1106,18 @@ class Feeds extends Handler_Protected {
                print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
 
                foreach (array(25, 50, 100, 200) as $l) {
-                       $issel = ($l == $limit) ? "selected=\"1\"" : "";
-                       print "<option $issel value=\"$l\">$l</option>";
+                       //$issel = ($l == $limit) ? "selected=\"1\"" : "";
+                       print "<option value=\"$l\">$l</option>";
                }
 
                print "</select> ";
 
                print "</div>";
 
-               $owner_uid = $_SESSION["uid"];
-
                require_once "feedbrowser.php";
 
                print "<ul class='browseFeedList' id='browseFeedList'>";
-               print make_feed_browser($search, 25);
+               print make_feed_browser("", 25);
                print "</ul>";
 
                print "<div align='center'>
@@ -1121,42 +1141,19 @@ class Feeds extends Handler_Protected {
                        style=\"font-size : 16px; width : 20em;\"
                        required=\"1\" name=\"query\" type=\"search\" value=''>";
 
-               print "<hr/>".__('Limit search to:')." ";
+               print "<hr/><span style='float : right'>".T_sprintf('in %s', getFeedTitle($active_feed_id, $is_cat))."</span>";
 
-               print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
-                       <option value=\"all_feeds\">".__('All feeds')."</option>";
-
-               $feed_title = getFeedTitle($active_feed_id);
-
-               if (!$is_cat) {
-                       $feed_cat_title = getFeedCatTitle($active_feed_id);
-               } else {
-                       $feed_cat_title = getCategoryTitle($active_feed_id);
-               }
-
-               if ($active_feed_id && !$is_cat) {
-                       print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
-               } else {
-                       print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
-               }
-
-               if ($is_cat) {
-                       $cat_preselected = "selected=\"1\"";
+               if (DB_TYPE == "pgsql") {
+                       print "<hr/>";
+                       print_select("search_language", "", Pref_Feeds::$feed_languages,
+                               "dojoType='dijit.form.Select' title=\"".__('Used for word stemming')."\"");
                }
 
-               if (get_pref('ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
-                       print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
-               } else {
-                       //print "<option disabled>".__('This category')."</option>";
-               }
-
-               print "</select>";
-
                print "</div>";
 
                print "<div class=\"dlgButtons\">";
 
-               if (!SPHINX_ENABLED) {
+               if (count(PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SEARCH)) == 0) {
                        print "<div style=\"float : left\">
                                <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">".__("Search syntax")."</a>
                                </div>";
@@ -1167,6 +1164,52 @@ class Feeds extends Handler_Protected {
                </div>";
        }
 
+       function update_debugger() {
+               header("Content-type: text/html");
+
+               $feed_id = (int)$_REQUEST["feed_id"];
+               @$do_update = $_REQUEST["action"] == "do_update";
+               $csrf_token = $_REQUEST["csrf_token"];
+
+               $refetch_checked = isset($_REQUEST["force_refetch"]) ? "checked" : "";
+               $rehash_checked = isset($_REQUEST["force_rehash"]) ? "checked" : "";
+
+               ?>
+               <html>
+               <head>
+                       <link rel="stylesheet" type="text/css" href="css/utility.css">
+                       <title>Feed Debugger</title>
+               </head>
+               <body class="small_margins">
+               <h1>Feed Debugger: <?php echo "$feed_id: " . getFeedTitle($feed_id) ?></h1>
+               <form method="GET" action="">
+                       <input type="hidden" name="op" value="feeds">
+                       <input type="hidden" name="method" value="update_debugger">
+                       <input type="hidden" name="xdebug" value="1">
+                       <input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
+                       <input type="hidden" name="action" value="do_update">
+                       <input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
+                       <input type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch<br/>
+                       <input type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash<br/>
+
+                       <p/><button type="submit">Continue</button>
+               </form>
+
+               <hr>
+
+               <pre><?php
+
+               if ($do_update) {
+                       include "rssfuncs.php";
+                       update_rss_feed($feed_id, true, true);
+               }
+
+               ?></pre>
 
+               </body>
+               </html>
+               <?php
+
+       }
 }
 ?>