2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2006-03-16 11:57:22 +01:00
|
|
|
require_once "functions.php";
|
|
|
|
|
|
|
|
basic_nosid_redirect_check();
|
|
|
|
|
2006-03-02 09:10:43 +01:00
|
|
|
require_once "sessions.php";
|
2005-11-23 18:20:17 +01:00
|
|
|
|
|
|
|
require_once "sanity_check.php";
|
2005-11-16 18:09:27 +01:00
|
|
|
require_once "version.php";
|
|
|
|
require_once "config.php";
|
|
|
|
require_once "db-prefs.php";
|
2005-10-16 06:51:09 +02:00
|
|
|
|
2005-11-16 18:09:27 +01:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2005-11-17 19:29:13 +01:00
|
|
|
|
2005-11-20 12:19:20 +01:00
|
|
|
login_sequence($link);
|
2005-11-18 06:17:17 +01:00
|
|
|
|
2006-03-30 08:57:29 +02:00
|
|
|
$dt_add = get_script_dt_add();
|
2006-03-30 08:43:35 +02:00
|
|
|
|
2005-11-16 18:09:27 +01:00
|
|
|
?>
|
2006-09-28 14:00:03 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2005-08-21 12:13:10 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Tiny Tiny RSS</title>
|
2005-10-16 06:51:09 +02:00
|
|
|
|
2005-11-16 10:20:11 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="tt-rss.css">
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php $user_theme = $_SESSION["theme"];
|
2005-11-26 07:48:37 +01:00
|
|
|
if ($user_theme) { ?>
|
2006-08-19 09:04:45 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
|
|
|
|
<?php } ?>
|
2005-11-26 07:48:37 +01:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
|
2006-06-06 09:11:03 +02:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
|
|
|
|
<?php if ($user_css_url) { ?>
|
|
|
|
<link type="text/css" href="<?php echo $user_css_url ?>"/>
|
|
|
|
<?php } ?>
|
2005-11-22 07:44:19 +01:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
|
2005-10-16 06:51:09 +02:00
|
|
|
|
2005-11-16 10:20:11 +01:00
|
|
|
<link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
|
2005-10-16 06:51:09 +02:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } else { ?>
|
2005-10-16 06:51:09 +02:00
|
|
|
|
2005-11-16 10:20:11 +01:00
|
|
|
<link title="Compact Stylesheet" rel="alternate stylesheet"
|
|
|
|
type="text/css" href="tt-rss_compact.css"/>
|
2005-10-16 06:51:09 +02:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-11-15 06:59:30 +01:00
|
|
|
|
2006-09-29 06:45:26 +02:00
|
|
|
<!--[if gte IE 5.5000]>
|
|
|
|
<script type="text/javascript" src="pngfix.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
|
|
|
|
<![endif]-->
|
|
|
|
|
2006-09-11 08:49:46 +02:00
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
|
|
|
|
|
2006-05-20 15:01:11 +02:00
|
|
|
<script type="text/javascript" src="prototype.js"></script>
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<script type="text/javascript" src="tt-rss.js?<?php echo $dt_add ?>"></script>
|
|
|
|
<script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
|
2006-09-28 14:00:03 +02:00
|
|
|
<script type="text/javascript" src="feedlist.js?<?php echo $dt_add ?>"></script>
|
|
|
|
<script type="text/javascript" src="viewfeed.js?<?php echo $dt_add ?>"></script>
|
|
|
|
|
2005-09-08 06:39:55 +02:00
|
|
|
<!--[if gte IE 5.5000]>
|
|
|
|
<script type="text/javascript" src="pngfix.js"></script>
|
2005-12-20 17:14:09 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
|
2005-09-08 06:39:55 +02:00
|
|
|
<![endif]-->
|
2005-08-21 15:46:43 +02:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
2006-02-26 08:21:22 +01:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
if (navigator.userAgent.match("Opera")) {
|
|
|
|
document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
|
|
|
|
}
|
2006-05-19 05:52:19 +02:00
|
|
|
if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
|
|
|
|
document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
|
|
|
|
}
|
2006-02-26 08:21:22 +01:00
|
|
|
</script>
|
2005-08-21 12:13:10 +02:00
|
|
|
</head>
|
|
|
|
|
2006-02-24 11:15:30 +01:00
|
|
|
<body>
|
|
|
|
|
2006-09-28 14:57:33 +02:00
|
|
|
<iframe id="backReqBox"></iframe>
|
|
|
|
|
2006-09-28 14:23:28 +02:00
|
|
|
<div id="overlay"><div id="overlay_inner">Loading, please wait...</div></div>
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2006-09-28 14:42:47 +02:00
|
|
|
<div id="notify" class="notify"><span id="notify_body"> </span></div>
|
|
|
|
|
2006-03-31 07:18:55 +02:00
|
|
|
<div id="fatal_error"><div id="fatal_error_inner">
|
|
|
|
<h1>Fatal Error</h1>
|
2006-03-31 07:33:03 +02:00
|
|
|
<div id="fatal_error_msg">Unknown Error</div>
|
2006-03-31 07:18:55 +02:00
|
|
|
</div></div>
|
2006-03-20 15:45:55 +01:00
|
|
|
|
2006-02-24 11:15:30 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
if (document.addEventListener) {
|
|
|
|
document.addEventListener("DOMContentLoaded", init, null);
|
|
|
|
}
|
|
|
|
window.onload = init;
|
|
|
|
</script>
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2006-05-23 11:08:16 +02:00
|
|
|
<div id="noDaemonWarning">
|
|
|
|
<b>Warning:</b> Update daemon is enabled in configuration, but daemon
|
|
|
|
process is not running, which prevents all feeds from updating. Please
|
|
|
|
start the daemon process or contact instance owner.
|
|
|
|
</div>
|
2006-02-13 14:08:23 +01:00
|
|
|
|
2006-02-28 17:25:38 +01:00
|
|
|
<ul id="debug_output"></ul>
|
|
|
|
|
2006-06-14 04:58:40 +02:00
|
|
|
<div id="infoBoxShadow"><div id="infoBox"> </div></div>
|
|
|
|
|
2006-09-29 09:50:18 +02:00
|
|
|
<div id="header">
|
|
|
|
<?php if (!SINGLE_USER_MODE) { ?>
|
|
|
|
<div style="float : right">
|
|
|
|
Hello, <b><?php echo $_SESSION["name"] ?></b>
|
|
|
|
(<a href="logout.php">Logout</a>)
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
2006-09-30 08:49:50 +02:00
|
|
|
<img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
|
2006-09-29 09:50:18 +02:00
|
|
|
</div>
|
2005-08-28 07:48:32 +02:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
<div id="feeds-holder">
|
|
|
|
<div id="dispSwitch">
|
|
|
|
<a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
|
|
|
|
</div>
|
2006-09-29 07:01:10 +02:00
|
|
|
<div id="feeds-frame"> </div>
|
2006-09-28 14:00:03 +02:00
|
|
|
</div>
|
2005-11-29 20:49:55 +01:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
<div id="toolbar">
|
2005-12-20 16:58:39 +01:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
<div style="float : right">
|
|
|
|
<select id="quickMenuChooser" onchange="quickMenuChange()">
|
|
|
|
<option value="qmcDefault" selected>Actions...</option>
|
|
|
|
<option value="qmcPrefs">Preferences</option>
|
|
|
|
<option value="qmcSearch">Search</option>
|
|
|
|
<option disabled>--------</option>
|
|
|
|
<option style="color : #5050aa" disabled>Feed actions:</option>
|
|
|
|
<option value="qmcAddFeed"> Subscribe to feed</option>
|
|
|
|
<option value="qmcRemoveFeed"> Unsubscribe</option>
|
|
|
|
<!-- <option>Edit this feed</option> -->
|
|
|
|
<option disabled>--------</option>
|
|
|
|
<option style="color : #5050aa" disabled>All feeds:</option>
|
|
|
|
<?php if (!ENABLE_UPDATE_DAEMON && !DAEMON_REFRESH_ONLY) { ?>
|
|
|
|
<option value="qmcUpdateFeeds"> Update</option>
|
|
|
|
<?php } ?>
|
|
|
|
<option value="qmcCatchupAll"> Mark as read</option>
|
|
|
|
<option value="qmcShowOnlyUnread"> Show only unread</option>
|
|
|
|
<option disabled>--------</option>
|
|
|
|
<option style="color : #5050aa" disabled>Other actions:</option>
|
|
|
|
<option value="qmcAddFilter"> Create filter</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2005-12-20 16:58:39 +01:00
|
|
|
|
2006-05-21 14:09:55 +02:00
|
|
|
<form id="main_toolbar_form">
|
2005-12-20 16:58:39 +01:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
|
2006-05-21 14:09:55 +02:00
|
|
|
<input name="query"
|
|
|
|
onKeyPress="return filterCR(event)"
|
2006-02-25 20:41:27 +01:00
|
|
|
onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
|
2006-05-21 14:09:55 +02:00
|
|
|
<input class="button" type="submit"
|
|
|
|
onclick="return viewCurrentFeed(0)" value="Search">
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
View:
|
|
|
|
<select name="view_mode" onchange="viewCurrentFeed(0, '')">
|
|
|
|
<option selected value="adaptive">Adaptive</option>
|
|
|
|
<option value="all_articles">All Articles</option>
|
|
|
|
<option value="marked">Starred</option>
|
|
|
|
<option value="unread">Unread</option>
|
2005-09-05 14:02:00 +02:00
|
|
|
</select>
|
2006-05-21 14:09:55 +02:00
|
|
|
|
|
|
|
Limit:
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2006-05-21 06:28:51 +02:00
|
|
|
$limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
|
2005-10-28 03:26:50 +02:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
$def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
|
2005-09-05 14:54:07 +02:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
if ($def_art_limit >= 0 && !array_key_exists($def_art_limit, $limits)) {
|
|
|
|
$limits[$def_art_limit] = $def_art_limit;
|
|
|
|
}
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
asort($limits);
|
|
|
|
|
|
|
|
if (!$def_art_limit) {
|
|
|
|
$def_art_limit = 30;
|
|
|
|
}
|
|
|
|
|
|
|
|
print_select_hash("limit", $def_art_limit, $limits,
|
|
|
|
'onchange="viewCurrentFeed(0, \'\')"');
|
|
|
|
|
|
|
|
?>
|
|
|
|
</form>
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
<!-- <input class="button" type="submit"
|
|
|
|
onclick="quickMenuGo('qmcSearch')" value="Search (tmp)"> -->
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
<input class="button" type="submit"
|
2006-09-14 09:32:09 +02:00
|
|
|
onclick="viewCurrentFeed('ForceUpdate')" value="Update">
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2006-09-29 06:15:28 +02:00
|
|
|
<!-- <input class="button" type="submit"
|
|
|
|
onclick="catchupCurrentFeed()" value="Mark as read"> -->
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
</div>
|
|
|
|
|
2006-09-28 14:23:28 +02:00
|
|
|
<?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
|
2006-09-29 09:43:29 +02:00
|
|
|
<div id="headlines-frame" class="headlines_normal"><div class="whiteBox">No feed selected.</div></div>
|
2006-10-01 08:05:10 +02:00
|
|
|
<div id="content-frame"><div class="whiteBox"> </div></div>
|
2006-09-28 14:23:28 +02:00
|
|
|
<?php } else { ?>
|
2006-09-29 09:43:29 +02:00
|
|
|
<div id="headlines-frame" class="headlines_cdm"><div class="whiteBox">No feed selected.</div></div>
|
2006-09-28 14:23:28 +02:00
|
|
|
<?php } ?>
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2006-09-29 09:50:18 +02:00
|
|
|
<div id="footer">
|
2006-10-01 06:05:12 +02:00
|
|
|
<?php if (defined('_DEBUG_USER_SWITCH')) { ?>
|
|
|
|
<select id="userSwitch" onchange="userSwitch()">
|
|
|
|
<?php
|
|
|
|
foreach (array('admin', 'fox', 'test') as $u) {
|
|
|
|
$op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
|
|
|
|
print "<option $op_sel>$u</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<? } ?>
|
2006-09-29 09:50:18 +02:00
|
|
|
<a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> © 2005-2006 Andrew Dolgov
|
|
|
|
</div>
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php db_close($link); ?>
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2006-02-24 11:15:30 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
/* for IE */
|
|
|
|
function statechange() {
|
|
|
|
if (document.readyState == "interactive") init();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.readyState) {
|
|
|
|
if (document.readyState == "interactive" || document.readyState == "complete") {
|
|
|
|
init();
|
|
|
|
} else {
|
|
|
|
document.onreadystatechange = statechange;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
</body>
|
|
|
|
</html>
|