]> git.wh0rd.org - tt-rss.git/blobdiff - functions.php
better feedlist reloading on subscribed feeds count change
[tt-rss.git] / functions.php
index 1281d59fe0634579ebc30eae8d91abbf8748b484..b4105e805f6a07a93adf35fcde5bb1624120c79a 100644 (file)
@@ -15,6 +15,8 @@
                define('SUBSTRING_FOR_DATE', 'SUBSTRING');
        }
 
+       define('THEME_VERSION_REQUIRED', 1.1);
+
        /**
         * Return available translations names.
         * 
 
        require_once 'lib/phpmailer/class.phpmailer.php';
        require_once 'lib/sphinxapi.php';
+       require_once 'lib/twitteroauth/twitteroauth.php';
 
-       define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
+       //define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
        define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
        define('MAGPIE_CACHE_AGE', 60*15); // 15 minutes
 
+       define('SELF_USER_AGENT', 'Tiny Tiny RSS/' . VERSION . ' (http://tt-rss.org/)');
+       define('MAGPIE_USER_AGENT', SELF_USER_AGENT);
+
+       ini_set('user_agent', SELF_USER_AGENT);
+
        require_once "lib/simplepie/simplepie.inc";
        require_once "lib/magpierss/rss_fetch.inc";
        require_once 'lib/magpierss/rss_utils.inc';
        require_once 'lib/htmlpurifier/library/HTMLPurifier.auto.php';
 
+       $config = HTMLPurifier_Config::createDefault();
+
+       $allowed = "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4";
+
+       $config->set('HTML', 'Allowed', $allowed);
+       $purifier = new HTMLPurifier($config);
+
        /**
         * Print a timestamped debug message.
         * 
                } else {
 
                        $result = db_query($link, "SELECT id,update_interval,auth_login,
-                               feed_url,auth_pass,cache_images,update_method,last_updated
+                               feed_url,auth_pass,cache_images,update_method,last_updated,
+                               owner_uid
                                FROM ttrss_feeds WHERE id = '$feed'");
 
                }
 
                $update_method = db_fetch_result($result, 0, "update_method");
                $last_updated = db_fetch_result($result, 0, "last_updated");
+               $owner_uid = db_fetch_result($result, 0, "owner_uid");
 
                db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
                        WHERE id = '$feed'");
                $auth_login = db_fetch_result($result, 0, "auth_login");
                $auth_pass = db_fetch_result($result, 0, "auth_pass");
 
-               if (DEFAULT_UPDATE_METHOD == "1") {
-                       $use_simplepie = $update_method != 1;
-               } else {
-                       $use_simplepie = $update_method == 2;
-               }
+               if ($update_method == 0)
+                       $update_method = DEFAULT_UPDATE_METHOD + 1;
+
+               // 1 - Magpie
+               // 2 - SimplePie
+               // 3 - Twitter OAuth
+
+               if ($update_method == 2)
+                       $use_simplepie = true;
+               else
+                       $use_simplepie = false;
 
                if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
-                       _debug("use simplepie: $use_simplepie (feed setting: $update_method)\n");
+                       _debug("update method: $update_method (feed setting: $update_method) (use simplepie: $use_simplepie)\n");
                }
 
-               if (!$use_simplepie) {
+               if ($update_method == 1) {
                        $auth_login = urlencode($auth_login);
                        $auth_pass = urlencode($auth_pass);
                }
 
                $feed = db_escape_string($feed);
 
-               if ($auth_login && $auth_pass) {
+               if ($auth_login && $auth_pass && $updated != 3) {
                        $url_parts = array();
                        preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
 
 
                } else {
 
-                       if (!$use_simplepie) {
+                       if ($update_method == 3) {
+                               $rss = fetch_twitter_rss($link, $fetch_url, $owner_uid);
+                                       } else if ($update_method == 1) {
                                $rss = @fetch_rss($fetch_url);
                        } else {
                                if (!is_dir(SIMPLEPIE_CACHE_DIR)) {
                                }
        
                                $rss = new SimplePie();
-                               $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
+                               $rss->set_useragent(SELF_USER_AGENT);
        #                       $rss->set_timeout(10);
                                $rss->set_feed_url($fetch_url);
                                $rss->set_output_encoding('UTF-8');
 
                $feed = db_escape_string($feed);
 
-               if ($use_simplepie) {
+               if ($update_method == 2) {
                        $fetch_ok = !$rss->error();
                } else {
                        $fetch_ok = !!$rss;
                                $icon_url = db_escape_string($rss->get_image_url());
                        }
 
+                       $icon_url = substr($icon_url, 0, 250);
+
                        if ($icon_url && $orig_icon_url != $icon_url) { 
                                if (USE_CURL_FOR_ICONS || url_validate($icon_url)) {
                                        db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
                print "<select name=\"$id\" id=\"$id\" $attributes>";
                foreach ($values as $v) {
                        if ($v == $default)
-                               $sel = " selected";
+                               $sel = "selected=\"1\"";
                         else
                                $sel = "";
                        
-                       print "<option$sel>$v</option>";
+                       print "<option value=\"$v\" $sel>$v</option>";
                }
                print "</select>";
        }
                }
        }
 
-       function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
-               $rtl_content = false, $last_updated = false, $last_error = false,
-               $fg_content = false, $bg_content = false) {
-
-               if (!$feed_title) $feed_title = getFeedTitle($link, $feed_id, false);
-               if (!$unread) $unread = getFeedUnread($link, $feed_id); 
-
-               if ($unread > 0) $class .= "Unread";
-
-               if (!$icon_file) $icon_file = getFeedIcon($feed_id);
-
-               if (strpos($icon_file, "images") !== false) {
-                       $icon_file = theme_image($link, $icon_file);
-               }
-
-               if (file_exists($icon_file) && filesize($icon_file) > 0) {
-                               $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
-               } else {
-                       $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
-               }
-
-               if ($rtl_content) {
-                       $rtl_tag = "dir=\"rtl\"";
-               } else {
-                       $rtl_tag = "dir=\"ltr\"";
-               }
-
-               $error_notify_msg = "";
-               
-               if ($last_error) {
-                       $link_title = "Error: $last_error ($last_updated)";
-                       $error_notify_msg = "(Error)";
-               } else if ($last_updated) {
-                       $link_title = "Updated: $last_updated";
-               }
-
-               $feed_title = truncate_string($feed_title, 30);
-
-               $feed = "<span class='feedlink' title=\"$link_title\" id=\"FEEDL-$feed_id\" href=\"#\"
-                       onclick=\"viewfeed('$feed_id');\">$feed_title</span>";
-
-/*             if ($feed_id < -10) {
-                       $bg_color = "#00ccff";
-                       $fg_color = "white";
-               }
-
-               if ($fg_color || $bg_color) {
-                       $color_str = "<div class='labelColorIndicator'
-                               style='color : $fg_color; background-color : $bg_color'>l</div>";
-               } 
-
-               print $color_str; */
-
-               print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
-               print "$feed_icon";
-               print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
-
-               if ($unread != 0) {
-                       $fctr_class = "class=\"feedCtrHasUnread\"";
-               } else {
-                       $fctr_class = "class=\"feedCtrNoUnread\"";
-               }
-
-               print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
-                        (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
-
-               if (get_pref($link, "EXTENDED_FEEDLIST")) {                      
-                       $total = getFeedArticles($link, $feed_id);
-                       print "<div class=\"feedExtInfo\">
-                               <span id=\"FLUPD-$feed_id\">$last_updated ($total total) $error_notify_msg</span></div>";
-               }
-
-               print "</li>";
-
-       }
-
        function getmicrotime() {
                list($usec, $sec) = explode(" ",microtime());
                return ((float)$usec + (float)$sec);
                                $sel .= " value=\"0\"";
                        }
                        
