add nicer interface when subscribing from external source (for ff 2.0)

master
Andrew Dolgov 18 years ago
parent 07958ba138
commit aa2122d46f

@ -426,6 +426,19 @@
$feed_url = db_escape_string(trim($_GET["feed_url"]));
$cat_id = db_escape_string($_GET["cat_id"]);
$p_from = db_escape_string($_GET["from"]);
if ($p_from) {
print "<html>
<head>
<title>Tiny Tiny RSS - Subscribe to feed...</title>
<link rel=\"stylesheet\" type=\"text/css\" href=\"quicksub.css\">
</head>
<body>
<img class=\"logo\" src=\"images/ttrss_logo.png\"
alt=\"Tiny Tiny RSS\"/>
<h1>Subscribe to feed...</h1>";
}
if (subscribe_to_feed($link, $feed_url, $cat_id)) {
print "Added feed.";
@ -434,6 +447,18 @@
Feed <b>$feed_url</b> already exists in the database.
</div>";
}
if ($p_from) {
$tt_uri = 'http://' . $_SERVER['SERVER_NAME'] .
preg_replace('/backend\.php.*$/',
'tt-rss.php', $_SERVER["REQUEST_URI"]);
print "<p><a href='$tt_uri'>Return to Tiny Tiny RSS</a> or
<a href='javascript:window.close()'>close this window</a>.</p>";
print "</body></html>";
return;
}
}
}

@ -0,0 +1,21 @@
body {
margin : 1em;
}
h1 {
font-size : 14pt;
font-weight : bold;
}
a {
color : #4684ff;
text-decoration : none;
}
a:hover {
color : black;
}
img.logo {
float : right;
}
Loading…
Cancel
Save