]> git.wh0rd.org - tt-rss.git/blobdiff - functions.php
Merge branch 'master' of fakecake.org:public_html/testbox/tt-rss
[tt-rss.git] / functions.php
index ed78158676b529ee57bac7bd4f9cbfb5c0e85a92..64269aadac1ffb11bfbe84193e1b6a2c21919207 100644 (file)
@@ -15,6 +15,8 @@
                define('SUBSTRING_FOR_DATE', 'SUBSTRING');
        }
 
+       define('THEME_VERSION_REQUIRED', 1.1);
+
        /**
         * Return available translations names.
         * 
        }
 
        require_once 'db-prefs.php';
-       require_once 'compat.php';
        require_once 'errors.php';
        require_once 'version.php';
 
        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_OUTPUT_ENCODING', 'UTF-8');
        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';
 
        $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";
+       $allowed = "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4,s";
 
        $config->set('HTML', 'Allowed', $allowed);
        $purifier = new HTMLPurifier($config);
        }
 
        function fetch_file_contents($url, $type = false) {
-               if (USE_CURL_FOR_ICONS) {
+               if (USE_CURL) {
                        $ch = curl_init($url);
 
                        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
                        $favicon_url = rewrite_relative_url($url, "/favicon.ico");
 
                // Run a test to see if what we have attempted to get actually exists.
-               if(USE_CURL_FOR_ICONS || url_validate($favicon_url)) {
+               if(USE_CURL || url_validate($favicon_url)) {
                        return $favicon_url;
                } else {
                        return false;
                } 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)) {
                                                _debug("enabling image cache");
                                        }
        
-                                       $rss->set_image_handler('./image.php', 'i');
+                                       $rss->set_image_handler(get_self_url_prefix() . '/image.php', 'i');
                                }
        
                                if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
 
                $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)) {
+                               if (USE_CURL || url_validate($icon_url)) {
                                        db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
                                }
                        }
 
                        $filters = load_filters($link, $feed, $owner_uid);
 
+                       if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
+                               print_r($filters);
+                       }
+
                        if ($use_simplepie) {
                                $iterator = $rss->get_items();
                        } else {
                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;";
 
                }
        }
 
        function validate_session($link) {
-               if (SINGLE_USER_MODE) { 
-                       return true;
-               }
+               if (SINGLE_USER_MODE) return true;
 
-               if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
-                       if ($_SESSION["ip_address"]) {
-                               if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
-                                       $_SESSION["login_error_msg"] = __("Session failed to validate (incorrect IP)");
-                                       return false;
-                               }
-                       }
-               }
+               $check_ip = $_SESSION['ip_address'];
 
-               if ($_SESSION["ref_schema_version"] != get_schema_version($link, true)) {
+               switch (SESSION_CHECK_ADDRESS) {
+               case 0:
+                       $check_ip = '';
+                       break;
+               case 1:
+                       $check_ip = substr($check_ip, 0, strrpos($check_ip, '.')+1);
+                       break;
+               case 2:
+                       $check_ip = substr($check_ip, 0, strrpos($check_ip, '.'));
+                       $check_ip = substr($check_ip, 0, strrpos($check_ip, '.')+1);
+                       break;
+               };
+
+               if ($check_ip && strpos($_SERVER['REMOTE_ADDR'], $check_ip) !== 0) {
+                       $_SESSION["login_error_msg"] = 
+                               __("Session failed to validate (incorrect IP)");
                        return false;
                }
 
+               if ($_SESSION["ref_schema_version"] != get_schema_version($link, true))
+                       return false;
+
                if ($_SESSION["uid"]) {
 
                        $result = db_query($link, 
                        }
 
                        if (!$_SESSION["uid"] || !validate_session($link)) {
-                               render_login_form($link, $mobile);
-                               //header("Location: login.php");
-                               exit;
+                               if (defined('ALLOW_REMOTE_USER_AUTH') && ALLOW_REMOTE_USER_AUTH
+                                       && $_SERVER["REMOTE_USER"] && defined('AUTO_LOGIN') && AUTO_LOGIN) {
+                                   authenticate_user($link,$_SERVER['REMOTE_USER'],null);
+                                   $_SESSION["ref_schema_version"] = get_schema_version($link, true);
+                               } else {
+                                   render_login_form($link, $mobile);
+                                   //header("Location: login.php");
+                                   exit;
+                               }
                        } else {
                                /* bump login timestamp */
                                db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " . 
                }
        }
 