-                       print "<input class=\"noborder\" 
+                       print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" 
                                type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
 
                }
                        $theme_path = '';
                }
 
-               return $theme_path;
+               if ($theme_path) {
+                       if (is_file("$theme_path/theme.ini")) {
+                               $ini = parse_ini_file("$theme_path/theme.ini", true);
+                               if ($ini['theme']['version'] >= THEME_VERSION_REQUIRED) {
+                                       return $theme_path;
+                               }
+                       }
+               }
+               return '';
        }
 
        function get_user_theme_options($link) {
                return '';
        }
 
+       function print_theme_includes($link) {
+
+               $t = get_user_theme_path($link);
+               $time = time();
+
+               if ($t) {
+                       print "<link rel=\"stylesheet\" type=\"text/css\" 
+                               href=\"$t/theme.css?$time \">";
+                       if (file_exists("$t/theme.js")) {
+                               print "<script type=\"text/javascript\" src=\"$t/theme.js?$time\">
+                                       </script>";
+                       }
+               }
+       }
 
        function get_all_themes() {
                $themes = glob("themes/*");
                foreach ($themes as $t) {
                        if (is_file("$t/theme.ini")) {
                                $ini = parse_ini_file("$t/theme.ini", true);
-                               if ($ini['theme']['version'] && !$ini['theme']['disabled']) {
+                               if ($ini['theme']['version'] >= THEME_VERSION_REQUIRED && 
+                                                       !$ini['theme']['disabled']) {
                                        $entry = array();
                                        $entry["path"] = $t;
                                        $entry["base"] = basename($t);
                        $cv = array("id" => $i,
                                "counter" => $count);
        
-                       if (get_pref($link, 'EXTENDED_FEEDLIST'))
-                               $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
+//                     if (get_pref($link, 'EXTENDED_FEEDLIST'))
+//                             $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
 
                        array_push($ret_arr, $cv);
                } 
                        if ($descriptions)
                                $cv["description"] = $label_name;
 
-                       if (get_pref($link, 'EXTENDED_FEEDLIST'))
-                               $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
+//                     if (get_pref($link, 'EXTENDED_FEEDLIST'))
+//                             $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
 
                        array_push($ret_arr, $cv);
                }
 
                        $has_img = feed_has_icon($id);
 
+                       if (date('Y') - date('Y', strtotime($line['last_updated'])) > 2)
+                               $last_updated = '';
+
                        $cv = array("id" => $id,
                                "updated" => $last_updated,
                                "counter" => $count,
                        if ($last_error)
                                $cv["error"] = $last_error;
 
-                       if (get_pref($link, 'EXTENDED_FEEDLIST'))
-                               $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
+//                     if (get_pref($link, 'EXTENDED_FEEDLIST'))
+//                             $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
 
                        if ($active_feed && $id == $active_feed)
                                $cv["title"] = truncate_string($line["title"], 30);
                        $auth_login = '', $auth_pass = '') {
 
                $url = fix_url($url);
-               if (!validate_feed_url($url)) return 2;
-               if (!fetch_file_contents($url)) return 5;
 
-               if (url_is_html($url)) {
-                       $feedUrls = get_feeds_from_html($url);
-                       if (count($feedUrls) == 0) {
-                               return 3;
-                       } else if (count($feedUrls) > 1) {
-                               return 4;
+               if (!$url || !validate_feed_url($url)) return 2;
+
+               $update_method = 0;
+
+               if (strpos($url, '://twitter.com') === false) {
+                       if (!fetch_file_contents($url)) return 5;
+
+                       if (url_is_html($url)) {
+                               $feedUrls = get_feeds_from_html($url);
+                               if (count($feedUrls) == 0) {
+                                       return 3;
+                               } else if (count($feedUrls) > 1) {
+                                       return 4;
+                               }
+                               //use feed url as new URL
+                               $url = key($feedUrls);
                        }
-                       //use feed url as new URL
-                       $url = key($feedUrls);
-               }
 
+                       } else {
+                               if (!fetch_twitter_rss($link, $url, $_SESSION['uid'])) 
+                                       return 5;
+
+                               $update_method = 3;
+                       }
                if ($cat_id == "0" || !$cat_id) {
                        $cat_qpart = "NULL";
                } else {
                if (db_num_rows($result) == 0) {
                        $result = db_query($link,
                                "INSERT INTO ttrss_feeds 
-                                       (owner_uid,feed_url,title,cat_id, auth_login,auth_pass) 
+                                       (owner_uid,feed_url,title,cat_id, auth_login,auth_pass,update_method
                                VALUES ('".$_SESSION["uid"]."', '$url', 
-                               '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
+                               '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass', '$update_method')");
        
                        $result = db_query($link,
                                "SELECT id FROM ttrss_feeds WHERE feed_url = '$url' 
                                        $line["id"], htmlspecialchars($line["title"]));
                }
 
-               print "<option value=\"ADD_CAT\">" .__("Add category...") . "</option>";
+#              print "<option value=\"ADD_CAT\">" .__("Add category...") . "</option>";
 
                print "</select>";
        }
                        if ($id < -10) {
                                return "images/label.png";
                        } else {
-                               return ICONS_URL . "/$id.ico";
+                               if (file_exists(ICONS_DIR . "/$id.ico")) 
+                                       return ICONS_URL . "/$id.ico";
                        }
                        break;
                }
                return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
        }
 
-       function make_init_param($param, $value) {
-               return array("param" => $param, "value" => $value);
-       }
-
        function make_init_params($link) {
                $params = array();
 
 
                foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
                        "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
-                       "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE", 
-                       "HIDE_READ_SHOWS_SPECIAL", "HIDE_FEEDLIST") as $param) {
+                       "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE", "DEFAULT_ARTICLE_LIMIT",
+                       "HIDE_READ_SHOWS_SPECIAL", "HIDE_FEEDLIST", "COMBINED_DISPLAY_MODE") as $param) {
 
                                 $params[strtolower($param)] = (int) get_pref($link, $param);
                 }
                $params["bw_limit"] = (int) $_SESSION["bw_limit"];
                $params["offline_enabled"] = (int) get_pref($link, "ENABLE_OFFLINE_READING");
 
-               $result = db_query($link, "SELECT COUNT(*) AS cf FROM
+               $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
                        ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
 
-               $num_feeds = db_fetch_result($result, 0, "cf");
+               $max_feed_id = db_fetch_result($result, 0, "mid");
+               $num_feeds = db_fetch_result($result, 0, "nf");
 
+               $params["max_feed_id"] = (int) $max_feed_id;
                $params["num_feeds"] = (int) $num_feeds;
+
                $params["collapsed_feedlist"] = (int) get_pref($link, "_COLLAPSED_FEEDLIST");
 
                return $params;
        }
 
        function make_runtime_info($link) {
-               $result = db_query($link, "SELECT COUNT(*) AS cf FROM
+               $data = array();
+
+               $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
                        ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
 
-               $num_feeds = db_fetch_result($result, 0, "cf");
+               $max_feed_id = db_fetch_result($result, 0, "mid");
+               $num_feeds = db_fetch_result($result, 0, "nf");
 
-               $data = array();
+               $data["max_feed_id"] = (int) $max_feed_id;
+               $data["num_feeds"] = (int) $num_feeds;
 
-               $data['num_feeds'] = (int) $num_feeds;
                $data['last_article_id'] = getLastArticleId($link);
                $data['cdm_expanded'] = get_pref($link, 'CDM_EXPANDED');
 
                        }
                }
 
-               if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
-                       
-                       if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
+               if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
                                $new_version_details = @check_for_update($link);
 
-                               $data['new_version_available'] = (int) $new_version_details != "";
+                               $data['new_version_available'] = (int) ($new_version_details != false);
 
                                $_SESSION["last_version_check"] = time();
-                       }
                }
 
                return $data;
                }
        }
 
