summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-02 15:08:00 +0100
committerAndrew Dolgov <[email protected]>2007-03-02 15:08:00 +0100
commitef59e6e85fe949a3afcd42a4a9b9df42a625ace2 (patch)
tree4a86569f3b219a79ad90c6f09d7b9c255c26c362
parent75b206cb88bc029de9b5a366efa41656196de4e6 (diff)
opml/db updater tweaks
-rw-r--r--modules/opml_domdoc.php4
-rw-r--r--modules/opml_domxml.php4
-rw-r--r--opml.css57
-rw-r--r--opml.php11
-rw-r--r--update.php15
-rw-r--r--utility.css19
6 files changed, 40 insertions, 70 deletions
diff --git a/modules/opml_domdoc.php b/modules/opml_domdoc.php
index 459841022..156e46c7f 100644
--- a/modules/opml_domdoc.php
+++ b/modules/opml_domdoc.php
@@ -82,8 +82,8 @@
(title = '$feed_title' OR feed_url = '$feed_url')
AND owner_uid = '$owner_uid'");
- print "<tr><td><a href='$site_url'><b>$feed_title</b></a></b>
- (<a href=\"$feed_url\">rss</a>)</td>";
+ print "<tr><td><a target='_new' href='$site_url'><b>$feed_title</b></a></b>
+ (<a target='_new' href=\"$feed_url\">rss</a>)</td>";
if (db_num_rows($result) > 0) {
print "<td>Already imported.</td>";
diff --git a/modules/opml_domxml.php b/modules/opml_domxml.php
index 2a140f325..dabba7894 100644
--- a/modules/opml_domxml.php
+++ b/modules/opml_domxml.php
@@ -85,8 +85,8 @@
(title = '$feed_title' OR feed_url = '$feed_url')
AND owner_uid = '$owner_uid'");
- print "<tr><td><a href='$site_url'><b>$feed_title</b></a></b>
- (<a href=\"$feed_url\">rss</a>)</td>";
+ print "<tr><td><a target='_new' href='$site_url'><b>$feed_title</b></a></b>
+ (<a target='_new' href=\"$feed_url\">rss</a>)</td>";
if (db_num_rows($result) > 0) {
print "<td>"._("Already imported.")."</td>";
diff --git a/opml.css b/opml.css
deleted file mode 100644
index e6d7612b6..000000000
--- a/opml.css
+++ /dev/null
@@ -1,57 +0,0 @@
-body {
- margin : 0px;
- padding : 0px;
- background : white;
- color : black;
-}
-
-h1 {
- font-size : 16pt;
- font-weight : bold;
- border-width : 0px 0px 1px 0px;
- border-color : #88b0f0;
- border-style : solid;
- margin-top : 2em;
-}
-
-h2 {
- font-size : 14pt;
- font-weight : bold;
- border-width : 0px 0px 1px 0px;
- border-style : solid;
- border-color : #e0e0e0;
-}
-
-div.opmlBody {
- margin : 30px;
-}
-
-div.error {
- background : #fff0f0;
- border : 1px solid #c0c0c0;
- padding : 5px;
- font-size : x-small;
-}
-
-a {
- text-decoration : none;
-}
-
-a {
- color : black;
- text-decoration : none;
-}
-
-a:hover {
- color : #5050aa;
-}
-
-ul {
- list-style-type : none;
- margin : 0px;
- padding : 10px;
-}
-
-.insensitive {
- color : gray;
-}
diff --git a/opml.php b/opml.php
index b3707df75..718d47bbc 100644
--- a/opml.php
+++ b/opml.php
@@ -97,18 +97,19 @@
print "<html>
<head>
- <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
+ <link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
+ <title>OPML Utility</title>
</head>
<body>
- <div style='float : right'><img src=\"images/ttrss_logo.png\"></div>
- <h1>"._('OPML Import')."</h1>";
+ <div class=\"floatingLogo\"><img src=\"images/ttrss_logo.png\"></div>
+ <h1>"._('OPML Utility')."</h1>";
if (function_exists('domxml_open_file')) {
- print "<p class='insensitive'>Using DOMXML library</p>";
+ print "<p>Importing OPML (using DOMXML extension)...</p>";
require_once "modules/opml_domxml.php";
opml_import_domxml($link, $owner_uid);
} else {
- print "<p class='insensitive'>Using DOMDocument library (PHP5)</p>";
+ print "<p>Importing OPML (using DOMDocument extension)...</p>";
require_once "modules/opml_domdoc.php";
opml_import_domdoc($link, $owner_uid);
}
diff --git a/update.php b/update.php
index 34357f2f2..4e1eb923a 100644
--- a/update.php
+++ b/update.php
@@ -30,7 +30,7 @@
<head>
<title>Database Updater</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" type="text/css" href="update.css">
+<link rel="stylesheet" type="text/css" href="utility.css">
</head>
<body>
@@ -41,6 +41,8 @@ function confirmOP() {
}
</script>
+<div class="floatingLogo"><img src="images/ttrss_logo.png"></div>
+
<h1>Database Updater</h1>
<?php
@@ -81,7 +83,10 @@ function confirmOP() {
if ($version == $latest_version) {
print "<p>Tiny Tiny RSS database is up to date (version $version).</p>";
- print "<p><a href='tt-rss.php'>Return to Tiny Tiny RSS</a></p>";
+ print "<form method=\"GET\" action=\"tt-rss.php\">
+ <input type=\"submit\" value=\"Return to Tiny Tiny RSS\">
+ </form>";
+
return;
}
@@ -146,8 +151,10 @@ function confirmOP() {
print "<p>Finished. Performed $num_updates updates up to schema
version $version.</p>";
- print "<p><a href='tt-rss.php'>Return to Tiny Tiny RSS</a></p>";
-
+ print "<form method=\"GET\" action=\"tt-rss.php\">
+ <input type=\"submit\" value=\"Return to Tiny Tiny RSS\">
+ </form>";
+
}
?>
diff --git a/utility.css b/utility.css
index f4b9da36c..9bdb77c21 100644
--- a/utility.css
+++ b/utility.css
@@ -1,3 +1,8 @@
+body {
+ margin : 2em;
+ padding : 0em;
+}
+
p.warning {
color : red;
}
@@ -9,3 +14,17 @@ p.query {
p.insensitive {
color : gray;
}
+
+.floatingLogo {
+ float : right;
+}
+
+a {
+ color : #4684ff;
+ text-decoration : none;
+}
+
+a:hover {
+ color : black;
+}
+