-       function truncate_string($str, $max_len) {
+       function truncate_string($str, $max_len, $suffix = '&hellip;') {
                if (mb_strlen($str, "utf-8") > $max_len - 3) {
-                       return mb_substr($str, 0, $max_len, "utf-8") . "&hellip;";
+                       return mb_substr($str, 0, $max_len, "utf-8") . $suffix;
                } else {
                        return $str;
                }
                        $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);
                        }
        }
 
-       function update_generic_feed($link, $feed, $cat_view, $force_update = false) {
-                       if ($cat_view) {
-
-                               if ($feed > 0) {
-                                       $cat_qpart = "cat_id = '$feed'";
-                               } else {
-                                       $cat_qpart = "cat_id IS NULL";
-                               }
-                               
-                               $tmp_result = db_query($link, "SELECT id FROM ttrss_feeds
-                                       WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
-
-                               while ($tmp_line = db_fetch_assoc($tmp_result)) {                                       
-                                       $feed_id = $tmp_line["id"];
-                                       update_rss_feed($link, $feed_id, $force_update);
-                               }
-
-                       } else {
-                               update_rss_feed($link, $feed, $force_update);
-                       }
-       }
-
        function getAllCounters($link, $omode = "flc", $active_feed = false) {
 
                if (!$omode) $omode = "flc";
                } else if ($n_feed == -2) {
                        $match_part = "published = true";
                } else if ($n_feed == -3) {
-                       $match_part = "unread = true";
+                       $match_part = "unread = true AND score >= 0";
 
                        $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
 
                        $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);
                }
                        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;
                }
 
                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", "COMBINED_DISPLAY_MODE") as $param) {
+                       "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE", "DEFAULT_ARTICLE_LIMIT",
+                       "HIDE_READ_SHOWS_SPECIAL", "COMBINED_DISPLAY_MODE") as $param) {
 
                                 $params[strtolower($param)] = (int) get_pref($link, $param);
                 }
                $params["default_view_mode"] = get_pref($link, "_DEFAULT_VIEW_MODE");
                $params["default_view_limit"] = (int) get_pref($link, "_DEFAULT_VIEW_LIMIT");
                $params["default_view_order_by"] = get_pref($link, "_DEFAULT_VIEW_ORDER_BY");
-               $params["prefs_active_tab"] = get_pref($link, "_PREFS_ACTIVE_TAB");
-               $params["infobox_disable_overlay"] = get_pref($link, "_INFOBOX_DISABLE_OVERLAY");
                $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;
                                }
 
                        } else if ($feed == -3) { // fresh virtual feed
-                               $query_strategy_part = "unread = true";
+                               $query_strategy_part = "unread = true AND score >= 0";
 
                                $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
 
        
                                $feed_kind = "Tags";
        
-                               $result = db_query($link, "SELECT
+                               $result = db_query($link, "SELECT DISTINCT
+                                       date_entered,
                                        guid,
                                        note,
                                        ttrss_entries.id as id,title,
                        $res = preg_replace('/<img[^>]+>/is', '', $res);
                }
 
+               if (strpos($res, "href=") === false)
+                       $res = rewrite_urls($res);
+
                $charset_hack = '<head>
                        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
                </head>';
                        }
 
                        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(SELF_USER_AGENT);
-                       $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 (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
+                       $version_url = "http://tt-rss.org/version.php?ver=" . VERSION;
 
-                               if (!$items || !is_array($items)) $items = $rss->entries;
-                               if (!$items || !is_array($items)) $items = $rss;
-                       }
-
-                       if (!is_array($items) || count($items) == 0) {
-                               return;
-                       }                       
+                       $version_data = @fetch_file_contents($version_url);
 
-                       $latest_item = $items[0];
-
-                       if (DEFAULT_UPDATE_METHOD == "1") {
-                               $last_title = $latest_item->get_title();
-                       } else {
-                               $last_title = $latest_item["title"];
-                       }
+                       if ($version_data) {
+                               $version_data = json_decode($version_data, true);
+                               if ($version_data && $version_data['version']) {        
 
-                       $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
-
-                       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;
+                                       }
+                               }
                        }
