diff --git a/xml-export.php b/xml-export.php
index c97b964ff..f1100d39b 100644
--- a/xml-export.php
+++ b/xml-export.php
@@ -7,11 +7,26 @@
require_once "functions.php";
require_once "db.php";
- define('SCHEMA_VERSION', 1);
-
- header("Content-Type: application/xml");
+ if ($_GET["export"]) {
+ header("Content-Type: application/xml");
+ }
?>
+ if (!$_GET["export"]) { ?>
+
+
+
+XML Export
+
+
+
+
+ } else { ?>
+
@@ -33,43 +48,96 @@
$schema_version = db_fetch_result($result, 0, "schema_version");
- if ($schema_version != SCHEMA_VERSION) {
+/* if ($schema_version != SCHEMA_VERSION) {
print "Source database schema is invalid
(got version $schema_version; expected ".SCHEMA_VERSION.")";
print "";
return;
- }
+ } */
print "$schema_version";
+ if ($schema_version > 1) {
+ $owner_uid = $_SESSION["uid"];
+ print "$owner_uid";
+ }
+
+ print "" . time() . "";
+?>
+
+
+ if ($_GET["marked"]) {
+ $marked_qpart = "AND marked = true";
+ }
+
+ if ($_GET["unread"]) {
+ $unread_qpart = "AND unread = true";
+ }
+
+ if ($schema_version == 1) {
+
+ $result = db_query($link, "SELECT
+ ttrss_entries.title AS title,
+ content,
+ marked,
+ unread,
+ updated,
+ guid,
+ link,
+ date_entered,
+ last_read,
+ comments,
+ ttrss_feeds.feed_url AS feed_url,
+ ttrss_feeds.title AS feed_title
+ FROM
+ ttrss_entries,ttrss_feeds
+ WHERE
+ feed_id = ttrss_feeds.id $marked_qpart $unread_qpart");
+
+ } else if ($schema_version == 2) {
+
+ $result = db_query($link, "SELECT
+ ttrss_entries.title AS title,
+ content,
+ marked,
+ unread,
+ updated,
+ guid,
+ link,
+ date_entered,
+ last_read,
+ comments,
+ ttrss_feeds.feed_url AS feed_url,
+ ttrss_feeds.title AS feed_title
+ FROM
+ ttrss_entries,ttrss_feeds,ttrss_user_entries
+ WHERE
+ ttrss_user_entries.owner_uid = '$owner_uid' AND
+ ref_id = ttrss_entries.id AND
+ feed_id = ttrss_feeds.id $marked_qpart $unread_qpart");
+
+ } else {
+
+ // BAD SCHEMA, NO COOKIE
+
+ print "Source database schema is invalid
+ (got version $schema_version)";
+ }
+
+ print "" . db_num_rows($result) . "";
+
?>
-
- $result = db_query($link, "SELECT
- ttrss_entries.title AS title,
- content,
- marked,
- unread,
- updated,
- guid,
- link,
- date_entered,
- last_read,
- comments,
- ttrss_feeds.feed_url AS feed_url,
- ttrss_feeds.title AS feed_title
- FROM
- ttrss_entries,ttrss_feeds
- WHERE
- feed_id = ttrss_feeds.id AND marked = true");
-
-
+
while ($line = db_fetch_assoc($result)) {
print "";
foreach (array_keys($line) as $key) {
+ $line[$key] = str_replace("", "", $line[$key]);
+
print "<$key>$key>";
}
@@ -81,3 +149,5 @@
+
+ } ?>