1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 20:11:29 +00:00

rework the way published feed is displayed; css cleanups

This commit is contained in:
Andrew Dolgov
2010-01-12 19:46:07 +03:00
parent 58b9d4759e
commit cf9dc03257
4 changed files with 68 additions and 228 deletions

View File

@@ -1404,12 +1404,17 @@
print "<h3>" . __("Firefox Integration") . "</h3>";
print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.');
print "</p><p> <a class='visibleLinkB' href='javascript:window.navigator.registerContentHandler(" .
print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.') . "</p>";
print "<p";
print "<button onclick='window.navigator.registerContentHandler(" .
"\"application/vnd.mozilla.maybe.feed\", " .
"\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
__('Click here to register this site as a feed reader.') . "</a></p>";
__('Click here to register this site as a feed reader.') .
"</button>";
print "</p>";
print "<h3>".__("Published articles")."</h3>";
@@ -1419,12 +1424,9 @@
print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
$url_path = article_publish_url($link);
print "<button onclick=\"return displayDlg('pubUrl')\">".
__('Display URL')."</button> ";
print "<p><a class=\"visibleLinkB\" id=\"pubGenAddress\" target=\"_blank\" href=\"$url_path\">".__("Link to published articles feed.")."</a></p>";
print "<button onclick=\"return pubRegenKey()\">".
__('Generate another link')."</button>";
}