-       function strip_tags_long($string, $allowed) {
-
-               $config = HTMLPurifier_Config::createDefault();
-
-               $config->set('HTML', 'Allowed', $allowed);
-               $purifier = new HTMLPurifier($config);
-
-               return $purifier->purify($string);              
-
-       }
-
-       // http://ru2.php.net/strip-tags
-
-/*     function strip_tags_long($textstring, $allowed){
-       while($textstring != strip_tags($textstring, $allowed))
-    {
-    while (strlen($textstring) != 0)
-         {
-         if (strlen($textstring) > 1024) {
-              $otherlen = 1024;
-         } else {
-              $otherlen = strlen($textstring);
-         }
-         $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
-         $safetext .= $temptext;
-         $textstring = substr_replace($textstring,'',0,$otherlen);
-         }  
-    $textstring = $safetext;
-    }
-       return $textstring;
-} */
-
-
        function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false, $site_url = false) {
+               global $purifier;
 
                if (!$owner) $owner = $_SESSION["uid"];
 
                $res = trim($str); if (!$res) return '';
 
                if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
-
-//                     $res = strip_tags_long($res, 
-//                             "<p><a><i><em><b><strong><code><pre><blockquote><br><img><ul><ol><li>");
-
-                       $res = strip_tags_long($res, 
-                               "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4");
-
+                       $res = $purifier->purify($res);
                }
 
                if (get_pref($link, "STRIP_IMAGES", $owner)) {
                        }
 
                        if (strtolower($entry->nodeName) == "a") {
-                               if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW', $owner)) {
-                                       $entry->setAttribute("target", "_blank");
-                               }
+                               $entry->setAttribute("target", "_blank");
                        }
 
                        if (strtolower($entry->nodeName) == "img" && !$br_inserted) {
        }
 
        function check_for_update($link) {
-               $releases_feed = "http://tt-rss.org/releases.rss";
-
-               if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
-                       return;
-               }
-
-               if (DEFAULT_UPDATE_METHOD == "1") {
-                       $rss = new SimplePie();
-                       $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
-                       $rss->set_feed_url($fetch_url);
-                       $rss->set_output_encoding('UTF-8');
-                       $rss->init();
-               } else {
-                       $rss = fetch_rss($releases_feed);
-               }
-
-               if ($rss) {
-
-                       if (DEFAULT_UPDATE_METHOD == "1") {
-                               $items = $rss->get_items();
-                       } else {
-                               $items = $rss->items;
-
-                               if (!$items || !is_array($items)) $items = $rss->entries;
-                               if (!$items || !is_array($items)) $items = $rss;
-                       }
+               if (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
+                       $version_url = "http://tt-rss.org/version.php?ver=" . VERSION;
 
-                       if (!is_array($items) || count($items) == 0) {
-                               return;
-                       }                       
-
-                       $latest_item = $items[0];
-
-                       if (DEFAULT_UPDATE_METHOD == "1") {
-                               $last_title = $latest_item->get_title();
-                       } else {
-                               $last_title = $latest_item["title"];
-                       }
+                       $version_data = @fetch_file_contents($version_url);
 
-                       $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
+                       if ($version_data) {
+                               $version_data = json_decode($version_data, true);
+                               if ($version_data && $version_data['version']) {        
 
-                       if (DEFAULT_UPDATE_METHOD == "1") {
-                               $release_url = sanitize_rss($link, $latest_item->get_link());
-                               $content = sanitize_rss($link, $latest_item->get_description());
-                       } else {
-                               $release_url = sanitize_rss($link, $latest_item["link"]);
-                               $content = sanitize_rss($link, $latest_item["description"]);
+                                       if (version_compare(VERSION, $version_data['version']) == -1) {
+                                               return $version_data['version'];
+                                       }
+                               }
                        }
-
-                       if (version_compare(VERSION, $latest_version) == -1) {
-                               return sprintf("New version of Tiny-Tiny RSS (%s) is available:", 
-                                       $latest_version)."<div class='milestoneDetails'>$content</div>";
-                       } else {
-                               return false;
-                       }       
                }
+               return false;
        }
 
        function markArticlesById($link, $ids, $cmode) {
                        $feed_id, $is_cat, $search, $match_on,
                        $search_mode, $view_mode) {
 
-                       print "<div class=\"headlinesSubToolbar\">";
+                       $page_prev_link = "viewFeedGoPage(-1)";
+                       $page_next_link = "viewFeedGoPage(1)";
+                       $page_first_link = "viewFeedGoPage(0)";
+
+                       $catchup_page_link = "catchupPage()";
+                       $catchup_feed_link = "catchupCurrentFeed()";
+                       $catchup_sel_link = "catchupSelection()";
+
+                       $archive_sel_link = "archiveSelection()";
+                       $delete_sel_link = "deleteSelection()";
+
+                       $sel_all_link = "selectArticles('all')";
+                       $sel_unread_link = "selectArticles('unread')";
+                       $sel_none_link = "selectArticles('none')";
+                       $sel_inv_link = "selectArticles('invert')";
+
+                       $tog_unread_link = "selectionToggleUnread()";
+                       $tog_marked_link = "selectionToggleMarked()";
+                       $tog_published_link = "selectionTogglePublished()";
+
+                       print "<div id=\"subtoolbar_main\">";
+
+                       print __('Select:')."
+                               <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
+                               <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
+                               <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
+                               <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
+
+                       print " ";
+
+                       print "<select dojoType=\"dijit.form.Select\" 
+                               onchange=\"headlineActionsChange(this)\">";
+                       print "<option value=\"false\">".__('Actions...')."</option>";
+
+                       print "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
+
+                       print "<option value=\"$tog_unread_link\">".__('Unread')."</option>
+                               <option value=\"$tog_marked_link\">".__('Starred')."</option>
+                               <option value=\"$tog_published_link\">".__('Published')."</option>";
+
+                       print "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
+
+                       print "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
+
+                       if ($feed_id != "0") {
+                               print "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
+                       } else {
+                               print "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
+                               print "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
+
+                       } 
 
-                       $page_prev_link = "javascript:viewFeedGoPage(-1)";
-                       $page_next_link = "javascript:viewFeedGoPage(1)";
-                       $page_first_link = "javascript:viewFeedGoPage(0)";
+                       print "<option value=\"emailArticle(false)\">".__('Forward by email').
+                               "</option>";
 
-                       $catchup_page_link = "javascript:catchupPage()";
-                       $catchup_feed_link = "javascript:catchupCurrentFeed()";
-                       $catchup_sel_link = "javascript:catchupSelection()";
+                       $rss_link = htmlspecialchars(get_self_url_prefix() . 
+                               "/backend.php?op=rss&id=$feed_id&is_cat=$is_cat$view_mode$search_q");
 
-                       $archive_sel_link = "javascript:archiveSelection()";
-                       $delete_sel_link = "javascript:deleteSelection()";
+                       print "<option value=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
 
-                       $sel_all_link = "javascript:selectArticles('all')";
-                       $sel_unread_link = "javascript:selectArticles('unread')";
-                       $sel_none_link = "javascript:selectArticles('none')";
-                       $sel_inv_link = "javascript:selectArticles('invert')";
+                       print "</select>";                      
 
-                       $tog_unread_link = "javascript:selectionToggleUnread()";
-                       $tog_marked_link = "javascript:selectionToggleMarked()";
-                       $tog_published_link = "javascript:selectionTogglePublished()";
+                       print "</div>";
 
                        print "<div id=\"subtoolbar_ftitle\">";
 
                        else
                                $view_mode = "&view-mode=$view_mode";
 
-                       $rss_link = htmlspecialchars(get_self_url_prefix() . 
-                               "/backend.php?op=rss&id=$feed_id&is_cat=$is_cat$view_mode$search_q");
-
-                       #print "
-                       #       <a target=\"_blank\"
-                       #               title=\"".__("View as RSS feed")."\"
-                       #               href=\"$rss_link\">
-                       #               <img class=\"noborder\" src=\"images/feed-icon-12x12.png\"></a>";
-
                        print "
                                <a href=\"#\"
                                        title=\"".__("View as RSS feed")."\"
 
                        print "</div>";
 
-                       print __('Select:')."
-                               <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
-                               <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
-                               <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
-                               <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
-
-                       print "&nbsp;&nbsp;";
-
-                       print "<span 
-                               onmouseover=\"enable_selection(false)\" 
-            onmouseout=\"enable_selection(true)\"
-                               onclick=\"toggleHeadlineActions()\" id=\"headlineActionsDrop\">".
-                               __("Actions...") . "&nbsp;&nbsp;<img width='11' height'7' 
-                               src=\"images/down_arrow.png\">
-                               </span>";
-
-                       print "<ul id=\"headlineActionsBody\" style=\"display : none\">";
-
-                       print "<li class=\"insensitive\">".__('Selection toggle:')."</li>
-                               <li onclick=\"$tog_unread_link\">&nbsp;&nbsp;".__('Unread')."</li>
-                               <li onclick=\"$tog_marked_link\">&nbsp;&nbsp;".__('Starred')."</li>
-                               <li onclick=\"$tog_published_link\">&nbsp;&nbsp;".__('Published')."</li>
-                               <li class=\"insensitive\">".__('Selection:')."</li>
-                               <li onclick=\"$catchup_sel_link\">&nbsp;&nbsp;".__('Mark as read')."</li>";
-
-//                     print "<li onclick=\"$catchup_feed_link\">&nbsp;&nbsp;".__('Entire feed').
-//                             "</li>";
-
-                       if ($feed_id != "0") {
-                               print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Archive')."</li>";
-                       } else {
-                               print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Move back')."</li>";
-                               print "<li onclick=\"$delete_sel_link\">&nbsp;&nbsp;".__('Delete')."</li>";
-
-                       } 
-
-                       print "<li onclick=\"emailArticle(false)\">&nbsp;&nbsp;".
-                               __('Forward by email')."</li>";
-
-                       //print "<li><span class=\"insensitive\">--------</span></li>";
-                       print "<li class=\"insensitive\">".__('Assign label:')."</li>";
+               }
+       
+       function outputFeedList($link, $special = true) {
 
-                       print_labels_headlines_dropdown($link, $feed_id);
+               $feedlist = array();
 
-                       print "<li class=\"insensitive\">".__('Feed:')."</li>";
-                       print "<li onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">&nbsp;&nbsp;".__('View as RSS')."</li>";
+               $enable_cats = get_pref($link, 'ENABLE_FEED_CATS');
 
-                       print "</ul>";
+               $feedlist['identifier'] = 'id';
+               $feedlist['label'] = 'name';
+               $feedlist['items'] = array();
 
-                       print "</div>";
-               }
-
-       function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true, 
-                                       $title_override = false) {
+               $owner_uid = $_SESSION["uid"];
 
-                       if (!$title_override)
-                               $tmp_category = getCategoryTitle($link, $cat_id);
-                       else
-                               $tmp_category = $title_override;
+               /* virtual feeds */
 
-                       if ($cat_id > 0) {
-                               $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
-                       } else if ($cat_id == 0 || $cat_id == -2) {
-                               $cat_unread = getCategoryUnread($link, $cat_id);
-                       }
+               if ($special) {
 
-                       if ($hidden) {
-                               $holder_style = "display:none;";
-                               $ellipsis = "…";
-                               $collapse_pic = "cat-uncollapse.png";
+                       if ($enable_cats) {
+                               $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
+                               $cat = feedlist_init_cat($link, -1, $cat_hidden);
                        } else {
-                               $holder_style = "";
-                               $ellipsis = "";
-                               $collapse_pic = "cat-collapse.png";
+                               $cat['items'] = array();
                        }
-
-                       $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
-
-                       if ($can_browse) {
-                               $browse_cat_link = "onclick=\"javascript:viewCategory($cat_id)\"";
-                               $inner_title_class = "catTitle";
+       
+                       foreach (array(-4, -3, -1, -2, 0) as $i) {
+                               array_push($cat['items'], feedlist_init_feed($link, $i));
+                       }
+       
+                       if ($enable_cats) {
+                               array_push($feedlist['items'], $cat);
                        } else {
-                               $browse_cat_link = "";
-                               $inner_title_class = "catTitleNL";
+                               $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
                        }
-
-                       $cat_class = "feedCat";
-
-                       print "<li class=\"$cat_class\" id=\"FCAT-$cat_id\">
-                               <img onclick=\"toggleCollapseCat($cat_id)\" class=\"catCollapse\"
-                                       title=\"".__('Click to collapse category')."\"
-                                       src=\"images/$collapse_pic?\"><span class=\"$inner_title_class\" 
-                                       id=\"FCATN-$cat_id\" $browse_cat_link/>$tmp_category</span>";
-
-                       print "<span id=\"FCAP-$cat_id\">";
-
-                       print " <span id=\"FCATCTR-$cat_id\" 
-                               class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
-
-                       print "</span>";
-
-                       //print "</li>";
-
-                       print "<ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
-
-       }
        
-       function outputFeedList($link, $tags = false) {
-
-               print "<ul class=\"feedList\" id=\"feedList\">";
-
-               $owner_uid = $_SESSION["uid"];
-
-               /* virtual feeds */
-
-               if (get_pref($link, 'ENABLE_FEED_CATS')) {
-
-                       $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
-
-                       printCategoryHeader($link, -1, $cat_hidden, false);
-               }
-
-               foreach (array(-4, -3, -1, -2, 0) as $i) {
-                       printFeedEntry($i, "virt", false, false, 
-                               false, $link);
-               }
-
-               if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                       print "</ul></li>";
-               }
-
-               if (!$tags) {
-
+                       $result = db_query($link, "SELECT * FROM
+                               ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
 
-                               $result = db_query($link, "SELECT * FROM
-                                       ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
-               
-                               if (db_num_rows($result) > 0) {
-                                       if (get_pref($link, 'ENABLE_FEED_CATS')) {
-
-                                               $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
-
-                                               printCategoryHeader($link, -2, $cat_hidden, true);
+                       if (db_num_rows($result) > 0) {
 
-                                       } else {
-                                               print "<li><hr></li>";
-                                       }
+                               if (get_pref($link, 'ENABLE_FEED_CATS')) {
+                                       $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
+                                       $cat = feedlist_init_cat($link, -2, $cat_hidden);
+                               } else {
+                                       $cat['items'] = array();
                                }
-               
+
                                while ($line = db_fetch_assoc($result)) {
-       
+               
                                        $label_id = -$line['id'] - 11;
                                        $count = getFeedUnread($link, $label_id);
        
-                                       printFeedEntry($label_id, 
-                                               "label", $line["caption"], 
-                                               $count, false, $link, 
-                                               false, false, false,
-                                               $line['fg_color'], $line['bg_color']);
-               
+                                       $feed = feedlist_init_feed($link, $label_id, false, $count);
+       
+                                       $feed['fg_color'] = $line['fg_color'];
+                                       $feed['bg_color'] = $line['bg_color'];
+       
+                                       array_push($cat['items'], $feed);
                                }
-
-                               if (db_num_rows($result) > 0) {
-                                       if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                                               print "</ul>";
-                                       }
-                               } 
-
-
-                       if (!get_pref($link, 'ENABLE_FEED_CATS')) {
-                               print "<li><hr></li>";
-                       }
-
-                       if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                               if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
-                                       $order_by_qpart = "order_id,category,unread DESC,title";
+               
+                               if ($enable_cats) {
+                                       array_push($feedlist['items'], $cat);
                                } else {
-                                       $order_by_qpart = "order_id,category,title";
+                                       $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
                                }
+                       }
+               }
+       
+/*             if (get_pref($link, 'ENABLE_FEED_CATS')) {
+                       if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
+                               $order_by_qpart = "order_id,category,unread DESC,title";
                        } else {
-                               if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
-                                       $order_by_qpart = "unread DESC,title";
-                               } else {                
-                                       $order_by_qpart = "title";
-                               }
+                               $order_by_qpart = "order_id,category,title";
+                       }
+               } else {
+                       if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
+                               $order_by_qpart = "unread DESC,title";
+                       } else {                
+                               $order_by_qpart = "title";
                        }
+               } */
 
-                       $age_qpart = getMaxAgeSubquery();
+               /* real feeds */
 
-                       $query = "SELECT ttrss_feeds.*,
-                               ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
-                               cat_id,last_error,
-                               ttrss_feed_categories.title AS category,
-                               ttrss_feed_categories.collapsed,
-                               value AS unread 
-                               FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
-                                       ON (ttrss_feed_categories.id = cat_id)                  
-                               LEFT JOIN ttrss_counters_cache 
-                                       ON
-                                               (ttrss_feeds.id = feed_id)
-                               WHERE 
-                                       ttrss_feeds.owner_uid = '$owner_uid'
-                               ORDER BY $order_by_qpart"; 
+               if ($enable_cats)
+                       $order_by_qpart = "ttrss_feed_categories.order_id,category,
+                               ttrss_feeds.order_id,title";
+               else
+                       $order_by_qpart = "title";
 
-                       $result = db_query($link, $query);
+               $age_qpart = getMaxAgeSubquery();
 
-                       $actid = $_REQUEST["actid"];
-       
-                       /* real feeds */
-       
-                       $lnum = 0;
-       
-                       $total_unread = 0;
+               $query = "SELECT ttrss_feeds.id, ttrss_feeds.title,
+                       ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
+                       cat_id,last_error,
+                       ttrss_feed_categories.title AS category,
+                       ttrss_feed_categories.collapsed,
+                       value AS unread 
+                       FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
+                               ON (ttrss_feed_categories.id = cat_id)                  
+                       LEFT JOIN ttrss_counters_cache 
+                               ON
+                                       (ttrss_feeds.id = feed_id)
+                       WHERE 
+                               ttrss_feeds.owner_uid = '$owner_uid'
+                       ORDER BY $order_by_qpart"; 
+
+               $result = db_query($link, $query);
+
+               $actid = $_REQUEST["actid"];
+
+               if (db_num_rows($result) > 0) {
 
                        $category = "";
        
+                       if (!$enable_cats) 
+                               $cat['items'] = array();
+                       else
+                               $cat = false;
+       
                        while ($line = db_fetch_assoc($result)) {
                        
                                $feed = htmlspecialchars(trim($line["title"]));
-
+       
                                if (!$feed) $feed = "[Untitled]";
-
+       
                                $feed_id = $line["id"];   
                                $unread = $line["unread"];
        
-                               $subop = $_REQUEST["subop"];
-
-                               $last_updated = make_local_datetime($link, $line['last_updated_noms'], 
-                                       false);
-
-                               $rtl_content = sql_bool_to_bool($line["rtl_content"]);
-
-                               if ($rtl_content) {
-                                       $rtl_tag = "dir=\"RTL\"";
-                               } else {
-                                       $rtl_tag = "";
-                               }
-
                                $cat_id = $line["cat_id"];
-
                                $tmp_category = $line["category"];
-
-                               if (!$tmp_category) {
-                                       $tmp_category = __("Uncategorized");
-                               }
-                               
-       //                      $class = ($lnum % 2) ? "even" : "odd";
-
-                               if ($line["last_error"]) {
-                                       $class = "error";
-                               } else {
-                                       $class = "feed";
-                               }
+                               if (!$tmp_category) $tmp_category = __("Uncategorized");
        
-                               if ($actid == $feed_id) {
-                                       $class .= "Selected";
-                               }
-       
-                               $total_unread += $unread;
-
-                               if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
-                               
-                                       if ($category) {
-                                               print "</ul></li>";
-                                       }
-                               
+                               if ($category != $tmp_category && $enable_cats) {
+               
                                        $category = $tmp_category;
-
+       
                                        $collapsed = sql_bool_to_bool($line["collapsed"]);
-
+       
                                        // workaround for NULL category
                                        if ($category == __("Uncategorized")) {
                                                $collapsed = get_pref($link, "_COLLAPSED_UNCAT");
                                        }
-
-                                       $cat_id = (int) $cat_id;
-
-                                       printCategoryHeader($link, $cat_id, $collapsed, true);
-
-                               }
        
-                               printFeedEntry($feed_id, $class, $feed, $unread, 
-                                       false, $link, $rtl_content, 
-                                       $last_updated, $line["last_error"]);
+                                       if ($cat) array_push($feedlist['items'], $cat);
        
-                               ++$lnum;
-                       }
-
-                       if (db_num_rows($result) == 0) {
-
-                               if (!get_pref($link, 'ENABLE_FEED_CATS')) {
-                                       print "<li style='text-align : center'><a href=\"#\"
-                                         onclick=\"quickAddFeed()\">".
-                                               __('Subscribe to feed...')."</a></li>";
-                               } else {
-                                       printCategoryHeader($link, -1, false, false, "Feeds");
-
-                                       print "<li><a href=\"#\"
-                                         onclick=\"quickAddFeed()\">".
-                                               __('Subscribe to feed...')."</a></li>";
-
-                                       print "</ul>";
+                                       $cat = feedlist_init_cat($link, $cat_id, $collapsed);
                                }
-                       }
-
-               } else {
-
-                       // tags
-
-/*                     $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
-                               FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
-                               post_int_id = ttrss_user_entries.int_id AND 
-                               unread = true AND ref_id = ttrss_entries.id
-                               AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name       
-                       UNION
-                               select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
-                       ORDER BY tag_name"); */
-
-                       if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                               print "<li class=\"feedCat\">".__('Tags')."</li>";
-                               print "<ul class=\"feedCatList\">";
-                       }
-
-                       $age_qpart = getMaxAgeSubquery();
-
-                       $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id) 
-                               FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id 
-                                       AND ref_id = id AND $age_qpart
-                                       AND unread = true)) AS count FROM ttrss_tags 
-                                       WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name 
-                                       ORDER BY count DESC LIMIT 50");
-
-                       $tags = array();
-       
-                       while ($line = db_fetch_assoc($result)) {
-                               $tags[$line["tag_name"]] += $line["count"];
-                       }
-       
-                       foreach (array_keys($tags) as $tag) {
        
-                               $unread = $tags[$tag];
-                               $class = "tag";
-
-                               printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
+                               $updated = make_local_datetime($link, $line["updated_noms"], false);    
        
-                       } 
-
-                       if (db_num_rows($result) == 0) {
-                               print "<li>No tags to display.</li>";
+                               array_push($cat['items'], feedlist_init_feed($link, $feed_id, 
+                                       $feed, $unread, $line['last_error'], $updated));
                        }
-
-                       if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                               print "</ul>";
+       
+                       if ($enable_cats) {
+                               array_push($feedlist['items'], $cat);
+                       } else { 
+                               $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
                        }
 
                }
 
-               print "</ul>";
-
+               return $feedlist;
        }
 
        function get_article_tags($link, $id, $owner_uid = 0) {
                        $line = db_fetch_assoc($result);
 
                        if ($line["icon_url"]) {
-                               $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
+                               $feed_icon = "<img src=\"" . $line["icon_url"] . "\">";
                        } else {
                                $feed_icon = "&nbsp;";
                        }
                                        </head><body>";
                        }
 
