summaryrefslogtreecommitdiff
path: root/modules/backend-rpc.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-02-03 15:28:37 +0300
committerAndrew Dolgov <[email protected]>2009-02-03 15:28:37 +0300
commit87b16a0a6156e90f549f13f59e657ff03a33a7e4 (patch)
tree3a6cef1229645b9a24b6a4e72ba2b63f7934581a /modules/backend-rpc.php
parentd92d7f02ada5a6f7fbc39ae0de6811624724da29 (diff)
add dialog to download articles for offline reading; start implementation
Diffstat (limited to 'modules/backend-rpc.php')
-rw-r--r--modules/backend-rpc.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php
index 04e2858ca..55ab73a20 100644
--- a/modules/backend-rpc.php
+++ b/modules/backend-rpc.php
@@ -514,6 +514,34 @@
return;
}
+ if ($subop == "download") {
+ $stage = (int) $_REQUEST["stage"];
+
+ print "<rpc-reply>";
+
+ if ($stage == 0) {
+ print "<feeds>";
+
+ $reply = array();
+
+ $result = db_query($link, "SELECT id, title FROM
+ ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"]);
+
+ while ($line = db_fetch_assoc($result)) {
+ print "<feed id=\"".$line["id"]."\"><![CDATA[";
+ print $line["title"];
+ print "]]></feed>";
+ }
+
+ print "</feeds>";
+
+ }
+
+ print "</rpc-reply>";
+
+ return;
+ }
+
print "<rpc-reply><error>Unknown method: $subop</error></rpc-reply>";
}
?>