ttrss/tt-rss.php

247 lines
7.8 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
require_once "functions.php";
2007-03-05 09:37:13 +01:00
startup_gettext();
2007-03-02 12:05:17 +01:00
require_once "sessions.php";
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-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
login_sequence($link);
2005-11-18 06:17:17 +01: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-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"];
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 } ?>
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 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
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">
<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-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
<div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
<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>
</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-02-28 17:25:38 +01:00
<ul id="debug_output"></ul>
<div id="infoBoxShadow"><div id="infoBox">&nbsp;</div></div>
2006-09-29 09:50:18 +02:00
<div id="header">
<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-01 13:34:03 +01:00
(<a href="logout.php">Logout</a>)
2006-09-29 09:50:18 +02:00
<?php } ?>
<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>
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">&nbsp;</div>
2006-09-28 14:00:03 +02:00
</div>
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 __('&nbsp;&nbsp;Subscribe to feed') ?></option>
<option value="qmcEditFeed"><?php echo __('&nbsp;&nbsp;Edit this feed') ?></option>
<option value="qmcRemoveFeed"><?php echo __('&nbsp;&nbsp;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 __('&nbsp;&nbsp;Update') ?></option>
2006-09-28 14:00:03 +02:00
<?php } ?>
2007-03-05 09:45:38 +01:00
<option value="qmcCatchupAll"><?php echo __('&nbsp;&nbsp;Mark as read') ?></option>
<option value="qmcShowOnlyUnread"><?php echo __('&nbsp;&nbsp;(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 __('&nbsp;&nbsp;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"
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:') ?>
<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>
</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
$limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
$def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
2005-09-05 14:54:07 +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
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
&nbsp;
<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
</form>
2005-11-27 15:56:10 +01:00
<!-- &nbsp;<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"> -->
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">&nbsp;</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>
<?php } ?>
2007-01-31 06:13:59 +01:00
<a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> &copy; 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>