2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2007-03-04 14:02:47 +01:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
2006-03-16 11:57:22 +01:00
|
|
|
require_once "functions.php";
|
2007-03-02 12:05:17 +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
|
|
|
|
2007-03-02 12:34:34 +01:00
|
|
|
no_cache_incantation();
|
2007-03-02 12:05:17 +01: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) { ?>
|
2006-11-09 03:57:59 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-11-22 07:44:19 +01:00
|
|
|
|
2007-04-29 07:41:06 +02:00
|
|
|
<!--[if lt IE 7]>
|
2006-09-29 06:45:26 +02:00
|
|
|
<script type="text/javascript" src="pngfix.js"></script>
|
2007-04-29 07:41:06 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="ie6.css">
|
|
|
|
<![endif]-->
|
|
|
|
|
|
|
|
<!--[if IE 7]>
|
|
|
|
<link rel="stylesheet" type="text/css" href="ie7.css">
|
2006-09-29 06:45:26 +02:00
|
|
|
<![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>
|
2007-03-06 07:11:28 +01:00
|
|
|
<script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
|
2006-05-20 15:01:11 +02:00
|
|
|
|
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>
|
|
|
|
|
2007-04-13 08:59:07 +02:00
|
|
|
<body onresize="resize_headlines()">
|
2006-02-24 11:15:30 +01:00
|
|
|
|
2006-10-04 15:38:18 +02:00
|
|
|
<div id="overlay">
|
|
|
|
<div id="overlay_inner">
|
2007-03-05 09:45:38 +01:00
|
|
|
<p><?php echo __("Loading, please wait...") ?></p>
|
2006-10-04 15:38:18 +02:00
|
|
|
<noscript>
|
2006-12-20 16:07:31 +01:00
|
|
|
<div class="error"><?php echo
|
2007-03-05 09:45:38 +01:00
|
|
|
__("Your browser doesn't support Javascript, which is required
|
2006-10-04 15:38:18 +02:00
|
|
|
for this application to function properly. Please check your
|
2006-12-20 16:07:31 +01:00
|
|
|
browser settings.") ?></div>
|
2006-10-04 15:38:18 +02:00
|
|
|
</noscript>
|
|
|
|
</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
|
|
|
|
2007-05-14 10:08:18 +02:00
|
|
|
<div id="dialog_overlay"> </div>
|
|
|
|
|
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-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">
|
2007-01-27 12:32:59 +01:00
|
|
|
<div style="float : right">
|
2006-09-29 09:50:18 +02:00
|
|
|
<?php if (!SINGLE_USER_MODE) { ?>
|
2007-03-05 09:37:13 +01:00
|
|
|
<?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
|
2007-03-05 10:24:13 +01:00
|
|
|
(<a href="logout.php"><?= __('Logout') ?></a>)
|
2006-09-29 09:50:18 +02:00
|
|
|
<?php } ?>
|
2007-01-27 12:32:59 +01:00
|
|
|
<img id="newVersionIcon" onclick="javascript:explainError(2)"
|
|
|
|
src="images/new_version.png" title="New version is available!"
|
|
|
|
alt="new_version_icon">
|
|
|
|
</div>
|
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">
|
2007-03-06 07:11:28 +01:00
|
|
|
<a id="dispSwitchPrompt"
|
2007-05-17 13:58:38 +02:00
|
|
|
href="javascript:toggleTags()"><?php echo __("tag cloud") ?></a>
|
2006-09-28 14:00:03 +02:00
|
|
|
</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()">
|
2007-03-05 09:45:38 +01:00
|
|
|
<option value="qmcDefault" selected><?php echo __('Actions...') ?></option>
|
|
|
|
<option value="qmcSearch"><?php echo __('Search') ?></option>
|
|
|
|
<option value="qmcPrefs"><?php echo __('Preferences') ?></option>
|
2006-09-28 14:00:03 +02:00
|
|
|
<option disabled>--------</option>
|
2007-03-05 09:45:38 +01:00
|
|
|
<option style="color : #5050aa" disabled><?php echo __('Feed actions:') ?></option>
|
|
|
|
<option value="qmcAddFeed"><?php echo __(' Subscribe to feed') ?></option>
|
|
|
|
<option value="qmcEditFeed"><?php echo __(' Edit this feed') ?></option>
|
|
|
|
<option value="qmcRemoveFeed"><?php echo __(' Unsubscribe') ?></option>
|
2006-09-28 14:00:03 +02:00
|
|
|
<!-- <option>Edit this feed</option> -->
|
|
|
|
<option disabled>--------</option>
|
2007-03-05 09:45:38 +01:00
|
|
|
<option style="color : #5050aa" disabled><?php echo __('All feeds:') ?></option>
|
2006-09-28 14:00:03 +02:00
|
|
|
<?php if (!ENABLE_UPDATE_DAEMON && !DAEMON_REFRESH_ONLY) { ?>
|
2007-03-05 09:45:38 +01:00
|
|
|
<option value="qmcUpdateFeeds"><?php echo __(' Update') ?></option>
|
2006-09-28 14:00:03 +02:00
|
|
|
<?php } ?>
|
2007-03-05 09:45:38 +01:00
|
|
|
<option value="qmcCatchupAll"><?php echo __(' Mark as read') ?></option>
|
|
|
|
<option value="qmcShowOnlyUnread"><?php echo __(' (Un)hide read feeds') ?></option>
|
2006-09-28 14:00:03 +02:00
|
|
|
<option disabled>--------</option>
|
2007-03-05 09:45:38 +01:00
|
|
|
<option style="color : #5050aa" disabled><?php echo __('Other actions:') ?></option>
|
|
|
|
<option value="qmcAddFilter"><?php echo __(' Create filter') ?></option>
|
2006-09-28 14:00:03 +02:00
|
|
|
</select>
|
|
|
|
</div>
|
2005-12-20 16:58:39 +01:00
|
|
|
|
2007-03-02 21:58:29 +01:00
|
|
|
<form id="main_toolbar_form" onsubmit='return false'>
|
2005-12-20 16:58:39 +01:00
|
|
|
|
2007-03-05 09:45:38 +01:00
|
|
|
<?php echo __('Search:') ?>
|
2006-12-20 16:07:31 +01:00
|
|
|
<input name="query"
|
2006-10-01 08:33:32 +02:00
|
|
|
onKeyPress="return filterCR(event, viewCurrentFeed)"
|
2006-02-25 20:41:27 +01:00
|
|
|
onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
|
2007-01-10 07:16:02 +01:00
|
|
|
|
2007-03-05 09:45:38 +01:00
|
|
|
<?php echo __('View:') ?>
|
2006-05-21 06:28:51 +02:00
|
|
|
<select name="view_mode" onchange="viewCurrentFeed(0, '')">
|
2007-03-05 09:45:38 +01:00
|
|
|
<option selected value="adaptive"><?php echo __('Adaptive') ?></option>
|
|
|
|
<option value="all_articles"><?php echo __('All Articles') ?></option>
|
|
|
|
<option value="marked"><?php echo __('Starred') ?></option>
|
|
|
|
<option value="unread"><?php echo __('Unread') ?></option>
|
2005-09-05 14:02:00 +02:00
|
|
|
</select>
|
2006-05-21 14:09:55 +02:00
|
|
|
|
2007-03-05 09:45:38 +01:00
|
|
|
<?php echo __('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, \'\')"');
|
|
|
|
|
|
|
|
?>
|
2007-02-15 08:03:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input class="button" type="submit"
|
|
|
|
onclick="return viewCurrentFeed('ForceUpdate')"
|
2007-03-05 09:45:38 +01:00
|
|
|
value="<?php echo __('Update') ?>">
|
2007-02-15 08:03:49 +01:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
</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-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-12-20 16:07:31 +01:00
|
|
|
<div id="headlines-frame" class="headlines_normal">
|
2007-03-05 09:45:38 +01:00
|
|
|
<div class="whiteBox"><?php echo __('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-12-20 16:07:31 +01:00
|
|
|
<div id="headlines-frame" class="headlines_cdm">
|
2007-03-05 09:45:38 +01:00
|
|
|
<div class="whiteBox"><?php echo __('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-10-20 08:30:21 +02:00
|
|
|
<?php } ?>
|
2007-01-31 06:13:59 +01:00
|
|
|
<a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> © 2005-2007 <a href="http://bah.org.ru/">Andrew Dolgov</a>
|
2006-09-29 09:50:18 +02:00
|
|
|
</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>
|