-
-                       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) {
 
        function print_headline_subtoolbar($link, $feed_site_url, $feed_title, 
                        $feed_id, $is_cat, $search, $match_on,
-                       $search_mode, $view_mode) {
+                       $search_mode, $view_mode, $error) {
 
-                       print "<div class=\"headlinesSubToolbar\">";
+                       $page_prev_link = "viewFeedGoPage(-1)";
+                       $page_next_link = "viewFeedGoPage(1)";
+                       $page_first_link = "viewFeedGoPage(0)";
 
-                       $page_prev_link = "javascript:viewFeedGoPage(-1)";
-                       $page_next_link = "javascript:viewFeedGoPage(1)";
-                       $page_first_link = "javascript:viewFeedGoPage(0)";
+                       $catchup_page_link = "catchupPage()";
+                       $catchup_feed_link = "catchupCurrentFeed()";
+                       $catchup_sel_link = "catchupSelection()";
 
-                       $catchup_page_link = "javascript:catchupPage()";
-                       $catchup_feed_link = "javascript:catchupCurrentFeed()";
-                       $catchup_sel_link = "javascript:catchupSelection()";
+                       $archive_sel_link = "archiveSelection()";
+                       $delete_sel_link = "deleteSelection()";
 
-                       $archive_sel_link = "javascript:archiveSelection()";
-                       $delete_sel_link = "javascript:deleteSelection()";
+                       $sel_all_link = "selectArticles('all')";
+                       $sel_unread_link = "selectArticles('unread')";
+                       $sel_none_link = "selectArticles('none')";
+                       $sel_inv_link = "selectArticles('invert')";
 
-                       $sel_all_link = "javascript:selectArticles('all')";
-                       $sel_unread_link = "javascript:selectArticles('unread')";
-                       $sel_none_link = "javascript:selectArticles('none')";
-                       $sel_inv_link = "javascript:selectArticles('invert')";
+                       $tog_unread_link = "selectionToggleUnread()";
+                       $tog_marked_link = "selectionToggleMarked()";
+                       $tog_published_link = "selectionTogglePublished()";
 
-                       $tog_unread_link = "javascript:selectionToggleUnread()";
-                       $tog_marked_link = "javascript:selectionToggleMarked()";
-                       $tog_published_link = "javascript: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>";
+
+                       } 
+
+                       print "<option value=\"emailArticle(false)\">".__('Forward by email').
+                               "</option>";
+
+                       $rss_link = htmlspecialchars(get_self_url_prefix() . 
+                               "/backend.php?op=rss&id=$feed_id&is_cat=$is_cat&view_mode=$view_mode$search_q");
+
+                       print "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
+
+                       print "<option value=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
+
+                       print "</select>";                      
+
+                       print "</div>";
 
                        print "<div id=\"subtoolbar_ftitle\">";
 
                                $target = "target=\"_blank\"";
                                print "<a title=\"".__("Visit the website")."\" $target href=\"$feed_site_url\">".
                                        truncate_string($feed_title,30)."</a>";
+
+                               if ($error) {
+                                       print " (<span class=\"error\" title=\"$error\">Error</span>)";
+                               }
+
                        } else {
                                if ($feed_id < -10) {
                                        $label_id = -11-$feed_id;
                        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')) {
+                       $result = db_query($link, "SELECT * FROM
+                               ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
 
-                       $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");
-               
-                               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"];
-                       }
+                               $updated = make_local_datetime($link, $line["updated_noms"], false);    
        
-                       foreach (array_keys($tags) as $tag) {
-       
-                               $unread = $tags[$tag];
-                               $class = "tag";
-
-                               printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
-       
-                       } 
-
-                       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) {
                        <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
        }
 
-       function format_notice($msg) {
+       function format_notice($msg, $id = "") {
                global $link;
                return "<div class=\"notice\" id=\"$id\"> 
                        <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
        }
 
-       function format_error($msg) {
+       function format_error($msg, $id = "") {
                global $link;
                return "<div class=\"error\" id=\"$id\"> 
                        <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
 
                $entry = "";
 
-               if (($ctype == __("audio/mpeg")) &&  (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {  
-                     
-                       $entry .= "<object type=\"application/x-shockwave-flash\" 
-                               data=\"extras/button/musicplayer.swf?song_url=$url\" 
-                               width=\"17\" height=\"17\"> 
-                                       <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object>";  
-               }
+               if (strpos($ctype, "audio/") === 0) {  
 
-               /*
+                       if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
+                               strpos($_SERVER['HTTP_USER_AGENT'], "Chrome") !== false ||  
+                               strpos($_SERVER['HTTP_USER_AGENT'], "Safari") !== false )) {
 
-               if (substr($ctype,0,6)=="audio/" || $ctype=="application/ogg" || $ctype=="application/x-ogg") {
-                       $entry .= "<audio controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
-                       if (($ctype == __("audio/mpeg")) && 
-                               (get_pref($link, "ENABLE_FLASH_PLAYER")) ) { 
-                               $entry .= "<span><object type=\"application/x-shockwave-flash\" data=\"extras/button/musicplayer.swf?song_url=$url\" width=\"17\" height=\"17\"> <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object></span>";
-                       }
-                       $entry .= "</audio> ";
-                       if (($ctype == __("audio/mpeg")) && 
-                               (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
-                               $entry .= "<a id='switchToFlashLink' href='#' onclick='return switchToFlash(this)'>".__('Switch to Flash Player')."</a>";       
-                               $entry .= "<script type='text/javascript'>html5AudioOrFlash('$ctype');</script>"; 
+                               $id = 'AUDIO-' . uniqid();
+
+                               $entry .= "<audio id=\"$id\"\">
+                                       <source src=\"$url\"></source>
+                                       </audio>";      
+
+                               $entry .= "<span onclick=\"player(this)\" 
+                                       title=\"".__("Click to play")."\" status=\"0\"
+                                       class=\"player\" audio-id=\"$id\">".__("Play")."</span>";
+
+                       } else {
+                    
+                               $entry .= "<object type=\"application/x-shockwave-flash\" 
+                                       data=\"extras/button/musicplayer.swf?song_url=$url\" 
+                                       width=\"17\" height=\"17\" style='float : left; margin-right : 5px;'> 
+                                       <param name=\"movie\" 
+                                               value=\"extras/button/musicplayer.swf?song_url=$url\" />
+                                       </object>";  
                        }
-               } elseif (substr($ctype,0,6)=="video/") {
-                       $entry .= "<video controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
-                       $entry .= "</video>";
-               } */
+               }
 
+               $filename = substr($url, strrpos($url, "/")+1);
 
+               $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
+                       $filename . " (" . $ctype . ")" . "</a>";
 
                return $entry;
        }
                        $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\" 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 class=\"postReply\">";
-                       print "<div class=\"postHeader\">";
+                       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' 
+                                       title=\"".htmlspecialchars($line['title'])."\"
+                                       href=\"" . 
+                                       $line["link"] . "\">" . 
+                                       truncate_string($line["title"], 100) . 
+                                       "<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);
+                               //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
 
                                print "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\" 
                                                class='tagsPic' style=\"cursor : pointer\"
-                                               onclick=\"publishWithNote($id, '$note_escaped')\"
-                                               alt='PubNote' title='".__('Publish article with a note')."'>";
+                                               onclick=\"editArticleNote($id)\"
+                                               alt='PubNote' title='".__('Edit article note')."'>";
 
                                if (DIGEST_ENABLE) {
                                        print "<img src=\"".theme_image($link, 'images/art-email.png')."\" 
                                                alt='Zoom' title='".__('Forward by email')."'>";
                                }
 
+                               if (ENABLE_TWEET_BUTTON) {
+                                       print "<img src=\"".theme_image($link, 'images/art-tweet.png')."\" 
+                                                       class='tagsPic' style=\"cursor : pointer\"
+                                                       onclick=\"tweetArticle($id)\"
+                                                       alt='Zoom' title='".__('Share on Twitter')."'>";
+                               }
+
+                               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>";
                                href=\"".htmlspecialchars($feed_site_url)."\">".
                                $feed_icon . "</a></div>";
 
-                       print "<div class=\"postContent\">";
-
-                       $article_content = sanitize_rss($link, $line["content"], false, false,
-                               $feed_site_url);
-
                        print "<div id=\"POSTNOTE-$id\">";
                                if ($line['note']) {
                                        print format_article_note($id, $line['note']);
                                }
                        print "</div>";
 
+                       print "<div class=\"postContent\">";
+
+                       $article_content = sanitize_rss($link, $line["content"], false, false,
+                               $feed_site_url);
+
                        print $article_content;
 
                        print_article_enclosures($link, $id, $always_display_enclosures, 
                        catchupArticlesById($link, $ids, $cmode);
                }
 
-               if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0 && !$cat_view) {
-                       update_generic_feed($link, $feed, $cat_view, true);
+               if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
+                       update_rss_feed($link, $feed, true);
                }
 
                if ($subop == "MarkAllRead")  {
 
                /// 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>";
 
                        if (db_num_rows($result) > 0) {
                                print_headline_subtoolbar($link, $feed_site_url, $feed_title,
-                                       $feed, $cat_view, $search, $match_on, $search_mode, $view_mode);
+                                       $feed, $cat_view, $search, $match_on, $search_mode, $view_mode, 
+                                       $last_error);
 
-                               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) {
                                }
        
                                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')) {
 
                                        print "</div>";
 
+
+
                                        print "<div class=\"hlRight\">";                                        
                                        print "<span class=\"hlUpdated\">$updated_fmt</span>";
                                        print $score_pic;
                                                }
                                        }
 
-                                       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>";
                                
                                        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>
-                                               $entry_author
-                                               </span>";
+                                               title=\"".htmlspecialchars($line['title'])."\"
+                                               target=\"_blank\" href=\"".
+                                               htmlspecialchars($line["link"])."\">".
+                                               truncate_string($line["title"], 100) . 
+                                               " $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
                                        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')."'>";
+
+                                       //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
+
+                                       print "<img src=\"images/art-pub-note.png\"
+                                               style=\"cursor : pointer\" style=\"cursor : pointer\"
+                                               onclick=\"editArticleNote($id)\"
+                                               alt='PubNote' title='".__('Edit article note')."'>";
 
                                        if (DIGEST_ENABLE) {
                                                print "<img src=\"".theme_image($link, 'images/art-email.png')."\" 
                                                        alt='Zoom' title='".__('Forward by email')."'>";
                                        }
 
-                                       $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
-
-                                       print "<img src=\"images/art-pub-note.png\"
-                                               style=\"cursor : pointer\" style=\"cursor : pointer\"
-                                               onclick=\"publishWithNote($id, '$note_escaped')\"
-                                               alt='PubNote' title='".__('Publish article with a note')."'>";
+                                       if (ENABLE_TWEET_BUTTON) {
+                                               print "<img src=\"".theme_image($link, 'images/art-tweet.png')."\" 
+                                                       class='tagsPic' style=\"cursor : pointer\"
+                                                       onclick=\"tweetArticle($id)\"
+                                                       alt='Zoom' title='".__('Share on Twitter')."'>";
+                                       }
 
                                        print "<img src=\"images/digest_checkbox.png\"
                                                style=\"cursor : pointer\" style=\"cursor : pointer\"
                        }
                }
 