+                       print "<div id=\"PTITLE-$id\" style=\"display : none\">" . 
+                               truncate_string(strip_tags($line['title']), 15) . "</div>";
 
-                       print "<div class=\"postReply\">";
-                       print "<div class=\"postHeader\">";
+                       print "<div class=\"postReply\" id=\"POST-$id\">";
+
+                       /* print "<div dojoType=\"dijit.Menu\" style=\"display: none;\" 
+                               targetNodeIds=\"POSTHDR-$id\">";
+                       print "<div onclick=\"postOpenInNewTab(event, $id)\" 
+                               dojoType=\"dijit.MenuItem\">".__('View in a new tab')."</div>";
+                       print "<div dojoType=\"dijit.MenuSeparator\"></div>";
+                       print "<div onclick=\"openArticleInNewWindow($id)\" 
+                               dojoType=\"dijit.MenuItem\">".__('Open original article')."</div>";
+                       print "</div>"; */
+
+                       print "<div onclick=\"return postClicked(event, $id)\"
+                               class=\"postHeader\" id=\"POSTHDR-$id\">";
 
                        $entry_author = $line["author"];
 
                        print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
 
                        if ($line["link"]) {
-                               print "<div clear='both'><a target='_blank' href=\"" . $line["link"] . "\">" . 
-                                       $line["title"] . "</a><span class='author'>$entry_author</span></div>";
+                               print "<div clear='both'><a target='_blank' href=\"" . 
+                                       $line["link"] . "\">" . 
+                                       $line["title"] . "<span class='author'>$entry_author</span></a></div>";
                        } else {
                                print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
                        }
 
                                print "<img src=\"".theme_image($link, 'images/art-zoom.png')."\" 
                                                class='tagsPic' style=\"cursor : pointer\"
