summaryrefslogtreecommitdiff
path: root/mobile/tt-rss.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-12-17 19:42:30 +0300
committerAndrew Dolgov <[email protected]>2009-12-17 19:42:30 +0300
commit3518718b25d2d7ff540040293b06b5e872f86216 (patch)
tree7d6d722ee2383f8df4f930c1ec191b7b246338dd /mobile/tt-rss.php
parentd5e71621fe571dae203094fd42d8fc9c83a2d483 (diff)
mobile: add experimental iUI based version
Diffstat (limited to 'mobile/tt-rss.php')
-rw-r--r--mobile/tt-rss.php141
1 files changed, 0 insertions, 141 deletions
diff --git a/mobile/tt-rss.php b/mobile/tt-rss.php
deleted file mode 100644
index b291f46dd..000000000
--- a/mobile/tt-rss.php
+++ /dev/null
@@ -1,141 +0,0 @@
-<?php
- error_reporting(E_ERROR | E_WARNING | E_PARSE);
-
- define('MOBILE_VERSION', true);
-
- require_once "../config.php";
- require_once "functions.php";
- require_once "../functions.php";
-
- require_once "../sessions.php";
-
- require_once "../version.php";
- require_once "../db-prefs.php";
-
- $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
-
- init_connection($link);
-
- login_sequence($link, true);
-
- /* perform various redirect-needing subops */
-
- $subop = db_escape_string($_GET["subop"]);
- $go = $_GET["go"];
-
- if ($subop == "tc" && !$go) {
-
- $cat_id = db_escape_string($_GET["id"]);
-
- if ($cat_id != 0) {
- db_query($link, "UPDATE ttrss_feed_categories SET
- collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
- $_SESSION["uid"]);
- } else {
- if ($_COOKIE["ttrss_vf_uclps"] != 1) {
- setcookie("ttrss_vf_uclps", 1);
- } else {
- setcookie("ttrss_vf_uclps", 0);
- }
- }
-
- header("Location: tt-rss.php");
- return;
- }
-
- $ts_id = db_escape_string($_GET["ts"]);
-
- if ($go == "vf" && $ts_id) {
-
- toggleMarked($link, $ts_id);
-
- $query_string = preg_replace("/&ts=[0-9]*/", "", $_SERVER["QUERY_STRING"]);
- header("Location: tt-rss.php?$query_string");
- return;
- }
-
- $tp_id = db_escape_string($_GET["tp"]);
-
- if ($go == "vf" && $tp_id) {
-
- togglePublished($link, $tp_id);
-
- $query_string = preg_replace("/&tp=[0-9]*/", "", $_SERVER["QUERY_STRING"]);
- header("Location: tt-rss.php?$query_string");
- return;
- }
-
- $sop = db_escape_string($_GET["sop"]);
-
- if ($sop) {
- if ($go == "view") {
- $a_id = db_escape_string($_GET["id"]);
- } elseif ($go == "vf") {
- $a_id = db_escape_string($_GET["aid"]);
- }
-
- if ($a_id) {
-
- if ($sop == "tp") {
- togglePublished($link, $a_id);
- }
-
- if ($sop == "ts") {
- toggleMarked($link, $a_id);
- }
-
- if ($sop == "mu") {
- markUnread($link, $a_id);
- }
-
- $query_string = str_replace("&sop=$sop", "", $_SERVER["QUERY_STRING"]);
- header("Location: tt-rss.php?$query_string");
- }
- }
-
-?>
-<html>
-<head>
- <title>Tiny Tiny RSS - Mobile</title>
- <link rel="stylesheet" type="text/css" href="mobile.css">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <script type="text/javascript" src="tt-rss.js"></script>
-
- <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
- <?php if ($user_css_url) { ?>
- <link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
- <?php } ?>
-</head>
-<body id="ttrssMobile">
-
-<div id="content">
-<?php
- if (!$go) {
- render_feeds_list($link);
- } else if ($go == "vf") {
- render_headlines($link);
- } else if ($go == "view") {
- render_article($link);
- } else if ($go == "sform") {
- render_search_form($link, $_GET["aid"], $_GET["ic"]);
- } else {
- print __("Internal error: Function not implemented");
- }
-
-?>
-</div>
-
-<?php if (!$go) { ?>
-
-<div id="footer">
- <a href="http://tt-rss.org/">Tiny-Tiny RSS</a>
- <?php if (!defined('HIDE_VERSION')) { ?>
- v<?php echo VERSION ?>
- <?php } ?>
- &copy; 2005-2009 Andrew Dolgov
-</div>
-
-<?php } ?>
-
-</body>
-</html>