-               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);
-
-               $rc = cleanup_tags($link, 14, 50000);
-
-               if ($debug) _debug("$rc uncached tags cleaned.");
-
        } // 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>";
                        }
                }
        }
 
        function format_article_note($id, $note) {
 
-               $note_escaped = htmlspecialchars($note, ENT_QUOTES);
-
-               $str = "<div class='articleNote'>";
-               $str .= $note;
-               $str .= "<div class='articleNoteOps'>";
-               $str .= "<a href=\"javascript:publishWithNote($id, '$note_escaped')\">".
-                       __('edit note')."</a>";
-               $str .= "</div>";
-               $str .= "</div>";
+               $str = "<div class='articleNote' title=\"".__('edit note')."\" 
+                       onclick=\"editArticleNote($id)\">$note</div>";
 
                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>";
 
        
                                if (!$ctype) $ctype = __("unknown type");
        
-                               $filename = substr($url, strrpos($url, "/")+1);
+#                              $filename = substr($url, strrpos($url, "/")+1);
        
                                $entry = format_inline_player($link, $url, $ctype);
        
-                               $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
-                                       $filename . " (" . $ctype . ")" . "</a>";
+#                              $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
+#                                      $filename . " (" . $ctype . ")" . "</a>";
        
                                array_push($entries_html, $entry);
        
                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;
+               }
+       }
+
+       function print_user_stylesheet($link) {
+               $value = get_pref($link, 'USER_STYLESHEET');
+
+               if ($value) {
+                       print "<style type=\"text/css\">";
+                       print str_replace("<br/>", "\n", $value);
+                       print "</style>";
+               }
+
+       }
+
+       function rewrite_urls($line) {
+               global $url_regex;
+
+               $urls = null;
+
+               $result = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i", 
+                       "<a target=\"_blank\" href=\"\\1\">\\1</a>", $line);
+
+               return $result;
+       }
+
 ?>