-                                               onclick=\"zoomToArticle($id)\"
-                                               alt='Zoom' title='".__('Show article summary in new window')."'>";
+                                               onclick=\"postOpenInNewTab(event, $id)\"
+                                               alt='Zoom' title='".__('Open article in new tab')."'>";
 
                                $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
 
                                                alt='Zoom' title='".__('Forward by email')."'>";
                                }
 
+                               print "<img src=\"".theme_image($link, 'images/digest_checkbox.png')."\" 
+                                               class='tagsPic' style=\"cursor : pointer\"
+                                               onclick=\"closeArticlePanel($id)\"
+                                               alt='Zoom' title='".__('Close this panel')."'>";
+
                        } else {
                                $tags_str = strip_tags($tags_str);
                                print "<span id=\"ATSTR-$id\">$tags_str</span>";
                        print_article_enclosures($link, $id, $always_display_enclosures, 
                                $article_content);
 
+                       $short_title = truncate_string(strip_tags($line['title']), 90);
+
+                       print "<br/><a href=\"http://twitter.com/share\" 
+                               class=\"twitter-share-button\" 
+                               data-text=\"$short_title\"
+                               data-url=\"".htmlspecialchars($line["link"])."\" 
+                               data-count=\"horizontal\">Tweet</a>";
+
                        print "</div>";
 
                        print "</div>";
 
                /// STOP //////////////////////////////////////////////////////////////////////////////////
 
+               print "<toolbar><![CDATA[";
+
                if (!$offset) {
-                       print "<div id=\"headlinesContainer\" $rtl_tag>";
+//                     print "<div id=\"headlinesContainer\" $rtl_tag>";
 
                        if (!$result) {
                                print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
                                print_headline_subtoolbar($link, $feed_site_url, $feed_title,
                                        $feed, $cat_view, $search, $match_on, $search_mode, $view_mode);
 
-                               print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
+//                             print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
 
                        }
                }
 
+               print "]]></toolbar><content><![CDATA[";
+
                $headlines_count = db_num_rows($result);
 
                if (db_num_rows($result) > 0) {
 
-#                      print "\{$offset}";
-
-                       if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
-                               print "<table class=\"headlinesList\" id=\"headlinesList\" 
-                                       cellspacing=\"0\">";
-                       }
-
                        $lnum = $limit*$offset;
 
                        $num_unread = 0;
                                }
        
                                if ($line["unread"] == "t" || $line["unread"] == "1") {
-                                       $class .= "Unread";
+                                       $class .= " Unread";
                                        ++$num_unread;
                                        $is_unread = true;
                                } else {
                                if ($has_feed_icon) {
                                        $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
                                } else {
-                                       //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
-                                       $feed_icon_img = "";
+                                       $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/feed-icon-12x12.png\" alt=\"\">";
                                }
 
                                if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
 
                                                        $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
 
-                                                       print "<tr class='feedTitle'><td colspan='7'>".
+                                                       print "<div class='cdmFeedTitle'>".
                                                                "<div style=\"float : right\">$feed_icon_img</div>".
                                                                "<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
-                                                               $line["feed_title"]."</a> $vf_catchup_link</td></tr>";
+                                                               $line["feed_title"]."</a> $vf_catchup_link</div>";
+
                                                }
                                        }
 
                                        $mouseover_attrs = "onmouseover='postMouseIn($id)' 
                                                onmouseout='postMouseOut($id)'";
 
