]> git.wh0rd.org - tt-rss.git/commitdiff
further updates to xml import ui
authorAndrew Dolgov <fox@madoka.spb.ru>
Fri, 2 Dec 2005 08:24:59 +0000 (09:24 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Fri, 2 Dec 2005 08:24:59 +0000 (09:24 +0100)
xml-import.php

index 4b1cd1bc1490abdba8a61635efa904d15dd3404e..d5081d64f7939050b103f5895a7162f36bffef0a 100644 (file)
@@ -34,7 +34,7 @@
 
        function import_article($link, $data) {
 
-               print "Processing article <b>".$data["title"].
+               print "<p>Article: <b>".$data["title"].
                "</b> (".$data["feed_title"].")<br>";
 
                $owner_uid = $_SESSION["uid"];
@@ -55,7 +55,7 @@
 
                if (db_num_rows($result) == 0) {
 
-                       print "Not found, adding base entry...<br>";
+                       print "Adding base entry...<br>";
 
                        $entry_title = db_escape_string($data["title"]);
                        $entry_guid = db_escape_string($data["guid"]);
 
        <h1><img src="images/ttrss_logo.png"></h1>
 
-       <? if ($_REQUEST["op"] != "Import") { ?>
-
        <div class="opmlBody">
+
+       <? if ($_REQUEST["op"] != "Import") { ?>
        
        <h2>Import XMLDB</h2>
 
                                                $article_data[$child->tagname()] = $child->get_content();
                                        }
 
-                                       import_article($link, $article_data);
+                                       $is_imported = import_article($link, $article_data);
                                }
+
+                               print "<p><a class=\"button\" href=\"prefs.php\">Return to preferences</a>";
                        } else {
                                print "Error: could not parse document.";
                        }