From: Andrew Dolgov Date: Sun, 20 Aug 2006 14:32:16 +0000 (+0100) Subject: normalize title in front pages, fix filter query in update process X-Git-Tag: 1.2.2~4 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=52db9978a7ab035b19de4a1c5587602f0c7c8ee0;p=tt-rss.git normalize title in front pages, fix filter query in update process --- diff --git a/functions.php b/functions.php index d775abb1..6b722a7a 100644 --- a/functions.php +++ b/functions.php @@ -380,7 +380,7 @@ $result = db_query($link, "SELECT reg_exp, ttrss_filter_types.name AS name, - ttrss_filter_actions.name AS action, + ttrss_filter_actions.name AS action FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE enabled = true AND owner_uid = $owner_uid AND diff --git a/login.php b/login.php index 2bf8c7e9..bf5c4ca9 100644 --- a/login.php +++ b/login.php @@ -134,7 +134,7 @@ window.onload = init; - Tiny-Tiny RSS © 2005-2006 Andrew Dolgov + Tiny Tiny RSS © 2005-2006 Andrew Dolgov
Running in demo mode, some functionality is disabled. diff --git a/prefs.php b/prefs.php index 1774bce2..110d373d 100644 --- a/prefs.php +++ b/prefs.php @@ -155,7 +155,7 @@ window.onload = init; - Tiny-Tiny RSS v © 2005-2006 Andrew Dolgov + Tiny Tiny RSS v © 2005-2006 Andrew Dolgov
Running in demo mode, some functionality is disabled. diff --git a/tt-rss.css b/tt-rss.css index bcd2712c..d2a4afad 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -62,11 +62,11 @@ table.main td.footer { background-position : top left; background-repeat : repeat-x; background-color : white; - color : black; + color : gray; } table.main td.footer a { - color : black; + color : gray; } table.main td.footer a:hover { @@ -1198,7 +1198,11 @@ table.loginForm2 .loginBottom { } table.loginForm2 .loginBottom a { - color : #909090; + color : gray; +} + +table.loginForm2 .loginBottom a:hover { + color : #4684ff; } table.loginForm2 .loginError { @@ -1210,4 +1214,3 @@ table.loginForm2 .innerLoginCell { padding-top : 0.5em; } - diff --git a/tt-rss.js b/tt-rss.js index 9f83cc5b..771114d5 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -186,6 +186,8 @@ function scheduleFeedUpdate(force) { xmlhttp.abort(); } + debug("REFETCH query: " + query_str); + if (xmlhttp_ready(xmlhttp)) { xmlhttp.open("GET", query_str, true); xmlhttp.onreadystatechange=refetch_callback; @@ -538,7 +540,7 @@ function toggleDispRead() { function parse_runtime_info(elem) { var param = elem.firstChild; - debug("parse_runtime_info"); + debug("parse_runtime_info: " + param); while (param) { var k = param.getAttribute("key"); diff --git a/tt-rss.php b/tt-rss.php index aa38a0d0..a3459bc3 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -251,7 +251,7 @@ window.onload = init; - Tiny-Tiny RSS v © 2005-2006 Andrew Dolgov + Tiny Tiny RSS v © 2005-2006 Andrew Dolgov
Running in demo mode, some functionality is disabled.