-                                       print "<tr class='$class' id='RROW-$id' $mouseover_attrs>";
-               
-                                       print "<td class='hlUpdPic'>$update_pic</td>";
-               
-                                       print "<td class='hlSelectRow'>
-                                               <input type=\"checkbox\" onclick=\"tSR(this)\"
-                                                       id=\"RCHK-$id\">
-                                               </td>";
+                                       print "<div class='$class' id='RROW-$id' $mouseover_attrs>";
+
+                                       print "<div class='hlUpdPic'>$update_pic</div>";
+
+                                       print "<div class='hlLeft'>";
+
+                                       print "<input type=\"checkbox\" onclick=\"tSR(this)\"
+                                                       id=\"RCHK-$id\">";
                
-                                       print "<td class='hlMarkedPic'>$marked_pic</td>";
-                                       print "<td class='hlMarkedPic'>$published_pic</td>";
+                                       print "$marked_pic";
+                                       print "$published_pic";
 
-                                       print "<td onclick='return hlClicked(event,$id)' 
-                                               class='hlContent$hlc_suffix' valign='middle' id='HLC-$id'>";
+                                       print "</div>";
 
+                                       print "<div onclick='return hlClicked(event, $id)' 
+                                               class=\"hlTitle\"><span class='hlContent$hlc_suffix'>";
                                        print "<a id=\"RTITLE-$id\" 
                                                href=\"" . htmlspecialchars($line["link"]) . "\"
