]> git.wh0rd.org - tt-rss.git/blobdiff - modules/pref-feeds.php
experimental split of public calls into public.php (refs #389)
[tt-rss.git] / modules / pref-feeds.php
index e557903ea8c57449dcff9ceda1be70c785b50fec..bbae468bf01450498ab6a227269dd8b00a85a953 100644 (file)
@@ -2,7 +2,7 @@
 
        function batch_edit_cbox($elem, $label = false) {
                print "<input type=\"checkbox\" title=\"".__("Check to enable field")."\"
-                       onchange=\"batchFeedsToggleField(this, '$elem', '$label')\">";
+                       onchange=\"dijit.byId('feedEditDlg').toggleField(this, '$elem', '$label')\">";
        }
 
        function module_pref_feeds($link) {
                $quiet = $_REQUEST["quiet"];
                $mode = $_REQUEST["mode"];
 
-               if ($subop == "removeicon") {                   
-                       $feed_id = db_escape_string($_REQUEST["feed_id"]);
-
-                       $result = db_query($link, "SELECT id FROM ttrss_feeds
-                               WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
+               if ($subop == "renamecat") {
+                       $title = db_escape_string($_REQUEST['title']);
+                       $id = db_escape_string($_REQUEST['id']);
 
-                       if (db_num_rows($result) != 0) {
-                               unlink(ICONS_DIR . "/$feed_id.ico");
+                       if ($title) {
+                               db_query($link, "UPDATE ttrss_feed_categories SET
+                                       title = '$title' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
                        }
+                       return;
+               }
+
+               if ($subop == "remtwitterinfo") {
+
+                       db_query($link, "UPDATE ttrss_users SET twitter_oauth = NULL
+                               WHERE id = " . $_SESSION['uid']);
 
                        return;
                }
 
-               if ($subop == "uploadicon") {
-                       $icon_file = $_FILES['icon_file']['tmp_name'];
-                       $feed_id = db_escape_string($_REQUEST["feed_id"]);
+               if ($subop == "getfeedtree") {
 
-                       if (is_file($icon_file) && $feed_id) {
-                               if (filesize($icon_file) < 20000) {
-                                       
-                                       $result = db_query($link, "SELECT id FROM ttrss_feeds
-                                               WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
+                       $search = $_SESSION["prefs_feed_search"];
 
-                                       if (db_num_rows($result) != 0) {
-                                               unlink(ICONS_DIR . "/$feed_id.ico");
-                                               move_uploaded_file($icon_file, ICONS_DIR . "/$feed_id.ico");
-                                               $rc = 0;
-                                       } else {
-                                               $rc = 2;
+                       if ($search) $search_qpart = " AND LOWER(title) LIKE LOWER('%$search%')";
+
+                       $root = array();
+                       $root['id'] = 'root';
+                       $root['name'] = __('Feeds');
+                       $root['items'] = array();
+                       $root['type'] = 'category';
+
+                       if (get_pref($link, 'ENABLE_FEED_CATS')) {
+
+                               $result = db_query($link, "SELECT id, title FROM ttrss_feed_categories
+                                       WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY order_id, title");
+
+                               while ($line = db_fetch_assoc($result)) {
+                                       $cat = array();
+                                       $cat['id'] = 'CAT:' . $line['id'];
+                                       $cat['bare_id'] = $feed_id;
+                                       $cat['name'] = $line['title'];
+                                       $cat['items'] = array();
+                                       $cat['checkbox'] = false;
+                                       $cat['type'] = 'category';
+
+                                       $feed_result = db_query($link, "SELECT id, title, last_error,
+                                               ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
+                                               FROM ttrss_feeds
+                                               WHERE cat_id = '".$line['id']."' AND owner_uid = ".$_SESSION["uid"].
+                                               "$search_qpart ORDER BY order_id, title");
+
+                                       while ($feed_line = db_fetch_assoc($feed_result)) {
+                                               $feed = array();
+                                               $feed['id'] = 'FEED:' . $feed_line['id'];
+                                               $feed['bare_id'] = $feed_line['id'];
+                                               $feed['name'] = $feed_line['title'];
+                                               $feed['checkbox'] = false;
+                                               $feed['error'] = $feed_line['last_error'];
+                                               $feed['icon'] = getFeedIcon($feed_line['id']);
+                                               $feed['param'] = make_local_datetime($link,
+                                                       $feed_line['last_updated'], true);
+
+                                               array_push($cat['items'], $feed);
                                        }
-                               } else {
-                                       $rc = 1;
+
+                                       $cat['param'] = T_sprintf('(%d feeds)', count($cat['items']));
+
+                                       if (count($cat['items']) > 0)
+                                               array_push($root['items'], $cat);
+
+                                       $root['param'] += count($cat['items']);
+                               }
+
+                               /* Uncategorized is a special case */
+
+                               $cat = array();
+                               $cat['id'] = 'CAT:0';
+                               $cat['bare_id'] = 0;
+                               $cat['name'] = __("Uncategorized");
+                               $cat['items'] = array();
+                               $cat['type'] = 'category';
+                               $cat['checkbox'] = false;
+
+                               $feed_result = db_query($link, "SELECT id, title,last_error,
+                                       ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
+                                       FROM ttrss_feeds
+                                       WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"].
+                                       "$search_qpart ORDER BY order_id, title");
+
+                               while ($feed_line = db_fetch_assoc($feed_result)) {
+                                       $feed = array();
+                                       $feed['id'] = 'FEED:' . $feed_line['id'];
+                                       $feed['bare_id'] = $feed_line['id'];
+                                       $feed['name'] = $feed_line['title'];
+                                       $feed['checkbox'] = false;
+                                       $feed['error'] = $feed_line['last_error'];
+                                       $feed['icon'] = getFeedIcon($feed_line['id']);
+                                       $feed['param'] = make_local_datetime($link,
+                                               $feed_line['last_updated'], true);
+
+                                       array_push($cat['items'], $feed);
                                }
+
+                               $cat['param'] = T_sprintf('(%d feeds)', count($cat['items']));
+
+                               if (count($cat['items']) > 0)
+                                       array_push($root['items'], $cat);
+
+                               $root['param'] += count($cat['items']);
+                               $root['param'] = T_sprintf('(%d feeds)', $root['param']);
+
                        } else {
-                               $rc = 2;
+                               $feed_result = db_query($link, "SELECT id, title, last_error,
+                                       ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
+                                       FROM ttrss_feeds
+                                       WHERE owner_uid = ".$_SESSION["uid"].
+                                       "$search_qpart ORDER BY order_id, title");
+
+                               while ($feed_line = db_fetch_assoc($feed_result)) {
+                                       $feed = array();
+                                       $feed['id'] = 'FEED:' . $feed_line['id'];
+                                       $feed['bare_id'] = $feed_line['id'];
+                                       $feed['name'] = $feed_line['title'];
+                                       $feed['checkbox'] = false;
+                                       $feed['error'] = $feed_line['last_error'];
+                                       $feed['icon'] = getFeedIcon($feed_line['id']);
+                                       $feed['param'] = make_local_datetime($link,
+                                               $feed_line['last_updated'], true);
+
+                                       array_push($root['items'], $feed);
+                               }
+
+                               $root['param'] = T_sprintf('(%d feeds)', count($root['items']));
+
                        }
 
-                       print "<script type=\"text/javascript\">";
-                       print "parent.uploadIconHandler($rc);";
-                       print "</script>";
+                       $fl = array();
+                       $fl['identifier'] = 'id';
+                       $fl['label'] = 'name';
+                       $fl['items'] = array($root);
+
+                       print json_encode($fl);
                        return;
                }
 
-/*             if ($subop == "massSubscribe") {
-                       $ids = split(",", db_escape_string($_REQUEST["ids"]));
+               if ($subop == "catsortreset") {
+                       db_query($link, "UPDATE ttrss_feed_categories
+                                       SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
+                       return;
+               }
 
-                       $subscribed = array();
+               if ($subop == "feedsortreset") {
+                       db_query($link, "UPDATE ttrss_feeds
+                                       SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
+                       return;
+               }
 
-                       foreach ($ids as $id) {
+               if ($subop == "savefeedorder") {
+#                      if ($_POST['payload']) {
+#                              file_put_contents("/tmp/blahblah.txt", $_POST['payload']);
+#                              $data = json_decode($_POST['payload'], true);
+#                      } else {
+#                              $data = json_decode(file_get_contents("/tmp/blahblah.txt"), true);
+#                      }
 
-                               if ($mode == 1) {
-                                       $result = db_query($link, "SELECT feed_url,title FROM ttrss_feeds
-                                               WHERE id = '$id'");
-                               } else if ($mode == 2) {
-                                       $result = db_query($link, "SELECT * FROM ttrss_archived_feeds
-                                               WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
-                                       $orig_id = db_escape_string(db_fetch_result($result, 0, "id"));
-                                       $site_url = db_escape_string(db_fetch_result($result, 0, "site_url"));
-                               }
-       
-                               $feed_url = db_escape_string(db_fetch_result($result, 0, "feed_url"));
-                               $title = db_escape_string(db_fetch_result($result, 0, "title"));
-       
-                               $title_orig = db_fetch_result($result, 0, "title");
-       
-                               $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
-                                               feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
-       
-                               if (db_num_rows($result) == 0) {                        
-                                       if ($mode == 1) {
-                                               $result = db_query($link,
-                                                       "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id) 
-                                                       VALUES ('".$_SESSION["uid"]."', '$feed_url', '$title', NULL)");
-                                       } else if ($mode == 2) {
-                                               $result = db_query($link,
-                                                       "INSERT INTO ttrss_feeds (id,owner_uid,feed_url,title,cat_id,site_url) 
-                                                       VALUES ('$orig_id','".$_SESSION["uid"]."', '$feed_url', '$title', NULL, '$site_url')");
-                                       }
-                                       array_push($subscribed, $title_orig);
-                               }
-                       }
+                       $data = json_decode($_POST['payload'], true);
+
+                       if (is_array($data) && is_array($data['items'])) {
+                               $cat_order_id = 0;
+
+                               $data_map = array();
 
-                       if (count($subscribed) > 0) {
-                               $msg = "<b>".__('Subscribed to feeds:')."</b>".
-                                       "<ul class=\"nomarks\">";
+                               foreach ($data['items'] as $item) {
 
-                               foreach ($subscribed as $title) {
-                                       $msg .= "<li>$title</li>";
+                                       if ($item['id'] != 'root') {
+                                               if (is_array($item['items'])) {
+                                                       if (isset($item['items']['_reference'])) {
+                                                               $data_map[$item['id']] = array($item['items']);
+                                                       } else {
+                                                               $data_map[$item['id']] =& $item['items'];
+                                                       }
+                                               }
+                                       }
                                }
-                               $msg .= "</ul>";
 
-                               print format_notice($msg);
-                       }
+                               foreach ($data['items'][0]['items'] as $item) {
+                                       $id = $item['_reference'];
+                                       $bare_id = substr($id, strpos($id, ':')+1);
 
-                       return;
-               } */
+                                       ++$cat_order_id;
 
-/*             if ($subop == "browse") {
+                                       if ($bare_id > 0) {
+                                               db_query($link, "UPDATE ttrss_feed_categories
+                                                       SET order_id = '$cat_order_id' WHERE id = '$bare_id' AND
+                                                       owner_uid = " . $_SESSION["uid"]);
+                                       }
 
-                       print "<div id=\"infoBoxTitle\">".__('Feed Browser')."</div>";
-                       
-                       print "<div class=\"infoBoxContents\">";
+                                       $feed_order_id = 0;
 
-                       $browser_search = db_escape_string($_REQUEST["search"]);
+                                       if (is_array($data_map[$id])) {
+                                               foreach ($data_map[$id] as $feed) {
+                                                       $id = $feed['_reference'];
+                                                       $feed_id = substr($id, strpos($id, ':')+1);
 
-                       //print "<p>".__("Showing top 25 registered feeds, sorted by popularity:")."</p>";
+                                                       if ($bare_id != 0)
+                                                               $cat_query = "cat_id = '$bare_id'";
+                                                       else
+                                                               $cat_query = "cat_id = NULL";
 
-                       print "<form onsubmit='return false;' display='inline' name='feed_browser' id='feed_browser'>";
+                                                       db_query($link, "UPDATE ttrss_feeds
+                                                               SET order_id = '$feed_order_id',
+                                                               $cat_query
+                                                               WHERE id = '$feed_id' AND
+                                                                       owner_uid = " . $_SESSION["uid"]);
 
-                       print "
-                               <div style='float : right'>
-                               <img style='display : none' 
-                                       id='feed_browser_spinner' src='images/indicator_white.gif'>
-                               <input name=\"search\" size=\"20\" type=\"search\"
-                                       onchange=\"javascript:updateFeedBrowser()\" value=\"$browser_search\">
-                               <button onclick=\"javascript:updateFeedBrowser()\">".__('Search')."</button>
-                       </div>";
+                                                       ++$feed_order_id;
+                                               }
+                                       }
+                               }
+                       }
 
-                       print " <select name=\"mode\" onchange=\"updateFeedBrowser()\">
-                               <option value='1'>" . __('Popular feeds') . "</option>
-                               <option value='2'>" . __('Feed archive') . "</option>
-                               </select> ";
+                       return;
+               }
 
-                       print __("limit:");
+               if ($subop == "removeicon") {
+                       $feed_id = db_escape_string($_REQUEST["feed_id"]);
 
-                       print " <select name=\"limit\" onchange='updateFeedBrowser()'>";
+                       $result = db_query($link, "SELECT id FROM ttrss_feeds
+                               WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
 
-                       foreach (array(25, 50, 100, 200) as $l) {
-                               $issel = ($l == $limit) ? "selected" : "";
-                               print "<option $issel>$l</option>";
+                       if (db_num_rows($result) != 0) {
+                               unlink(ICONS_DIR . "/$feed_id.ico");
                        }
-                       
-                       print "</select> ";
 
-                       print "<p>";
+                       return;
+               }
 
-                       $owner_uid = $_SESSION["uid"];
+               if ($subop == "uploadicon") {
+                       $icon_file = $_FILES['icon_file']['tmp_name'];
+                       $feed_id = db_escape_string($_REQUEST["feed_id"]);
 
-                       print "<ul class='browseFeedList' id='browseFeedList'>";
-                       print_feed_browser($link, $search, 25);
-                       print "</ul>";
+                       if (is_file($icon_file) && $feed_id) {
+                               if (filesize($icon_file) < 20000) {
 
-                       print "<div align='center'>
-                               <button onclick=\"feedBrowserSubscribe()\">".__('Subscribe')."</button>
-                               <button onclick=\"closeInfoBox()\" >".__('Cancel')."</button></div>";
+                                       $result = db_query($link, "SELECT id FROM ttrss_feeds
+                                               WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
 
-                       print "</div>";
+                                       if (db_num_rows($result) != 0) {
+                                               unlink(ICONS_DIR . "/$feed_id.ico");
+                                               move_uploaded_file($icon_file, ICONS_DIR . "/$feed_id.ico");
+                                               $rc = 0;
+                                       } else {
+                                               $rc = 2;
+                                       }
+                               } else {
+                                       $rc = 1;
+                               }
+                       } else {
+                               $rc = 2;
+                       }
+
+                       print "<script type=\"text/javascript\">";
+                       print "parent.uploadIconHandler($rc);";
+                       print "</script>";
                        return;
-               } */
+               }
 
                if ($subop == "editfeed") {
+
                        $feed_id = db_escape_string($_REQUEST["id"]);
 
-                       $result = db_query($link, 
+                       $result = db_query($link,
                                "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
                                        owner_uid = " . $_SESSION["uid"]);
 
                        $title = htmlspecialchars(db_fetch_result($result,
                                0, "title"));
 
-                       $icon_file = ICONS_DIR . "/$feed_id.ico";
-       
-                       if (file_exists($icon_file) && filesize($icon_file) > 0) {
-                                       $feed_icon = "<img width=\"16\" height=\"16\"
-                                               src=\"" . ICONS_URL . "/$feed_id.ico\">";
-                       } else {
-                               $feed_icon = "";
-                       }
-
-                       print "<div id=\"infoBoxTitle\">".__('Feed Editor')."</div>";
-
-                       print "<div class=\"infoBoxContents\">";
-
-                       print "<form id=\"edit_feed_form\" onsubmit=\"return false\">"; 
-
-                       print "<input type=\"hidden\" name=\"id\" value=\"$feed_id\">";
-                       print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
-                       print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
+                       print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$feed_id\">";
+                       print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
+                       print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"editSave\">";
 
                        print "<div class=\"dlgSec\">".__("Feed")."</div>";
                        print "<div class=\"dlgSecCont\">";
 
                        /* Title */
 
-                       print "<input style=\"font-size : 16px\" size=\"40\" onkeypress=\"return filterCR(event, feedEditSave)\"
-                                           name=\"title\" value=\"$title\">";
+                       print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
+                               placeHolder=\"".__("Feed Title")."\"
+                               style=\"font-size : 16px; width: 20em\" name=\"title\" value=\"$title\">";
 
                        /* Feed URL */
 
                        $feed_url = htmlspecialchars(db_fetch_result($result,
                                0, "feed_url"));
 
-                       print "<br/>";
+                       print "<hr/>";
 
                        print __('URL:') . " ";
-                       print "<input size=\"40\" onkeypress=\"return filterCR(event, feedEditSave)\"
+                       print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
+                               placeHolder=\"".__("Feed URL")."\"
+                               regExp='^(http|https)://.*' style=\"width : 20em\"
                                name=\"feed_url\" value=\"$feed_url\">";
 
+                       $last_error = db_fetch_result($result, 0, "last_error");
+
+                       if ($last_error) {
+                               print "&nbsp;<span title=\"".htmlspecialchars($last_error)."\"
+                                       class=\"feed_error\">(error)</span>";
+
+                       }
+
                        /* Category */
 
                        if (get_pref($link, 'ENABLE_FEED_CATS')) {
 
                                $cat_id = db_fetch_result($result, 0, "cat_id");
 
-                               print "<br/>";
+                               print "<hr/>";
 
                                print __('Place in category:') . " ";
 
-                               print_feed_cat_select($link, "cat_id", $cat_id, $disabled);
+                               print_feed_cat_select($link, "cat_id", $cat_id,
+                                       'dojoType="dijit.form.Select"');
                        }
 
                        print "</div>";
 
                        $update_interval = db_fetch_result($result, 0, "update_interval");
 
-                       print_select_hash("update_interval", $update_interval, $update_intervals);
+                       print_select_hash("update_interval", $update_interval, $update_intervals,
+                               'dojoType="dijit.form.Select"');
 
                        /* Update method */
 
-                       $update_method = db_fetch_result($result, 0, "update_method");
+                       $update_method = db_fetch_result($result, 0, "update_method",
+                               'dojoType="dijit.form.Select"');
 
                        print " " . __('using') . " ";
-                       print_select_hash("update_method", $update_method, $update_methods);                    
+                       print_select_hash("update_method", $update_method, $update_methods,
+                               'dojoType="dijit.form.Select"');
 
                        $purge_interval = db_fetch_result($result, 0, "purge_interval");
 
-                       if (FORCE_ARTICLE_PURGE == 0) {
 
                                /* Purge intl */
 
-                               print "<br/>";
-
-                               print __('Article purging:') . " ";
-
-                               print_select_hash("purge_interval", $purge_interval, $purge_intervals);
+                       print "<hr/>";
+                       print __('Article purging:') . " ";
 
-                       } else {
-                               print "<input type='hidden' name='purge_interval' value='$purge_interval'>";
-
-                       }
+                       print_select_hash("purge_interval", $purge_interval, $purge_intervals,
+                               'dojoType="dijit.form.Select" ' .
+                                       ((FORCE_ARTICLE_PURGE == 0) ? "" : 'disabled="1"'));
 
                        print "</div>";
                        print "<div class=\"dlgSec\">".__("Authentication")."</div>";
 
                        $auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
 
-                       print "<table>";
+#                      print "<table>";
 
-                       print "<tr><td>" . __('Login:') . "</td><td>";
+#                      print "<tr><td>" . __('Login:') . "</td><td>";
 
-                       print "<input size=\"20\" onkeypress=\"return filterCR(event, feedEditSave)\"
-                               name=\"auth_login\" value=\"$auth_login\">";
+                       print "<input dojoType=\"dijit.form.TextBox\" id=\"feedEditDlg_login\"
+                               placeHolder=\"".__("Login")."\"
+                               name=\"auth_login\" value=\"$auth_login\"><hr/>";
 
-                       print "</tr><tr><td>" . __("Password:") . "</td><td>";
+#                      print "</tr><tr><td>" . __("Password:") . "</td><td>";
 
                        $auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
 
-                       print "<input size=\"20\" type=\"password\" name=\"auth_pass\" 
-                               onkeypress=\"return filterCR(event, feedEditSave)\"
+                       print "<input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
+                               placeHolder=\"".__("Password")."\"
                                value=\"$auth_pass\">";
 
-                       print "</td></tr></table>";
+                       print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedEditDlg_login\" position=\"below\">
+                               ".__('<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds.')."
+                               </div>";
+
+#                      print "</td></tr></table>";
 
                        print "</div>";
                        print "<div class=\"dlgSec\">".__("Options")."</div>";
                        print "<div class=\"dlgSecCont\">";
 
-                       print "<div style=\"line-height : 100%\">";
+#                      print "<div style=\"line-height : 100%\">";
 
                        $private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
 
                        if ($private) {
-                               $checked = "checked";
+                               $checked = "checked=\"1\"";
                        } else {
                                $checked = "";
                        }
 
-                       print "<input type=\"checkbox\" name=\"private\" id=\"private\" 
+                       print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"private\" id=\"private\"
                                $checked>&nbsp;<label for=\"private\">".__('Hide from Popular feeds')."</label>";
 
                        $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
 
                        if ($rtl_content) {
-                               $checked = "checked";
+                               $checked = "checked=\"1\"";
                        } else {
                                $checked = "";
                        }
 
-                       print "<br/><input type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
+                       print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
                                $checked>&nbsp;<label for=\"rtl_content\">".__('Right-to-left content')."</label>";
 
                        $include_in_digest = sql_bool_to_bool(db_fetch_result($result, 0, "include_in_digest"));
 
                        if ($include_in_digest) {
-                               $checked = "checked";
+                               $checked = "checked=\"1\"";
                        } else {
                                $checked = "";
                        }
 
-                       print "<br/><input type=\"checkbox\" id=\"include_in_digest\" 
+                       print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"include_in_digest\"
                                name=\"include_in_digest\"
                                $checked>&nbsp;<label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
 
                                $checked = "";
                        }
 
-                       print "<br/><input type=\"checkbox\" id=\"always_display_enclosures\" 
+                       print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"always_display_enclosures\"
                                name=\"always_display_enclosures\"
                                $checked>&nbsp;<label for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
 
                        $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
 
                        if ($cache_images) {
-                               $checked = "checked";
+                               $checked = "checked=\"1\"";
                        } else {
                                $checked = "";
                        }
 
                        if (SIMPLEPIE_CACHE_IMAGES) {
-                               $disabled = "";
-                               $label_class = "";
+                               print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"cache_images\"
+                               name=\"cache_images\"
+                               $checked>&nbsp;<label for=\"cache_images\">".
+                               __('Cache images locally (SimplePie only)')."</label>";
+                       }
+
+                       $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result, 0, "mark_unread_on_update"));
+
+                       if ($mark_unread_on_update) {
+                               $checked = "checked";
                        } else {
-                               $disabled = "disabled";
-                               $label_class = "class='insensitive'";
+                               $checked = "";
                        }
 
-                       print "<br/><input type=\"checkbox\" id=\"cache_images\" 
-                               name=\"cache_images\" $disabled
-                               $checked>&nbsp;<label $label_class for=\"cache_images\">".
-                               __('Cache images locally')."</label>";
+                       print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"mark_unread_on_update\"
+                               name=\"mark_unread_on_update\"
+                               $checked>&nbsp;<label for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
 
+                       $update_on_checksum_change = sql_bool_to_bool(db_fetch_result($result, 0, "update_on_checksum_change"));
 
-                       print "</div>";
-                       print "</div>";
+                       if ($update_on_checksum_change) {
+                               $checked = "checked";
+                       } else {
+                               $checked = "";
+                       }
 
-                       print "</form>";
+                       print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"update_on_checksum_change\"
+                               name=\"update_on_checksum_change\"
+                               $checked>&nbsp;<label for=\"update_on_checksum_change\">".__('Mark posts as updated on content change')."</label>";
 
-                       /* Icon */
+#                      print "</div>";
+                       print "</div>";
 
-                       print "<br/>";
+                       /* Icon */
 
                        print "<div class=\"dlgSec\">".__("Icon")."</div>";
                        print "<div class=\"dlgSecCont\">";
                                style=\"width: 400px; height: 100px; display: none;\"></iframe>";
 
                        print "<form style='display : block' target=\"icon_upload_iframe\"
-                               enctype=\"multipart/form-data\" method=\"POST\" 
+                               enctype=\"multipart/form-data\" method=\"POST\"
                                action=\"backend.php\">
                                <input id=\"icon_file\" size=\"10\" name=\"icon_file\" type=\"file\">
                                <input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
                                <input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
                                <input type=\"hidden\" name=\"subop\" value=\"uploadicon\">
-                               <button onclick=\"return uploadFeedIcon();\"
+                               <button dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
                                        type=\"submit\">".__('Replace')."</button>
-                               <button onclick=\"return removeFeedIcon($feed_id);\"
+                               <button dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
                                        type=\"submit\">".__('Remove')."</button>
                                </form>";
 
 
                        print "<div class='dlgButtons'>
                                <div style=\"float : left\">
-                               <button onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
-                                       __('Unsubscribe')."</button>
-                               </div>
-                               <button onclick=\"return feedEditSave()\">".__('Save')."</button>
-                               <button onclick=\"return feedEditCancel()\">".__('Cancel')."</button>
-                               </div>";
+                               <button dojoType=\"dijit.form.Button\" onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
+                                       __('Unsubscribe')."</button>";
+
+                       if (PUBSUBHUBBUB_ENABLED) {
+                               $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
+                               $pubsub_btn_disabled = ($pubsub_state == 2) ? "" : "disabled=\"1\"";
+
+                               print "<button dojoType=\"dijit.form.Button\" id=\"pubsubReset_Btn\" $pubsub_btn_disabled
+                                               onclick='return resetPubSub($feed_id, \"$title\")'>".__('Resubscribe to push updates').
+                                               "</button>";
+                       }
+
+                       print "</div>";
+
+                       print "<div dojoType=\"dijit.Tooltip\" connectId=\"pubsubReset_Btn\" position=\"below\">".
+                               __('Resets PubSubHubbub subscription status for push-enabled feeds.')."</div>";
+
+                       print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').execute()\">".__('Save')."</button>
+                               <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').hide()\">".__('Cancel')."</button>
+                       </div>";
 
                        return;
                }
 
                        $feed_ids = db_escape_string($_REQUEST["ids"]);
 
-                       print "<div id=\"infoBoxTitle\">".__('Multiple Feed Editor')."</div>";
-
-                       print "<div class=\"infoBoxContents\">";
-
-                       print "<form id=\"batch_edit_feed_form\" onsubmit=\"return false\">";   
-
-                       print "<input type=\"hidden\" name=\"ids\" value=\"$feed_ids\">";
-                       print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
-                       print "<input type=\"hidden\" name=\"subop\" value=\"batchEditSave\">";
+                       print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"ids\" value=\"$feed_ids\">";
+                       print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
+                       print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"batchEditSave\">";
 
                        print "<div class=\"dlgSec\">".__("Feed")."</div>";
                        print "<div class=\"dlgSecCont\">";
 
                        /* Title */
 
-                       print "<input disabled style=\"font-size : 16px\" size=\"35\" onkeypress=\"return filterCR(event, feedEditSave)\"
-                                           name=\"title\" value=\"$title\">";
+                       print "<input dojoType=\"dijit.form.ValidationTextBox\"
+                               disabled=\"1\" style=\"font-size : 16px; width : 20em;\" required=\"1\"
+                               name=\"title\" value=\"$title\">";
 
                        batch_edit_cbox("title");
 
                        print "<br/>";
 
                        print __('URL:') . " ";
-                       print "<input disabled size=\"40\" onkeypress=\"return filterCR(event, feedEditSave)\"
+                       print "<input dojoType=\"dijit.form.ValidationTextBox\" disabled=\"1\"
+                               required=\"1\" regExp='^(http|https)://.*' style=\"width : 20em\"
                                name=\"feed_url\" value=\"$feed_url\">";
 
                        batch_edit_cbox("feed_url");
 
                                print __('Place in category:') . " ";
 
-                               print_feed_cat_select($link, "cat_id", $cat_id, "disabled");
+                               print_feed_cat_select($link, "cat_id", $cat_id,
+                                       'disabled="1" dojoType="dijit.form.Select"');
 
                                batch_edit_cbox("cat_id");
 
 
                        /* Update Interval */
 
-                       print_select_hash("update_interval", $update_interval, $update_intervals, 
-                               "disabled");
+                       print_select_hash("update_interval", $update_interval, $update_intervals,
+                               'disabled="1" dojoType="dijit.form.Select"');
 
                        batch_edit_cbox("update_interval");
 
                        /* Update method */
 
                        print " " . __('using') . " ";
-                       print_select_hash("update_method", $update_method, $update_methods, 
-                               "disabled");                    
+                       print_select_hash("update_method", $update_method, $update_methods,
+                               'disabled="1" dojoType="dijit.form.Select"');
                        batch_edit_cbox("update_method");
 
                        /* Purge intl */
 
-                       if (FORCE_ARTICLE_PURGE != 0) {
+                       if (FORCE_ARTICLE_PURGE == 0) {
 
                                print "<br/>";
 
                                print __('Article purging:') . " ";
 
                                print_select_hash("purge_interval", $purge_interval, $purge_intervals,
-                                       "disabled");
+                                       'disabled="1" dojoType="dijit.form.Select"');
 
                                batch_edit_cbox("purge_interval");
                        }
                        print "<div class=\"dlgSec\">".__("Authentication")."</div>";
                        print "<div class=\"dlgSecCont\">";
 
-                       print __('Login:') . " ";
-                       print "<input disabled size=\"15\" onkeypress=\"return filterCR(event, feedEditSave)\"
+                       print "<input dojoType=\"dijit.form.TextBox\"
+                               placeHolder=\"".__("Login")."\" disabled=\"1\"
                                name=\"auth_login\" value=\"$auth_login\">";
 
                        batch_edit_cbox("auth_login");
 
-                       print " " . __("Password:") . " ";
-
-                       print "<input disabled size=\"15\" type=\"password\" name=\"auth_pass\" 
-                               onkeypress=\"return filterCR(event, feedEditSave)\"
+                       print "<br/><input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
+                               placeHolder=\"".__("Password")."\" disabled=\"1\"
                                value=\"$auth_pass\">";
 
                        batch_edit_cbox("auth_pass");
                        print "<div class=\"dlgSec\">".__("Options")."</div>";
                        print "<div class=\"dlgSecCont\">";
 
-                       print "<div style=\"line-height : 100%\">";
-
-                       print "<input disabled type=\"checkbox\" name=\"private\" id=\"private\" 
-                               $checked>&nbsp;<label id=\"private_l\" class='insensitive' for=\"private\">".__('Hide from Popular feeds')."</label>";
+                       print "<input disabled=\"1\" type=\"checkbox\" name=\"private\" id=\"private\"
+                               dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"private_l\" class='insensitive' for=\"private\">".__('Hide from Popular feeds')."</label>";
 
                        print "&nbsp;"; batch_edit_cbox("private", "private_l");
 
-                       print "<br/><input disabled type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
-                               $checked>&nbsp;<label class='insensitive' id=\"rtl_content_l\" for=\"rtl_content\">".__('Right-to-left content')."</label>";
+                       print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
+                               dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"rtl_content_l\" for=\"rtl_content\">".__('Right-to-left content')."</label>";
 
                        print "&nbsp;"; batch_edit_cbox("rtl_content", "rtl_content_l");
 
-                       print "<br/><input disabled type=\"checkbox\" id=\"include_in_digest\" 
-                               name=\"include_in_digest\" 
-                               $checked>&nbsp;<label id=\"include_in_digest_l\" class='insensitive' for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
+                       print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"include_in_digest\"
+                               name=\"include_in_digest\"
+                               dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"include_in_digest_l\" class='insensitive' for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
 
                        print "&nbsp;"; batch_edit_cbox("include_in_digest", "include_in_digest_l");
 
-                       print "<br/><input disabled type=\"checkbox\" id=\"always_display_enclosures\" 
-                               name=\"always_display_enclosures\" 
-                               $checked>&nbsp;<label id=\"always_display_enclosures_l\" class='insensitive' for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
+                       print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"always_display_enclosures\"
+                               name=\"always_display_enclosures\"
+                               dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"always_display_enclosures_l\" class='insensitive' for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
 
                        print "&nbsp;"; batch_edit_cbox("always_display_enclosures", "always_display_enclosures_l");
 
-                       print "<br/><input disabled type=\"checkbox\" id=\"cache_images\" 
-                               name=\"cache_images\" 
-                               $checked>&nbsp;<label class='insensitive' id=\"cache_images_l\" 
+                       if (SIMPLEPIE_CACHE_IMAGES) {
+                               print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"cache_images\"
+                                       name=\"cache_images\"
+                                       dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"cache_images_l\"
                                        for=\"cache_images\">".
                                __('Cache images locally')."</label>";
 
 
-                       if (SIMPLEPIE_CACHE_IMAGES) {
                                print "&nbsp;"; batch_edit_cbox("cache_images", "cache_images_l");
                        }
 
-                       print "</div>";
-                       print "</div>";
+                       print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"mark_unread_on_update\"
+                               name=\"mark_unread_on_update\"
+                               dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"mark_unread_on_update_l\" class='insensitive' for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
+
+                       print "&nbsp;"; batch_edit_cbox("mark_unread_on_update", "mark_unread_on_update_l");
 
-                       print "</form>";
+                       print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"update_on_checksum_change\"
+                               name=\"update_on_checksum_change\"
+                               dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"update_on_checksum_change_l\" class='insensitive' for=\"update_on_checksum_change\">".__('Mark posts as updated on content change')."</label>";
+
+                       print "&nbsp;"; batch_edit_cbox("update_on_checksum_change", "update_on_checksum_change_l");
+
+                       print "</div>";
 
                        print "<div class='dlgButtons'>
-                               <input type=\"submit\" class=\"button\" 
-                               onclick=\"return feedsEditSave()\" value=\"".__('Save')."\">
-                               <input type='submit' class='button'                     
-                               onclick=\"return feedEditCancel()\" value=\"".__('Cancel')."\">
+                               <button dojoType=\"dijit.form.Button\"
+                                       onclick=\"return dijit.byId('feedEditDlg').execute()\">".
+                                       __('Save')."</button>
+                               <button dojoType=\"dijit.form.Button\"
+                               onclick=\"return dijit.byId('feedEditDlg').hide()\">".
+                                       __('Cancel')."</button>
                                </div>";
 
                        return;
 
                        $feed_title = db_escape_string(trim($_POST["title"]));
                        $feed_link = db_escape_string(trim($_POST["feed_url"]));
-                       $upd_intl = db_escape_string($_POST["update_interval"]);
-                       $purge_intl = db_escape_string($_POST["purge_interval"]);
-                       $feed_id = db_escape_string($_POST["id"]); /* editSave */
+                       $upd_intl = (int) db_escape_string($_POST["update_interval"]);
+                       $purge_intl = (int) db_escape_string($_POST["purge_interval"]);
+                       $feed_id = (int) db_escape_string($_POST["id"]); /* editSave */
                        $feed_ids = db_escape_string($_POST["ids"]); /* batchEditSave */
-                       $cat_id = db_escape_string($_POST["cat_id"]);
+                       $cat_id = (int) db_escape_string($_POST["cat_id"]);
                        $auth_login = db_escape_string(trim($_POST["auth_login"]));
                        $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
                        $private = checkbox_to_sql_bool(db_escape_string($_POST["private"]));
                        $always_display_enclosures = checkbox_to_sql_bool(
                                db_escape_string($_POST["always_display_enclosures"]));
 
-                       if (get_pref($link, 'ENABLE_FEED_CATS')) {                      
+                       $mark_unread_on_update = checkbox_to_sql_bool(
+                               db_escape_string($_POST["mark_unread_on_update"]));
+
+                       $update_on_checksum_change = checkbox_to_sql_bool(
+                               db_escape_string($_POST["update_on_checksum_change"]));
+
+                       if (get_pref($link, 'ENABLE_FEED_CATS')) {
                                if ($cat_id && $cat_id != 0) {
                                        $category_qpart = "cat_id = '$cat_id',";
                                        $category_qpart_nocomma = "cat_id = '$cat_id'";
 
                        if ($subop == "editSave") {
 
-                               $result = db_query($link, "UPDATE ttrss_feeds SET 
+                               $result = db_query($link, "UPDATE ttrss_feeds SET
                                        $category_qpart
                                        title = '$feed_title', feed_url = '$feed_link',
                                        update_interval = '$upd_intl',
                                        $cache_images_qpart
                                        include_in_digest = $include_in_digest,
                                        always_display_enclosures = $always_display_enclosures,
+                                       mark_unread_on_update = $mark_unread_on_update,
+                                       update_on_checksum_change = $update_on_checksum_change,
                                        update_method = '$update_method'
                                        WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
 
                                        $qpart = "";
 
                                        switch ($k) {
-                                               case "title":                                                   
+                                               case "title":
                                                        $qpart = "title = '$feed_title'";
                                                        break;
 
                                                        $qpart = "always_display_enclosures = '$always_display_enclosures'";
                                                        break;
 
+                                               case "mark_unread_on_update":
+                                                       $qpart = "mark_unread_on_update = '$mark_unread_on_update'";
+                                                       break;
+
+                                               case "update_on_checksum_change":
+                                                       $qpart = "update_on_checksum_change = '$update_on_checksum_change'";
+                                                       break;
+
                                                case "cache_images":
                                                        $qpart = "cache_images = '$cache_images'";
                                                        break;
 
                                db_query($link, "COMMIT");
                        }
+                       return;
+               }
+
+               if ($subop == "resetPubSub") {
+
+                       $ids = db_escape_string($_REQUEST["ids"]);
 
+                       db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0 WHERE id IN ($ids)
+                               AND owner_uid = " . $_SESSION["uid"]);
+
+                       return;
                }
 
                if ($subop == "remove") {
 
                                $filters = load_filters($link, $id, $_SESSION["uid"], 6);
 
-                               $result = db_query($link, "SELECT 
+                               $result = db_query($link, "SELECT
                                        title, content, link, ref_id, author,".
                                        SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
                                        FROM
-                                               ttrss_user_entries, ttrss_entries 
-                                               WHERE ref_id = id AND feed_id = '$id' AND 
+                                               ttrss_user_entries, ttrss_entries
+                                               WHERE ref_id = id AND feed_id = '$id' AND
                                                        owner_uid = " .$_SESSION['uid']."
                                                ");
 
 
                                        $tags = get_article_tags($link, $line["ref_id"]);
 
-                                       $article_filters = get_article_filters($filters, $line['title'], 
-                                               $line['content'], $line['link'], strtotime($line['updated']), 
+                                       $article_filters = get_article_filters($filters, $line['title'],
+                                               $line['content'], $line['link'], strtotime($line['updated']),
                                                $line['author'], $tags);
-                                       
+
                                        $new_score = calculate_article_score($article_filters);
 
                                        if (!$scores[$new_score]) $scores[$new_score] = array();
 
                                foreach (array_keys($scores) as $s) {
                                        if ($s > 1000) {
-                                               db_query($link, "UPDATE ttrss_user_entries SET score = '$s', 
+                                               db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
                                                        marked = true WHERE
                                                        ref_id IN (" . join(',', $scores[$s]) . ")");
                                        } else if ($s < -500) {
-                                               db_query($link, "UPDATE ttrss_user_entries SET score = '$s', 
+                                               db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
                                                        unread = false WHERE
                                                        ref_id IN (" . join(',', $scores[$s]) . ")");
                                        } else {
 
                if ($subop == "rescoreAll") {
 
-                       $result = db_query($link, 
+                       $result = db_query($link,
                                "SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
 
                        while ($feed_line = db_fetch_assoc($result)) {
 
                                $filters = load_filters($link, $id, $_SESSION["uid"], 6);
 
-                               $tmp_result = db_query($link, "SELECT 
+                               $tmp_result = db_query($link, "SELECT
                                        title, content, link, ref_id, author,".
                                                SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
                                                FROM
-                                               ttrss_user_entries, ttrss_entries 
-                                               WHERE ref_id = id AND feed_id = '$id' AND 
+                                               ttrss_user_entries, ttrss_entries
+                                               WHERE ref_id = id AND feed_id = '$id' AND
                                                        owner_uid = " .$_SESSION['uid']."
                                                ");
 
 
                                        $tags = get_article_tags($link, $line["ref_id"]);
 
-                                       $article_filters = get_article_filters($filters, $line['title'], 
-                                               $line['content'], $line['link'], strtotime($line['updated']), 
+                                       $article_filters = get_article_filters($filters, $line['title'],
+                                               $line['content'], $line['link'], strtotime($line['updated']),
                                                $line['author'], $tags);
 
                                        $new_score = calculate_article_score($article_filters);
 
                                foreach (array_keys($scores) as $s) {
                                        if ($s > 1000) {
-                                               db_query($link, "UPDATE ttrss_user_entries SET score = '$s', 
+                                               db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
                                                        marked = true WHERE
                                                        ref_id IN (" . join(',', $scores[$s]) . ")");
                                        } else {
                        $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
 
                        if ($p_from != 'tt-rss') {
+                               header("Content-Type: text/html");
                                print "<html>
                                        <head>
                                                <title>Tiny Tiny RSS</title>
                                        </head>
                                        <body>
                                        <img class=\"floatingLogo\" src=\"images/ttrss_logo.png\"
-                                               alt=\"Tiny Tiny RSS\"/> 
+                                               alt=\"Tiny Tiny RSS\"/>
                                        <h1>Subscribe to feed...</h1>";
                        }
 
                        $rc = subscribe_to_feed($link, $feed_url, $cat_id, $auth_login, $auth_pass);
 
                        switch ($rc) {
-                       case 1: 
+                       case 1:
                                print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
                                break;
                        case 2:
                                print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
                                break;
+                       case 3:
+                               print_error(T_sprintf("No feeds found in <b>%s</b>.", $feed_url));
+                               break;
                        case 0:
                                print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
                                break;
+                       case 4:
+                               print_notice("Multiple feed URLs found.");
+
+                               $feed_urls = get_feeds_from_html($feed_url);
+                               break;
+                       case 5:
+                               print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
+                               break;
                        }
 
                        if ($p_from != 'tt-rss') {
-                               $tt_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'tt-rss.php', $_SERVER["REQUEST_URI"]);
 
+                               if ($feed_urls) {
+
+                                       print "<form action=\"backend.php\">";
+                                       print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
+                                       print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
+                                       print "<input type=\"hidden\" name=\"subop\" value=\"add\">";
 
-                               $tp_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'prefs.php', $_SERVER["REQUEST_URI"]);
+                                       print "<select name=\"feed_url\">";
 
-                               $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
-                                       feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
+                                       foreach ($feed_urls as $url => $name) {
+                                               $url = htmlspecialchars($url);
+                                               $name = htmlspecialchars($name);
 
-                               $feed_id = db_fetch_result($result, 0, "id");
+                                               print "<option value=\"$url\">$name</option>";
+                                       }
+
+                                       print "<input type=\"submit\" value=\"".__("Subscribe to selected feed").
+                                               "\">";
 
+                                       print "</form>";
+                               }
+
+                               $tp_uri = get_self_url_prefix() . "/prefs.php";
+                               $tt_uri = get_self_url_prefix();
+
+                               if ($rc <= 2){
+                                       $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
+                                               feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
+
+                                       $feed_id = db_fetch_result($result, 0, "id");
+                               } else {
+                                       $feed_id = 0;
+                               }
                                print "<p>";
 
                                if ($feed_id) {
-                                       print "<form method=\"GET\" style='display: inline' 
+                                       print "<form method=\"GET\" style='display: inline'
                                                action=\"$tp_uri\">
                                                <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
                                                <input type=\"hidden\" name=\"subop\" value=\"editFeed\">
                        db_query($link, "BEGIN");
 
                        foreach ($ids as $id) {
-                       
+
                                db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
                                        WHERE id = '$id'
                                        AND owner_uid = " . $_SESSION["uid"]);
                                if (db_num_rows($result) == 1) {
 
                                        $old_title = db_fetch_result($result, 0, "title");
-                                       
+
                                        if ($cat_title != "") {
                                                $result = db_query($link, "UPDATE ttrss_feed_categories SET
-                                                       title = '$cat_title' WHERE id = '$cat_id' AND 
+                                                       title = '$cat_title' WHERE id = '$cat_id' AND
                                                        owner_uid = ".$_SESSION["uid"]);
 
                                                print $cat_title;
 
                        }
 
-                       print "<div id=\"infoBoxTitle\">".__('Category editor')."</div>";
-                       
-                       print "<div class=\"infoBoxContents\">";
-
-
                        if ($action == "add") {
 
                                $feed_cat = db_escape_string(trim($_REQUEST["cat"]));
                        }
 
                        if ($action == "remove") {
-       
+
                                $ids = split(",", db_escape_string($_REQUEST["ids"]));
-       
+
                                foreach ($ids as $id) {
                                        remove_feed_category($link, $id, $_SESSION["uid"]);
                                }
                        }
 
-                       print "<div>
-                               <input id=\"fadd_cat\" 
-                                       onkeypress=\"return filterCR(event, addFeedCat)\"
-                                       size=\"40\">
-                                       <button onclick=\"addFeedCat()\">".
-                                       __('Create category')."</button></div>";
-       
+                       print "<div dojoType=\"dijit.Toolbar\">
+                               <input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"newcat\">
+                                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').addCategory()\">".
+                                               __('Create category')."</button></div>";
+
                        $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
                                WHERE owner_uid = ".$_SESSION["uid"]."
                                ORDER BY title");
 
-                       print "<p>";
+#                      print "<p>";
 
                        if (db_num_rows($result) != 0) {
 
-                               print   __('Select:')." 
-                                       <a href=\"#\" onclick=\"selectPrefRows('fcat', true)\">".__('All')."</a>,
-                                       <a href=\"#\" onclick=\"selectPrefRows('fcat', false)\">".__('None')."</a>";
-
                                print "<div class=\"prefFeedCatHolder\">";
 
-                               print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
+#                              print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
 
-                               print "<table width=\"100%\" class=\"prefFeedCatList\" 
+                               print "<table width=\"100%\" class=\"prefFeedCatList\"
                                        cellspacing=\"0\" id=\"prefFeedCatList\">";
-                                               
+
                                $lnum = 0;
-                               
+
                                while ($line = db_fetch_assoc($result)) {
-               
+
                                        $class = ($lnum % 2) ? "even" : "odd";
-               
+
                                        $cat_id = $line["id"];
                                        $this_row_id = "id=\"FCATR-$cat_id\"";
-               
-                                       print "<tr class=\"$class\" $this_row_id>";
-               
+
+                                       print "<tr class=\"\" $this_row_id>";
+
                                        $edit_title = htmlspecialchars($line["title"]);
-               
-                                       print "<td width='5%' align='center'><input 
-                                               onclick='toggleSelectRow(this);' 
-                                               type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
-       
-                                       print "<td><span id=\"FCATT-$cat_id\">" . 
-                                               $edit_title . "</span></td>";           
-                                       
-                                       print "</tr>";
-               
+
+                                       print "<td width='5%' align='center'><input
+                                               onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
+                                               type=\"checkbox\"></td>";
+
+                                       print "<td>";
+
+#                                      print "<span id=\"FCATT-$cat_id\">" .
+#                                              $edit_title . "</span>";
+
+                                       print "<span dojoType=\"dijit.InlineEditBox\"
+                                               width=\"300px\" autoSave=\"false\"
+                                               cat-id=\"$cat_id\">" . $edit_title .
+                                               "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
+                                                       var elem = this;
+                                                       dojo.xhrPost({
+                                                               url: 'backend.php',
+                                                               content: {op: 'pref-feeds', subop: 'editCats',
+                                                                       action: 'save',
+                                                                       value: this.value,
+                                                                       cid: this.srcNodeRef.getAttribute('cat-id')},
+                                                                       load: function(response) {
+                                                                               elem.attr('value', response);
+                                                                               updateFeedList();
+                                                               }
+                                                       });
+                                               </script>
+                                       </span>";
+
+                                       print "</td></tr>";
+
                                        ++$lnum;
                                }
-       
+
                                print "</table>";
 
-                               print "</form>";
+#                              print "</form>";
 
                                print "</div>";
 
 
                        print "<div class='dlgButtons'>
                                <div style='float : left'>
-                               <button onclick=\"return removeSelectedFeedCats()\">".
-                               __('Remove')."</button>
+                               <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').removeSelected()\">".
+                               __('Remove selected categories')."</button>
                                </div>";
 
-                       print "<button onclick=\"selectTab('feedConfig')\">".
+                       print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').hide()\">".
                                __('Close this window')."</button></div>";
 
-                       print "</div>";
-
                        return;
 
                }
 
                if ($quiet) return;
 
-               set_pref($link, "_PREFS_ACTIVE_TAB", "feedConfig");
+               print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
+               print "<div id=\"pref-feeds-feeds\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Feeds')."\">";
+
+               /* print "<div dojoType=\"dijit.layout.BorderContainer\">";
+               print "<
+                       print "</div>"; */
 
                $result = db_query($link, "SELECT COUNT(id) AS num_errors
                        FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
 
                if ($num_errors > 0) {
 
-                       print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
-                               __('Some feeds have update errors (click for details)')."</a>");
+                       $error_button = "<button dojoType=\"dijit.form.Button\"
+                                       onclick=\"showFeedsWithErrors()\" id=\"errorButton\">" .
+                               __("Feeds with errors") . "</button>";
+
+//                     print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
+//                             __('Some feeds have update errors (click for details)')."</a>");
+               }
+
+               if (DB_TYPE == "pgsql") {
+                       $interval_qpart = "NOW() - INTERVAL '3 months'";
+               } else {
+                       $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
+               }
+
+               $result = db_query($link, "SELECT COUNT(*) AS num_inactive FROM ttrss_feeds WHERE
+                                       (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
+                                               ttrss_entries.id = ref_id AND
+                                                       ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart AND
+                       ttrss_feeds.owner_uid = ".$_SESSION["uid"]);
+
+               $num_inactive = db_fetch_result($result, 0, "num_inactive");
+
+               if ($num_inactive > 0) {
+                       $inactive_button = "<button dojoType=\"dijit.form.Button\"
+                                       onclick=\"showInactiveFeeds()\">" .
+                                       __("Inactive feeds") . "</button>";
                }
 
                $feed_search = db_escape_string($_REQUEST["search"]);
                        $feed_search = $_SESSION["prefs_feed_search"];
                }
 
-               print "<div style='float : right'> 
-                       <input id=\"feed_search\" size=\"20\" type=\"search\"
-                               onfocus=\"disableHotkeys();\" 
-                               onblur=\"enableHotkeys();\"
-                               onchange=\"updateFeedList()\" value=\"$feed_search\">
-                       <button onclick=\"updateFeedList()\">".
+               print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
+
+               print "<div region='top' dojoType=\"dijit.Toolbar\">"; #toolbar
+
+               print "<div style='float : right; padding-right : 4px;'>
+                       <input dojoType=\"dijit.form.TextBox\" id=\"feed_search\" size=\"20\" type=\"search\"
+                               value=\"$feed_search\">
+                       <button dojoType=\"dijit.form.Button\" onclick=\"updateFeedList()\">".
                                __('Search')."</button>
                        </div>";
-               
-               print "<button onclick=\"quickAddFeed()\">"
-                       .__('Subscribe to feed')."</button> ";
 
-               print "<button onclick=\"editSelectedFeed()\">".
-                       __('Edit feeds')."</button> ";
+               print "<div dojoType=\"dijit.form.DropDownButton\">".
+                               "<span>" . __('Select')."</span>";
+               print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
+               print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(true)\"
+                       dojoType=\"dijit.MenuItem\">".__('All')."</div>";
+               print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(false)\"
+                       dojoType=\"dijit.MenuItem\">".__('None')."</div>";
+               print "</div></div>";
+
+               print "<div dojoType=\"dijit.form.DropDownButton\">".
+                               "<span>" . __('Feeds')."</span>";
+               print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
+               print "<div onclick=\"quickAddFeed()\"
+                       dojoType=\"dijit.MenuItem\">".__('Subscribe to feed')."</div>";
+               print "<div onclick=\"editSelectedFeed()\"
+                       dojoType=\"dijit.MenuItem\">".__('Edit selected feeds')."</div>";
+               print "<div onclick=\"resetFeedOrder()\"
+                       dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
+               print "</div></div>";
 
                if (get_pref($link, 'ENABLE_FEED_CATS')) {
+                       print "<div dojoType=\"dijit.form.DropDownButton\">".
+                                       "<span>" . __('Categories')."</span>";
+                       print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
+                       print "<div onclick=\"editFeedCats()\"
+                               dojoType=\"dijit.MenuItem\">".__('Edit categories')."</div>";
+                       print "<div onclick=\"resetCatOrder()\"
+                               dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
+                       print "</div></div>";
 
-                       print "<button onclick=\"editFeedCats()\">".
-                               __('Edit categories')."</button> ";
                }
 
-               print "<button onclick=\"removeSelectedFeeds()\">"
-                       .__('Unsubscribe')."</button> ";
+               print $error_button;
+               print $inactive_button;
+
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"removeSelectedFeeds()\">"
+                       .__('Unsubscribe')."</button dojoType=\"dijit.form.Button\"> ";
 
                if (defined('_ENABLE_FEED_DEBUGGING')) {
 
                        print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
                                <option value=\"facDefault\" selected>".__('More actions...')."</option>";
-       
+
                        if (FORCE_ARTICLE_PURGE == 0) {
-                               print 
+                               print
                                        "<option value=\"facPurge\">".__('Manual purge')."</option>";
                        }
-       
+
                        print "
                                <option value=\"facClear\">".__('Clear feed data')."</option>
                                <option value=\"facRescore\">".__('Rescore articles')."</option>";
-       
-                       print "</select>";
-
-               }
-
-               $feeds_sort = db_escape_string($_REQUEST["sort"]);
-
-               if (!$feeds_sort || $feeds_sort == "undefined") {
-                       $feeds_sort = $_SESSION["pref_sort_feeds"];                     
-                       if (!$feeds_sort) $feeds_sort = "title";
-               }
-
-               $_SESSION["pref_sort_feeds"] = $feeds_sort;
-
-               if ($feed_search) {
 
-                       $feed_search = split(" ", $feed_search);
-                       $tokens = array();
-
-                       foreach ($feed_search as $token) {
-
-                               $token = trim($token);
-
-                               array_push($tokens, "(UPPER(F1.title) LIKE UPPER('%$token%') OR
-                                       UPPER(C1.title) LIKE UPPER('%$token%') OR
-                                       UPPER(F1.feed_url) LIKE UPPER('%$token%'))");
-                       }
-
-                       $search_qpart = "(" . join($tokens, " AND ") . ") AND ";
-
-               } else {
-                       $search_qpart = "";
-               }
-
-               $show_last_article_info = false;
-               $show_last_article_checked = "";
-               $show_last_article_qpart = "";
-
-               if ($_REQUEST["slat"] == "true") {
-                       $show_last_article_info = true;
-                       $show_last_article_checked = "checked";
-                       $show_last_article_qpart = ", (SELECT ".SUBSTRING_FOR_DATE."(MAX(updated),1,16) FROM ttrss_user_entries,
-                               ttrss_entries WHERE ref_id = ttrss_entries.id
-                               AND feed_id = F1.id) AS last_article";
-               } else if ($feeds_sort == "last_article") {
-                       $feeds_sort = "title";
-               }
+                       print "</select>";
 
-               if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                       $order_by_qpart = "category,$feeds_sort,title";
-               } else {
-                       $order_by_qpart = "$feeds_sort,title";
                }
 
-               $result = db_query($link, "SELECT 
-                               F1.id,
-                               F1.title,
-                               F1.feed_url,
-                               ".SUBSTRING_FOR_DATE."(F1.last_updated,1,16) AS last_updated,
-                               F1.update_interval,
-                               F1.last_error,
-                               F1.purge_interval,
-                               F1.cat_id,
-                               C1.title AS category,
-                               F1.include_in_digest
-                               $show_last_article_qpart
-                       FROM 
-                               ttrss_feeds AS F1 
-                               LEFT JOIN ttrss_feed_categories AS C1
-                                       ON (F1.cat_id = C1.id)
-                       WHERE 
-                               $search_qpart F1.owner_uid = '".$_SESSION["uid"]."'                     
-                       ORDER by $order_by_qpart");
-
-               if (db_num_rows($result) != 0) {
-
-//                     print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
-
-                       print "<p><table width=\"100%\" cellspacing=\"0\" 
-                               class=\"prefFeedList\" id=\"prefFeedList\">";
-                       print "<tr><td class=\"selectPrompt\" colspan=\"8\">".
-                               "<div style='float : right'>".
-                               "<input id='show_last_article_times' type='checkbox' onchange='feedlistToggleSLAT()'
-                               $show_last_article_checked><label 
-                                       for='show_last_article_times'>".__('Show last article times')."</label></div>".
-                               __('Select:')."
-                                       <a href=\"#\" onclick=\"selectPrefRows('feed', true)\">".__('All')."</a>,
-                                       <a href=\"#\" onclick=\"selectPrefRows('feed', false)\">".__('None')."</a>
-                               </td</tr>";
-
-                       if (!get_pref($link, 'ENABLE_FEED_CATS')) {
-                               print "<tr class=\"title\">
-                                       <td width='5%' align='center'>&nbsp;</td>";
-
-                               print "<td width='3%'>&nbsp;</td>";
-
-                               print "<td width='60%'><a href=\"#\" onclick=\"updateFeedList('title')\">".__('Title')."</a></td>";
-
-                               if ($show_last_article_info) {
-                                       print "<td width='20%' align='right'><a href=\"#\" onclick=\"updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>";
-                               }
-
-                               print "<td width='20%' align='right'><a href=\"#\" onclick=\"updateFeedList('last_updated')\">".__('Updated')."</a></td>";
+               print "</div>"; # toolbar
+
+               //print '</div>';
+               print '<div dojoType="dijit.layout.ContentPane" region="center">';
+
+               print "<div id=\"feedlistLoading\">
+               <img src='images/indicator_tiny.gif'>".
+                __("Loading, please wait...")."</div>";
+
+               print "<div dojoType=\"fox.PrefFeedStore\" jsId=\"feedStore\"
+                       url=\"backend.php?op=pref-feeds&subop=getfeedtree\">
+               </div>
+               <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"feedModel\" store=\"feedStore\"
+               query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
+                       childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
+               </div>
+               <div dojoType=\"fox.PrefFeedTree\" id=\"feedTree\"
+                       dndController=\"dijit.tree.dndSource\"
+                       betweenThreshold=\"5\"
+                       model=\"feedModel\" openOnClick=\"false\">
+               <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
+                       var id = String(item.id);
+                       var bare_id = id.substr(id.indexOf(':')+1);
+
+                       if (id.match('FEED:')) {
+                               editFeed(bare_id);
+                       } else if (id.match('CAT:')) {
+                               editCat(bare_id, item);
                        }
-                       
-                       $lnum = 0;
-
-                       $cur_cat_id = -1;
-                       
-                       while ($line = db_fetch_assoc($result)) {
-       
-                               $feed_id = $line["id"];
-                               $cat_id = $line["cat_id"];
+               </script>
+               <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
+                       Element.hide(\"feedlistLoading\");
+               </script>
+               </div>";
+
+               print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedTree\" position=\"below\">
+                       ".__('<b>Hint:</b> you can drag feeds and categories around.')."
+                       </div>";
 
-                               $edit_title = htmlspecialchars($line["title"]);
-                               $edit_cat = htmlspecialchars($line["category"]);
+               print '</div>';
+               print '</div>';
 
-                               $last_error = $line["last_error"];
+               print "</div>"; # feeds pane
 
-                               if (!$edit_cat) $edit_cat = __("Uncategorized");
+               print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('OPML')."\">";
 
-                               $last_updated = $line["last_updated"];
+               print "<p>" . __("Using OPML you can export and import your feeds and Tiny Tiny RSS settings.") . " ";
 
-                               if (!$last_updated) {
-                                       $last_updated = "&mdash;";
-                               } else {
-                                       $last_updated = make_local_datetime($link, $last_updated, false);
-                               }
+               print "<span class=\"insensitive\">" . __("Note: Only main settings profile can be migrated using OPML.") . "</span>";
 
-                               $last_article = $line["last_article"];
+               print "</p>";
 
-                               if (!$last_article) {
-                                       $last_article = "&mdash;";      
-                               } else {
-                                       $last_article = make_local_datetime($link, $last_article, false);
-                               }
+               print "<h3>" . __("Import") . "</h3>";
 
-                               if (get_pref($link, 'ENABLE_FEED_CATS') && $cur_cat_id != $cat_id) {
-                                       $lnum = 0;
-                               
-                                       print "<tr><td colspan=\"6\" class=\"feedEditCat\">$edit_cat</td></tr>";
+               print "<br/><iframe id=\"upload_iframe\"
+                       name=\"upload_iframe\" onload=\"opmlImportComplete(this)\"
+                       style=\"width: 400px; height: 100px; display: none;\"></iframe>";
 
-                                       print "<tr class=\"title\">
-                                               <td width='5%'>&nbsp;</td>";
+               print "<form  name=\"opml_form\" style='display : block' target=\"upload_iframe\"
+                       enctype=\"multipart/form-data\" method=\"POST\"
+                               action=\"backend.php\">
+                       <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
+                       <input type=\"hidden\" name=\"op\" value=\"dlg\">
+                       <input type=\"hidden\" name=\"id\" value=\"importOpml\">
+                       <button dojoType=\"dijit.form.Button\" onclick=\"return opmlImport();\" type=\"submit\">" .
+                       __('Import') . "</button>";
 
-                                       print "<td width='3%'>&nbsp;</td>";
+               print "<h3>" . __("Export") . "</h3>";
 
-                                       print "<td width='60%'><a href=\"#\" onclick=\"updateFeedList('title')\">".__('Title')."</a></td>";
+               print "<p>" . __('Filename:') .
+            " <input type=\"text\" id=\"filename\" value=\"TinyTinyRSS.opml\" />&nbsp;" .
+            __('Include settings') . "<input type=\"checkbox\" id=\"settings\" CHECKED />" .
 
-                                       if ($show_last_article_info) {
-                                               print "<td width='20%' align='right'>
-                                                       <a href=\"#\" onclick=\"updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>";
-                                       }
+                       "<button dojoType=\"dijit.form.Button\"
+                       onclick=\"gotoExportOpml(document.opml_form.filename.value, document.opml_form.settings.checked)\" >" .
+              __('Export') . "</button></p></form>";
 
-                                       print "<td width='20%' align='right'>
-                                               <a href=\"#\" onclick=\"updateFeedList('last_updated')\">".__('Updated')."</a></td>";
+               print "<h3>" . __("Publish") . "</h3>";
 
-                                       $cur_cat_id = $cat_id;
-                               }
+               print "<p>".__('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.') . " ";
 
-                               $class = ($lnum % 2) ? "even" : "odd";
-                               $this_row_id = "id=\"FEEDR-$feed_id\"";
+               print "<span class=\"insensitive\">" . __("Note: Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.") .                         "</span>" . "</p>";
 
-                               print "<tr class=\"$class\" $this_row_id>";
-       
-                               $icon_file = ICONS_DIR . "/$feed_id.ico";
-       
-                               if (file_exists($icon_file) && filesize($icon_file) > 0) {
-                                               $feed_icon = "<img class=\"tinyFeedIcon\"       src=\"" . ICONS_URL . "/$feed_id.ico\">";
-                               } else {
-                                       $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
-                               }
-                               
-                               print "<td class='feedSelect'><input onclick='toggleSelecRow(this);' 
-                               type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
-
-                               $onclick = "onclick='editFeed($feed_id, event)' title='".__('Click to edit')."'";
-
-                               print "<td $onclick class='feedIcon'>$feed_icon</td>";          
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('pubOPMLUrl')\">".
+                       __('Display URL')."</button> ";
 
-                               if ($last_error) {
-                                       $edit_title = "<span class=\"feed_error\">$edit_title</span>";
-                                       $last_updated = "<span class=\"feed_error\">$last_updated</span>";
-                                       $last_article = "<span class=\"feed_error\">$last_article</span>";
-                               }
 
-                               print "<td $onclick>" . $edit_title . "</td>";
+               print "</div>"; # pane
 
-                               if ($show_last_article_info) {
-                                       print "<td align='right' $onclick>" . 
-                                               "$last_article</td>";
-                               }
+               if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
 
-                               print "<td $onclick align='right'>$last_updated</td>";
+                       print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Firefox integration')."\">";
 
-                               print "</tr>";
-       
-                               ++$lnum;
-                       }
-       
-                       print "</table>";
+                       print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.') . "</p>";
 
                        print "<p>";
 
-               } else {
-
-                       print "<p>";
+                       print "<button onclick='window.navigator.registerContentHandler(" .
+                      "\"application/vnd.mozilla.maybe.feed\", " .
+                      "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
+                                                        __('Click here to register this site as a feed reader.') .
+                               "</button>";
 
-                       if (!$feed_search) { 
-                               print_warning(__("You don't have any subscribed feeds."));
-                       } else {
-                               print_warning(__('No matching feeds found.'));
-                       }
                        print "</p>";
 
+                       print "</div>"; # pane
                }
 
-               print "<h3>".__('OPML')."</h3>";
+               print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Subscribing using bookmarklet')."\">";
 
-/*             print "<div style='float : left'>
-               <form   enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
-               ".__('File:')." <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
-                       <input type=\"hidden\" name=\"op\" value=\"Import\">
-                       <button onclick=\"return validateOpmlImport();\"
-                               type=\"submit\">".__('Import')."</button>
-                               </form></div>";
+               print "<p>" . __("Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it.") . "</p>";
 
-               print "&nbsp;"; */
+               $bm_subscribe_url = str_replace('%s', '', add_feed_url());
 
-               print "<p>" . __("Using OPML you can export and import your feeds and Tiny Tiny RSS settings.");
+               $confirm_str = __('Subscribe to %s in Tiny Tiny RSS?');
 
-               print "<div class=\"insensitive\">" . __("Note: Only main settings profile can be migrated using OPML.") . "</div>";
+               $bm_url = htmlspecialchars("javascript:{if(confirm('$confirm_str'.replace('%s',window.location.href)))window.location.href='$bm_subscribe_url'+window.location.href}");
 
-               print "</p>";
+               print "<a href=\"$bm_url\" class='bookmarklet'>" . __('Subscribe in Tiny Tiny RSS'). "</a>";
 
-               print "<iframe name=\"upload_iframe\"
-                       style=\"width: 400px; height: 100px; display: none;\"></iframe>";
+               print "</div>"; #pane
 
-               print "<div style='float : left'>";
-               print "<form style='display : block' target=\"upload_iframe\"
-                       enctype=\"multipart/form-data\" method=\"POST\" 
-                               action=\"backend.php\">
-                       <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
-                       <input type=\"hidden\" name=\"op\" value=\"dlg\">
-                       <input type=\"hidden\" name=\"id\" value=\"importOpml\">
-                       <button onclick=\"return opmlImport();\"
-                               type=\"submit\">".__('Import')."</button>
-                       </form>";
-               print "</div>&nbsp;";
+               print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Published & shared articles and generated feeds')."\">";
 
-               print "<button onclick=\"gotoExportOpml()\">".
-                       __('Export OPML')."</button>";
+               print "<h3>" . __("Published articles and generated feeds") . "</h3>";
 
-               print "<p>".__('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.');
+               print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
 
-               print "<div class=\"insensitive\">" . __("Note: Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.") .                  "</div>" . "</p>";
+               $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
+                               "/public.php?op=rss&id=-2&view-mode=all_articles");;
 
-               print "<button onclick=\"return displayDlg('pubOPMLUrl')\">".
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('generatedFeed', '$rss_url')\">".
                        __('Display URL')."</button> ";
 
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearFeedAccessKeys()\">".
+                       __('Clear all generated URLs')."</button> ";
 
-               if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
-       
-                       print "<h3>" . __("Firefox Integration") . "</h3>";
-                
-                       print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.') . "</p>";
+               print "<h3>" . __("Articles shared by URL") . "</h3>";
 
-                       print "<p";
+               print "<p>" . __("You can disable all articles shared by unique URLs here.") . "</p>";
 
-                       print "<button onclick='window.navigator.registerContentHandler(" .
-                      "\"application/vnd.mozilla.maybe.feed\", " .
-                      "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
-                                                        __('Click here to register this site as a feed reader.') . 
-                               "</button>";
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearArticleAccessKeys()\">".
+                       __('Unshare all articles')."</button> ";
 
-                       print "</p>";
-               }
+               print "</div>"; #pane
 
-               print "<h3>".__("Subscribing via bookmarklet")."</h3>";
+               if (defined('CONSUMER_KEY') && CONSUMER_KEY != '') {
 
-               print "<p>" . __("Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it.") . "</p>";
+                       print "<div id=\"pref-feeds-twitter\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Twitter')."\">";
 
-               $bm_subscribe_url = str_replace('%s', '', add_feed_url());
+                       $result = db_query($link, "SELECT COUNT(*) AS cid FROM ttrss_users
+                               WHERE twitter_oauth IS NOT NULL AND twitter_oauth != '' AND
+                               id = " . $_SESSION['uid']);
 
-               $confirm_str = __('Subscribe to %s in Tiny Tiny RSS?');
+                       $is_registered = db_fetch_result($result, 0, "cid") != 0;
 
-               $bm_url = htmlspecialchars("javascript:{if(confirm('$confirm_str'.replace('%s',window.location.href)))window.location.href='$bm_subscribe_url'+window.location.href}");
+                       if (!$is_registered) {
+                               print_notice(__('Before you can update your Twitter feeds, you must register this instance of Tiny Tiny RSS with Twitter.com.'));
+                       } else {
+                               print_notice(__('You have been successfully registered with Twitter.com and should be able to access your Twitter feeds.'));
+                       }
 
-               print "<a href=\"$bm_url\" class='visibleLink'>" . __('Subscribe in Tiny Tiny RSS'). "</a>";
+                       print "<button dojoType=\"dijit.form.Button\" onclick=\"window.location.href = 'twitter.php?op=register'\">".
+                               __("Register with Twitter.com")."</button>";
 
-               print "<h3>".__("Published articles")."</h3>";
+                       print " ";
 
-               print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
+                       print "<button dojoType=\"dijit.form.Button\"
+                               onclick=\"return clearTwitterCredentials()\">".
+                               __("Clear stored credentials")."</button>";
 
-               $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() . 
-                               "/backend.php?op=rss&id=-2&view-mode=all_articles");;
+                       print "</div>"; # pane
 
-               print "<button onclick=\"return displayDlg('generatedFeed', '$rss_url')\">".
-                       __('Display URL')."</button> ";
-               
-               print "<button onclick=\"return clearFeedAccessKeys()\">".
-                       __('Clear all generated URLs')."</button> ";
+               }
+
+               print "</div>"; #container
 
        }
 
-       function print_feed_browser($link, $search, $limit, $mode = 1) {
+       function make_feed_browser($link, $search, $limit, $mode = 1) {
 
-                       $owner_uid = $_SESSION["uid"];
+               $owner_uid = $_SESSION["uid"];
+               $rv = '';
 
                        if ($search) {
-                               $search_qpart = "AND (UPPER(feed_url) LIKE UPPER('%$search%') OR 
+                               $search_qpart = "AND (UPPER(feed_url) LIKE UPPER('%$search%') OR
                                        UPPER(title) LIKE UPPER('%$search%'))";
                        } else {
                                $search_qpart = "";
                        }
 
                        if ($mode == 1) {
-                               $result = db_query($link, "SELECT feed_url, subscribers FROM
+                               /* $result = db_query($link, "SELECT feed_url, subscribers FROM
                                        ttrss_feedbrowser_cache WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
                                        WHERE tf.feed_url = ttrss_feedbrowser_cache.feed_url
-                                       AND owner_uid = '$owner_uid') $search_qpart 
-                                       ORDER BY subscribers DESC LIMIT $limit");
+                                       AND owner_uid = '$owner_uid') $search_qpart
+                                       ORDER BY subscribers DESC LIMIT $limit"); */
+
+                               $result = db_query($link, "SELECT feed_url, site_url, title, SUM(subscribers) AS subscribers FROM
+                                       (SELECT feed_url, site_url, title, subscribers FROM ttrss_feedbrowser_cache UNION ALL
+                                               SELECT feed_url, site_url, title, subscribers FROM ttrss_linked_feeds) AS qqq
+                                       WHERE
+                                               (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
+                                                       WHERE tf.feed_url = qqq.feed_url
+                                                               AND owner_uid = '$owner_uid') $search_qpart
+                                       GROUP BY feed_url, site_url, title ORDER BY subscribers DESC LIMIT $limit");
+
                        } else if ($mode == 2) {
                                $result = db_query($link, "SELECT *,
                                        (SELECT COUNT(*) FROM ttrss_user_entries WHERE
                                                orig_feed_id = ttrss_archived_feeds.id) AS articles_archived
                                        FROM
                                                ttrss_archived_feeds
-                                       WHERE 
-                                       (SELECT COUNT(*) FROM ttrss_feeds 
+                                       WHERE
+                                       (SELECT COUNT(*) FROM ttrss_feeds
                                                WHERE ttrss_feeds.feed_url = ttrss_archived_feeds.feed_url AND
-                                                       owner_uid = '$owner_uid') = 0   AND                                     
-                                       owner_uid = '$owner_uid' $search_qpart 
+                                                       owner_uid = '$owner_uid') = 0   AND
+                                       owner_uid = '$owner_uid' $search_qpart
                                        ORDER BY id DESC LIMIT $limit");
                        }
 
                        $feedctr = 0;
-                       
+
                        while ($line = db_fetch_assoc($result)) {
 
                                if ($mode == 1) {
 
-                                       $feed_url = $line["feed_url"];
+                                       $feed_url = htmlspecialchars($line["feed_url"]);
+                                       $site_url = htmlspecialchars($line["site_url"]);
                                        $subscribers = $line["subscribers"];
 
-                                       $det_result = db_query($link, "SELECT site_url,title,id 
-                                               FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
-       
-                                       $details = db_fetch_assoc($det_result);
-                               
-                                       $icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
-       
-                                       if (file_exists($icon_file) && filesize($icon_file) > 0) {
-                                                       $feed_icon = "<img class=\"tinyFeedIcon\"       src=\"" . ICONS_URL . 
-                                                               "/".$details["id"].".ico\">";
-                                       } else {
-                                               $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
-                                       }
-       
-                                       $check_box = "<input onclick='toggleSelectListRow(this)' 
-                                               class='feedBrowseCB' 
-                                               type=\"checkbox\" id=\"FBCHK-" . $details["id"] . "\">";
-       
+                                       $check_box = "<input onclick='toggleSelectListRow2(this)'
+                                               dojoType=\"dijit.form.CheckBox\"
+                                               type=\"checkbox\" \">";
+
                                        $class = ($feedctr % 2) ? "even" : "odd";
-       
-                                       $feed_url = htmlspecialchars($line["feed_url"]);
 
-                                       if ($details["site_url"]) {
-                                               $site_url = "<a target=\"_blank\" href=\"".
-                                                       htmlspecialchars($details["site_url"])."\">
-                                                       <img style='border-width : 0px' src='images/www.png' alt='www'></a>";
-                                       } else {
-                                               $site_url = "";
-                                       }
+                                       $site_url = "<a target=\"_blank\"
+                                               href=\"$site_url\">
+                                               <span class=\"fb_feedTitle\">".
+                                               htmlspecialchars($line["title"])."</span></a>";
+
+                                       $feed_url = "<a target=\"_blank\" class=\"fb_feedUrl\"
+                                               href=\"$feed_url\"><img src='images/feed-icon-12x12.png'
+                                               style='vertical-align : middle'></a>";
 
-                                       $feed_url = "<a target=\"_blank\" href=\"$feed_url\"><img 
-                                               style='border-width : 0px; vertical-align : middle' 
-                                               src='images/feed-icon-12x12.png'></a>";
+                                       $rv .= "<li>$check_box $feed_url $site_url".
+                                               "&nbsp;<span class='subscribers'>($subscribers)</span></li>";
 
-                                       print "<li title=\"".htmlspecialchars($details["site_url"])."\" 
-                                               class='$class' id=\"FBROW-".$details["id"]."\">$check_box".
-                                               "$feed_icon $feed_url " . htmlspecialchars($details["title"]) . 
-                                               "&nbsp;<span class='subscribers'>($subscribers)</span>
-                                               $site_url</li>";
-       
                                } else if ($mode == 2) {
                                        $feed_url = htmlspecialchars($line["feed_url"]);
-                                       $site_url = htmlspecialchars($line["site_url"]); 
+                                       $site_url = htmlspecialchars($line["site_url"]);
                                        $title = htmlspecialchars($line["title"]);
 
-                                       $icon_file = ICONS_DIR . "/" . $line["id"] . ".ico";
-       
-                                       if (file_exists($icon_file) && filesize($icon_file) > 0) {
-                                                       $feed_icon = "<img class=\"tinyFeedIcon\"       src=\"" . ICONS_URL . 
-                                                               "/".$line["id"].".ico\">";
-                                       } else {
-                                               $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
-                                       }
+                                       $check_box = "<input onclick='toggleSelectListRow2(this)' dojoType=\"dijit.form.CheckBox\"
+                                               type=\"checkbox\">";
 
-                                       $check_box = "<input onclick='toggleSelectListRow(this)' class='feedBrowseCB' 
-                                               type=\"checkbox\" id=\"FBCHK-" . $line["id"] . "\">";
-       
                                        $class = ($feedctr % 2) ? "even" : "odd";
 
                                        if ($line['articles_archived'] > 0) {
                                                $archived = '';
                                        }
 
-                                       if ($line["site_url"]) {
-                                               $site_url = "<a target=\"_blank\" href=\"$site_url\">
-                                                       <img style='border-width : 0px' src='images/www.png' alt='www'></a>";
-                                       } else {
-                                               $site_url = "";
-                                       }
-
-                                       $feed_url = "<a target=\"_blank\" href=\"$feed_url\"><img 
-                                               style='border-width : 0px; vertical-align : middle' 
-                                               src='images/feed-icon-12x12.png'></a>";
+                                       $site_url = "<a target=\"_blank\"
+                                               href=\"$site_url\">
+                                               <span class=\"fb_feedTitle\">".
+                                               htmlspecialchars($line["title"])."</span></a>";
 
-                                       print "<li title='".$line['site_url']."' class='$class' 
-                                               id=\"FBROW-".$line["id"]."\">".
-                                               $check_box . "$feed_icon $feed_url " . $title . 
-                                               $archived . $site_url . "</li>";
+                                       $feed_url = "<a target=\"_blank\" class=\"fb_feedUrl\"
+                                               href=\"$feed_url\"><img src='images/feed-icon-12x12.png'
+                                               style='vertical-align : middle'></a>";
 
 
+                                       $rv .= "<li id=\"FBROW-".$line["id"]."\">".
+                                               "$check_box $feed_url $site_url $archived</li>";
                                }
 
                                ++$feedctr;
                        }
 
                        if ($feedctr == 0) {
-                               print "<li style=\"text-align : center\"><p>".__('No feeds found.')."</p></li>";
+                               $rv .= "<li style=\"text-align : center\"><p>".__('No feeds found.')."</p></li>";
                        }
 
-               return $feedctr;
+               return $rv;
 
        }