1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-22 11:36:38 +02:00
ttrss/mobile/tt-rss.php

82 lines
1.8 KiB
PHP
Raw Normal View History

<?php
2006-05-23 07:07:38 +02:00
require_once "../config.php";
2006-03-27 04:46:22 +02:00
require_once "functions.php";
2006-05-23 07:07:38 +02:00
require_once "../functions.php";
2006-03-24 11:00:57 +01:00
basic_nosid_redirect_check();
require_once "../sessions.php";
require_once "../version.php";
require_once "../config.php";
require_once "../db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
2006-03-27 04:46:22 +02:00
login_sequence($link);
/* 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"]);
2006-03-27 06:37:06 +02:00
} else {
if ($_COOKIE["ttrss_vf_uclps"] != 1) {
setcookie("ttrss_vf_uclps", 1);
} else {
setcookie("ttrss_vf_uclps", 0);
}
}
2006-03-27 06:37:06 +02:00
header("Location: tt-rss.php");
return;
}
2006-03-27 10:59:48 +02:00
$ts_id = db_escape_string($_GET["ts"]);
if ($go == "vf" && $ts_id) {
$result = db_query($link, "UPDATE ttrss_user_entries SET marked = NOT marked
WHERE ref_id = '$ts_id' AND owner_uid = " . $_SESSION["uid"]);
$query_string = preg_replace("/&ts=[0-9]*/", "", $_SERVER["QUERY_STRING"]);
header("Location: tt-rss.php?$query_string");
return;
}
2006-03-24 11:00:57 +01:00
?>
<html>
<head>
<title>Tiny Tiny RSS - Mobile</title>
<link rel="stylesheet" type="text/css" href="mobile.css">
2006-03-27 05:44:43 +02:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2006-03-24 11:00:57 +01:00
</head>
<body>
2006-03-27 05:10:46 +02:00
<div id="content">
<?php
if (!$go) {
2006-03-27 04:46:22 +02:00
render_feeds_list($link);
2006-03-27 05:44:43 +02:00
} else if ($go == "vf") {
render_headlines($link);
} else if ($go == "view") {
render_article($link);
2006-03-27 05:10:46 +02:00
} else {
print "Function not implemented";
2006-03-27 04:46:22 +02:00
}
?>
2006-03-27 05:10:46 +02:00
</div>
<div id="footer">
<a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov
2006-03-27 05:10:46 +02:00
</div>
2006-03-27 04:46:22 +02:00
2006-03-24 11:00:57 +01:00
</body>
</html>