-                                               onclick=\"return false\">" .
+                                               onclick=\"return false;\">" .
                                                $line["title"];
 
                                        if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
                                                }
                                        }
 
-                                       print "</a>";
+                                       print "</a></span>";
 
                                        print $labels_str;
 
                                                }
                                        } */
 
-                                       print "</td>";
+                                       print "</div>";
 
-               
-                                       print "<td class=\"hlUpdated\" 
-                                               onclick='return hlClicked(event,$id)'><nobr>$updated_fmt&nbsp;
-                                       </nobr></td>";
 
-                                       print "<td class='hlMarkedPic'>$score_pic</td>";
 
-                                       if (@$line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
-                                               print "<td onclick=\"viewfeed($feed_id)\" 
-                                                       title=\"".htmlspecialchars($line['feed_title'])."\"
-                                                       class=\"hlFeedIcon\">$feed_icon_img</td>";
+                                       print "<div class=\"hlRight\">";                                        
+                                       print "<span class=\"hlUpdated\">$updated_fmt</span>";
+                                       print $score_pic;
+
+                                       if ($line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
+
+                                               print "<span onclick=\"viewfeed($feed_id)\" 
+                                                       title=\"".htmlspecialchars($line['feed_title'])."\">
+                                                       $feed_icon_img<span>";
                                        }
 
-                                       print "</tr>";
+                                       print "</div>";
+                                       print "</div>";
 
                                } else {
 
                                                }
                                        }
 
-                                       if ($is_unread) {
-                                               $add_class = "Unread";
-                                       } else {
-                                               $add_class = "";
-                                       }       
-
                                        $expand_cdm = get_pref($link, 'CDM_EXPANDED');
 
                                        $mouseover_attrs = "onmouseover='postMouseIn($id)' 
                                                onmouseout='postMouseOut($id)'";
 
                                        print "<div class=\"$class\" 
-                                               id=\"RROW-$id\"                                         
-                                               $mouseover_attrs'>";
+                                               id=\"RROW-$id\" $mouseover_attrs'>";
 
                                        print "<div class=\"cdmHeader\">";
 
                                        print "<div style='float : right'>";
                                        print "<span class='updated'>$updated_fmt</span>";
-                                       print "$marked_pic";
-                                       print "$published_pic";
                                        print "$score_pic";
 
                                        if (!get_pref($link, "VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
                                                        title=\"".htmlspecialchars($line["feed_title"])."\"
                                                        onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
                                        }
+                                       print "<div class=\"updPic\">$update_pic</div>";
+
                                        print "</div>";
-       
+                               
                                        print "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this, 
-                                                       'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\"/>";
+                                                       'RROW-$id')\" id=\"RCHK-$id\"/>";
+
+                                       print "$marked_pic";
+                                       print "$published_pic";
 
                                        print "<span id=\"RTITLE-$id\" 
-                                               onclick=\"return cdmExpandArticle($id)\"
+                                               onclick=\"return cdmClicked(event, $id);\"
                                                class=\"titleWrap$hlc_suffix\">
                                                <a class=\"title\"
-                                               target=\"_blank\" href=\"".$line["link"]."\">".$line["title"]."</a>
-                                               </span>";
+                                               target=\"_blank\" href=\"".
+                                               htmlspecialchars($line["link"])."\">".$line["title"].
+                                               " $entry_author</a>";
 
                                        print $labels_str;
 
                                                $excerpt_hidden = "style=\"display : none\"";
 
                                        print "<span $excerpt_hidden
-                                               onclick=\"return cdmExpandArticle($id)\"
                                                id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
 
+                                       print "</span>";
+
                                        print "</div>";
 
                                        print "<div class=\"cdmContent\" $content_hidden
                                                }
                                        }
 
-                                       $article_content = sanitize_rss($link, $line["content_preview"], 
-                                               false, false, $feed_site_url);
+                                       if ($expand_cdm) {
+                                               $article_content = sanitize_rss($link, $line["content_preview"], 
+                                                       false, false, $feed_site_url);
 
-                                       if (!$article_content) $article_content = "&nbsp;";
+                                               if (!$article_content) $article_content = "&nbsp;";
+                                       } else {
+                                               $article_content = '';
+                                       }
 
                                        print "<div id=\"POSTNOTE-$id\">";
                                        if ($line['note']) {
                                        }
                                        print "</div>";
 
-                                       print $article_content;
+                                       print "<span id=\"CWRAP-$id\">$article_content</span>";
 
                                        $tmp_result = db_query($link, "SELECT always_display_enclosures FROM
                                                ttrss_feeds WHERE id = ".
                                        print_article_enclosures($link, $id, $always_display_enclosures,
                                                $article_content);
 
+                                       $short_title = truncate_string(
+                                               strip_tags($line['title']), 90);
+
+                                       print "<br/><a href=\"http://twitter.com/share\" 
+                                               class=\"twitter-share-button\" 
+                                               data-text=\"$short_title\"
+                                               data-url=\"".htmlspecialchars($line["link"])."\" 
+                                               data-count=\"horizontal\">Tweet</a>";
+
                                        print "</div>";
 
                                        print "<div class=\"cdmFooter\">";
                                        print "<div style=\"float : right\">";
 
                                        print "<img src=\"images/art-zoom.png\" 
-                                               onclick=\"zoomToArticle($id)\"
+                                               onclick=\"zoomToArticle(event, $id)\"
                                                style=\"cursor : pointer\"
                                                alt='Zoom' 
-                                               title='".__('Show article summary in new window')."'>";
+                                               title='".__('Open article in new tab')."'>";
 
                                        if (DIGEST_ENABLE) {
                                                print "<img src=\"".theme_image($link, 'images/art-email.png')."\" 
                                ++$lnum;
                        } 
 
-                       if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {                    
-                               print "</table>";
-                       }
-
                } else {
                        $message = "";
 
                        }
                }
 
-               if (!$offset) {
-                       if ($headlines_count > 0) print "</div>";
-                       print "</div>";
-               }
+#              if (!$offset) {
+#                      if ($headlines_count > 0) print "</div>";
+#                      print "</div>";
+#              }
+
+               print "]]></content>";
 
                return array($topmost_article_ids, $headlines_count, $feed, $disable_cache, $vgroup_last_feed);
        }
                // Send feed digests by email if needed.
                if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
 
