normalize title in front pages, fix filter query in update process

master
Andrew Dolgov 19 years ago
parent 918e60e313
commit 52db9978a7

@ -380,7 +380,7 @@
$result = db_query($link, "SELECT reg_exp, $result = db_query($link, "SELECT reg_exp,
ttrss_filter_types.name AS name, 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 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
enabled = true AND enabled = true AND
owner_uid = $owner_uid AND owner_uid = $owner_uid AND

@ -134,7 +134,7 @@ window.onload = init;
</td> </td>
</tr><tr> </tr><tr>
<td align="center" class="loginBottom"> <td align="center" class="loginBottom">
<a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> &copy; 2005-2006 Andrew Dolgov <a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> &copy; 2005-2006 Andrew Dolgov
<?php if (WEB_DEMO_MODE) { ?> <?php if (WEB_DEMO_MODE) { ?>
<br>Running in demo mode, some functionality is disabled. <br>Running in demo mode, some functionality is disabled.
<?php } ?> <?php } ?>

@ -155,7 +155,7 @@ window.onload = init;
<?php if (get_pref($link, 'DISPLAY_FOOTER')) { ?> <?php if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
<tr> <tr>
<td class="footer" colspan="2"> <td class="footer" colspan="2">
<a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov <a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov
<?php if (WEB_DEMO_MODE) { ?> <?php if (WEB_DEMO_MODE) { ?>
<br>Running in demo mode, some functionality is disabled. <br>Running in demo mode, some functionality is disabled.
<?php } ?> <?php } ?>

@ -62,11 +62,11 @@ table.main td.footer {
background-position : top left; background-position : top left;
background-repeat : repeat-x; background-repeat : repeat-x;
background-color : white; background-color : white;
color : black; color : gray;
} }
table.main td.footer a { table.main td.footer a {
color : black; color : gray;
} }
table.main td.footer a:hover { table.main td.footer a:hover {
@ -1198,7 +1198,11 @@ table.loginForm2 .loginBottom {
} }
table.loginForm2 .loginBottom a { table.loginForm2 .loginBottom a {
color : #909090; color : gray;
}
table.loginForm2 .loginBottom a:hover {
color : #4684ff;
} }
table.loginForm2 .loginError { table.loginForm2 .loginError {
@ -1210,4 +1214,3 @@ table.loginForm2 .innerLoginCell {
padding-top : 0.5em; padding-top : 0.5em;
} }

@ -186,6 +186,8 @@ function scheduleFeedUpdate(force) {
xmlhttp.abort(); xmlhttp.abort();
} }
debug("REFETCH query: " + query_str);
if (xmlhttp_ready(xmlhttp)) { if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query_str, true); xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=refetch_callback; xmlhttp.onreadystatechange=refetch_callback;
@ -538,7 +540,7 @@ function toggleDispRead() {
function parse_runtime_info(elem) { function parse_runtime_info(elem) {
var param = elem.firstChild; var param = elem.firstChild;
debug("parse_runtime_info"); debug("parse_runtime_info: " + param);
while (param) { while (param) {
var k = param.getAttribute("key"); var k = param.getAttribute("key");

@ -251,7 +251,7 @@ window.onload = init;
<?php if (get_pref($link, 'DISPLAY_FOOTER')) { ?> <?php if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
<tr> <tr>
<td colspan="2" class="footer" id="mainFooter"> <td colspan="2" class="footer" id="mainFooter">
<a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov <a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov
<?php if (WEB_DEMO_MODE) { ?> <?php if (WEB_DEMO_MODE) { ?>
<br>Running in demo mode, some functionality is disabled. <br>Running in demo mode, some functionality is disabled.
<?php } ?> <?php } ?>

Loading…
Cancel
Save