2006-08-19 10:52:33 +02:00
|
|
|
<?php
|
2007-03-05 17:27:48 +01:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
2008-12-16 08:13:09 +01:00
|
|
|
define('MOBILE_VERSION', true);
|
|
|
|
|
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
|
|
|
|
|
|
|
require_once "../sessions.php";
|
|
|
|
|
|
|
|
require_once "../version.php";
|
|
|
|
require_once "../db-prefs.php";
|
|
|
|
|
2008-12-16 07:43:49 +01:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2006-03-27 04:46:22 +02:00
|
|
|
|
2008-11-10 06:29:19 +01:00
|
|
|
init_connection($link);
|
2007-08-26 12:51:17 +02:00
|
|
|
|
2007-03-05 17:27:48 +01:00
|
|
|
login_sequence($link, true);
|
2006-03-27 04:46:22 +02:00
|
|
|
|
2006-03-27 06:31:17 +02:00
|
|
|
/* 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:31:17 +02:00
|
|
|
}
|
2006-03-27 06:37:06 +02:00
|
|
|
|
|
|
|
header("Location: tt-rss.php");
|
|
|
|
return;
|
2006-03-27 06:31:17 +02:00
|
|
|
}
|
|
|
|
|
2006-03-27 10:59:48 +02:00
|
|
|
$ts_id = db_escape_string($_GET["ts"]);
|
|
|
|
|
|
|
|
if ($go == "vf" && $ts_id) {
|
2007-12-05 07:42:18 +01:00
|
|
|
|
|
|
|
toggleMarked($link, $ts_id);
|
|
|
|
|
2006-03-27 10:59:48 +02:00
|
|
|
$query_string = preg_replace("/&ts=[0-9]*/", "", $_SERVER["QUERY_STRING"]);
|
|
|
|
header("Location: tt-rss.php?$query_string");
|
|
|
|
return;
|
|
|
|
}
|
2007-12-05 07:28:19 +01:00
|
|
|
|
|
|
|
$tp_id = db_escape_string($_GET["tp"]);
|
|
|
|
|
|
|
|
if ($go == "vf" && $tp_id) {
|
2007-12-05 07:42:18 +01:00
|
|
|
|
|
|
|
togglePublished($link, $tp_id);
|
|
|
|
|
2007-12-05 07:28:19 +01:00
|
|
|
$query_string = preg_replace("/&tp=[0-9]*/", "", $_SERVER["QUERY_STRING"]);
|
|
|
|
header("Location: tt-rss.php?$query_string");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-05 07:42:18 +01:00
|
|
|
$sop = db_escape_string($_GET["sop"]);
|
|
|
|
|
|
|
|
if ($sop && $go == "view") {
|
|
|
|
$a_id = db_escape_string($_GET["id"]);
|
|
|
|
|
|
|
|
if ($a_id) {
|
|
|
|
|
|
|
|
if ($sop == "tp") {
|
|
|
|
togglePublished($link, $a_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($sop == "ts") {
|
|
|
|
toggleMarked($link, $a_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
$query_string = preg_replace("/&sop=t[sp]/", "", $_SERVER["QUERY_STRING"]);
|
|
|
|
header("Location: tt-rss.php?$query_string");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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">
|
2007-12-05 08:59:12 +01:00
|
|
|
<script type="text/javascript" src="tt-rss.js"></script>
|
2008-07-17 06:13:49 +02:00
|
|
|
|
|
|
|
<?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 } ?>
|
2006-03-24 11:00:57 +01:00
|
|
|
</head>
|
2008-07-17 06:13:49 +02:00
|
|
|
<body id="ttrssMobile">
|
2006-03-24 11:00:57 +01:00
|
|
|
|
2006-03-27 05:10:46 +02:00
|
|
|
<div id="content">
|
2006-08-19 10:52:33 +02:00
|
|
|
<?php
|
2006-03-27 06:31:17 +02:00
|
|
|
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);
|
2006-03-27 06:31:17 +02:00
|
|
|
} else if ($go == "view") {
|
|
|
|
render_article($link);
|
2007-06-08 09:01:42 +02:00
|
|
|
} else if ($go == "sform") {
|
|
|
|
render_search_form($link, $_GET["aid"], $_GET["ic"]);
|
2006-03-27 05:10:46 +02:00
|
|
|
} else {
|
2007-03-05 17:27:48 +01:00
|
|
|
print __("Internal error: Function not implemented");
|
2006-03-27 04:46:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
2006-03-27 05:10:46 +02:00
|
|
|
</div>
|
|
|
|
|
2008-07-25 11:31:08 +02:00
|
|
|
<?php if (!$go) { ?>
|
|
|
|
|
2006-03-27 05:10:46 +02:00
|
|
|
<div id="footer">
|
2008-12-16 07:43:49 +01:00
|
|
|
<a href="http://tt-rss.org/">Tiny-Tiny RSS</a>
|
2008-08-08 07:08:38 +02:00
|
|
|
<?php if (!defined('HIDE_VERSION')) { ?>
|
|
|
|
v<?php echo VERSION ?>
|
|
|
|
<?php } ?>
|
2009-01-17 08:28:16 +01:00
|
|
|
© 2005-2009 Andrew Dolgov
|
2006-03-27 05:10:46 +02:00
|
|
|
</div>
|
2006-03-27 04:46:22 +02:00
|
|
|
|
2008-07-25 11:31:08 +02:00
|
|
|
<?php } ?>
|
|
|
|
|
2006-03-24 11:00:57 +01:00
|
|
|
</body>
|
|
|
|
</html>
|