-               purge_orphans($link);
-
        } // function update_daemon_common
 
        function sanitize_article_content($text) {
        }
 
        function print_labels_headlines_dropdown($link, $feed_id) {
-               print "<li onclick=\"javascript:addLabel()\">
-                       &nbsp;&nbsp;".__("Create label...")."</li>";
+               print "<option value=\"addLabel()\">".__("Create label...")."</option>";
 
                $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
                        owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
                        $id = $line["id"];
 
                        if ($feed_id < -10 && $feed_id == -11-$label_id) {
-                               print "<li id=\"LHDL-$id\" 
-                                       onclick=\"javascript:selectionRemoveLabel($label_id)\">
-                                       &nbsp;&nbsp;$label_caption ".__('(remove)')."</li>";
+                               print "<option id=\"LHDL-$id\" 
+                                       value=\"selectionRemoveLabel($label_id)\">".
+                                       __('Remove:') . " $label_caption</option>";
                        } else {                                        
-                               print "<li id=\"LHDL-$id\" 
-                                       onclick=\"javascript:selectionAssignLabel($label_id)\">
-                                       &nbsp;&nbsp;$label_caption</li>";
+                               print "<option id=\"LHDL-$id\" 
+                                       value=\"selectionAssignLabel($label_id)\">".
+                                       __('Assign:') . " $label_caption</option>";
                        }
                }
        }
                return $str;
        }
 
-       function toggle_collapse_cat($link, $cat_id) {
+       function toggle_collapse_cat($link, $cat_id, $mode) {
                if ($cat_id > 0) {
+                       $mode = bool_to_sql_bool($mode);
+
                        db_query($link, "UPDATE ttrss_feed_categories SET
-                               collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " . 
+                               collapsed = $mode WHERE id = '$cat_id' AND owner_uid = " . 
                                $_SESSION["uid"]);
                } else {
                        $pref_name = '';
                        }
 
                        if ($pref_name) {
-                               if (get_pref($link, $pref_name)) {
-                                       set_pref($link, $pref_name, 'false');
-                               } else {
+                               if ($mode) {
                                        set_pref($link, $pref_name, 'true');
+                               } else {
+                                       set_pref($link, $pref_name, 'false');
                                }
                        }
                }
                if (strpos($url, '/', strpos($url, ':') + 3) === false) {
                        $url .= '/';
                }
-               return $url;
+
+               if ($url != "http:///")
+                       return $url;
+               else
+                       return '';
        }
 
        function validate_feed_url($url) {
        function generate_dashboard_feed($link) {
                print "<headlines id=\"-5\" is_cat=\"\">";
 
-               print '<![CDATA[<div id="headlinesContainer">';
+               print "<toolbar><![CDATA[]]></toolbar>";
+
+               print '<content><![CDATA[';
 
                print "<div class='whiteBox'>".__('No feed selected.');
 
                }
                print "</span></p>";
 
-               print "</div>]]>";
+               print "]]></content>";
                print "</headlines>";
 
                print "<headlines-info><![CDATA[";
                return true;
        }
 
-       function print_label_select($link, $name, $value, $style = "") {
+       function print_label_select($link, $name, $value, $attributes = "") {
 
                $result = db_query($link, "SELECT caption FROM ttrss_labels2
                        WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
 
                print "<select default=\"$value\" name=\"" . htmlspecialchars($name) . 
-                       "\" style=\"$style\" onchange=\"labelSelectOnChange(this)\" >";
+                       "\" $attributes onchange=\"labelSelectOnChange(this)\" >";
 
                while ($line = db_fetch_assoc($result)) {
 
                        $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
 
-                       print "<option $issel>" . htmlspecialchars($line["caption"]) . "</option>";
+                       print "<option value=\"".htmlspecialchars($line["caption"])."\"
+                               $issel>" . htmlspecialchars($line["caption"]) . "</option>";
 
                }
 
-               print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
+#              print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
 
                print "</select>";
 
                return $ids;
        }
 
+       function cleanup_tags($link, $days = 14, $limit = 1000) {
+
+               if (DB_TYPE == "pgsql") {
+                       $interval_query = "date_updated < NOW() - INTERVAL '$days days'";
+               } else if (DB_TYPE == "mysql") {
+                       $interval_query = "date_updated < DATE_SUB(NOW(), INTERVAL $days DAY)";
+               }
+
+               $tags_deleted = 0;
+
+               while ($limit > 0) {
+                       $limit_part = 500;
+
+                       $query = "SELECT ttrss_tags.id AS id 
+                               FROM ttrss_tags, ttrss_user_entries, ttrss_entries 
+                               WHERE post_int_id = int_id AND $interval_query AND
+                               ref_id = ttrss_entries.id AND tag_cache != '' LIMIT $limit_part";
+       
+                       $result = db_query($link, $query);
+
+                       $ids = array();
+
+                       while ($line = db_fetch_assoc($result)) {
+                               array_push($ids, $line['id']);
+                       }
+
+                       if (count($ids) > 0) {
+                               $ids = join(",", $ids);
+                               print ".";
+
+                               $tmp_result = db_query($link, "DELETE FROM ttrss_tags WHERE id IN ($ids)");
+                               $tags_deleted += db_affected_rows($link, $tmp_result);
+                       } else {
+                               break;
+                       }
+
+                       $limit -= $limit_part;
+               }
+
+               print "\n";
+
+               return $tags_deleted;
+       }
+
+       function feedlist_init_cat($link, $cat_id, $hidden = false) {
+               $obj = array();
+               $cat_id = (int) $cat_id;
+
+               if ($cat_id > 0) {
+                       $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
+               } else if ($cat_id == 0 || $cat_id == -2) {
+                       $cat_unread = getCategoryUnread($link, $cat_id);
+               }
+
+               $obj['id'] = 'CAT:' . $cat_id;
+               $obj['items'] = array();
+               $obj['name'] = getCategoryTitle($link, $cat_id);
+               $obj['type'] = 'feed';
+               $obj['unread'] = (int) $cat_unread;
+               $obj['hidden'] = $hidden;
+               $obj['bare_id'] = $cat_id;
+
+               return $obj;
+       }
+
+       function feedlist_init_feed($link, $feed_id, $title = false, $unread = false, $error = '', $updated = '') {
+               $obj = array();
+               $feed_id = (int) $feed_id;
+
+               if (!$title) 
+                       $title = getFeedTitle($link, $feed_id, false);
+
+               if ($unread === false)
+                       $unread = getFeedUnread($link, $feed_id, false);
+
+               $obj['id'] = 'FEED:' . $feed_id;
+               $obj['name'] = $title;
+               $obj['unread'] = (int) $unread;
+               $obj['type'] = 'feed';
+               $obj['error'] = $error;
+               $obj['updated'] = $updated;
+               $obj['icon'] = getFeedIcon($feed_id);
+               $obj['bare_id'] = $feed_id;
+
+               return $obj;
+       }
+
+       function fetch_twitter_rss($link, $url, $owner_uid) {
+               $result = db_query($link, "SELECT twitter_oauth FROM ttrss_users 
+                       WHERE id = $owner_uid");
+
+               $access_token = json_decode(db_fetch_result($result, 0, 'twitter_oauth'), true);
+
+               if ($access_token) {
+       
+                       /* Create a TwitterOauth object with consumer/user tokens. */
+                       $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);
+       
+                       /* If method is set change API call made. Test is called by default. */
+                       $content = $connection->get($url);
+
+                       $rss = new MagpieRSS($content, MAGPIE_OUTPUT_ENCODING, 
+                               MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING );
+
+                       return $rss;
+               } else {
+                       return false;
+               }
+       }
+
 ?>