ttrss/tt-rss.php

224 lines
5.9 KiB
PHP
Raw Normal View History

2005-11-16 18:09:27 +01:00
<?
session_start();
2005-11-16 18:09:27 +01:00
require_once "version.php";
require_once "config.php";
require_once "db-prefs.php";
2005-11-18 06:17:17 +01:00
require_once "functions.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
2005-11-16 18:09:27 +01:00
?>
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">
2005-11-22 07:44:19 +01:00
<? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
<? if ($user_css_url) { ?>
<link type="text/css" href="<?= $user_css_url ?>"/>
<? } ?>
2005-11-16 18:09:27 +01:00
<? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
2005-11-16 10:20:11 +01:00
<link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
<? } else { ?>
2005-11-16 10:20:11 +01:00
<link title="Compact Stylesheet" rel="alternate stylesheet"
type="text/css" href="tt-rss_compact.css"/>
<? } ?>
2005-11-15 06:59:30 +01:00
2005-08-22 06:56:40 +02:00
<script type="text/javascript" src="functions.js"></script>
2005-08-21 12:13:10 +02:00
<script type="text/javascript" src="tt-rss.js"></script>
2005-09-08 06:39:55 +02:00
<!--[if gte IE 5.5000]>
<script type="text/javascript" src="pngfix.js"></script>
<![endif]-->
2005-08-21 15:46:43 +02:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2005-08-21 12:13:10 +02:00
</head>
<body onload="init()">
2005-11-16 18:09:27 +01:00
<? if (get_pref($link, 'ENABLE_SPLASH')) { ?>
2005-11-16 09:45:00 +01:00
<div id="splash">
<table width='100%' height='100%'><tr>
<td class="innerSplash" valign="middle" align="center">
<img src="images/ttrss_logo.png" alt="logo">
<p>Loading, please wait...</p>
</td></tr></table>
</div>
<? } ?>
2005-10-16 16:10:14 +02:00
<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
2005-11-16 18:09:27 +01:00
<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
2005-08-21 12:13:10 +02:00
<tr>
2005-11-17 19:29:13 +01:00
<td colspan="2">
2005-10-16 16:10:14 +02:00
<table cellspacing="0" cellpadding="0" width="100%"><tr>
2005-11-17 19:29:13 +01:00
<td rowspan="2" class="header" valign="middle">
2005-10-16 16:10:14 +02:00
<img src="images/ttrss_logo.png" alt="logo">
</td>
<td align="right" valign="top">
<div id="notify"><span id="notify_body"></div>
</td>
2005-11-18 14:34:34 +01:00
<div id="userDlg">&nbsp;</div>
2005-11-17 19:29:13 +01:00
</tr><tr><td class="welcomePrompt">
2005-11-18 07:29:36 +01:00
<? if (!SINGLE_USER_MODE) { ?>
2005-11-20 11:18:53 +01:00
Hello, <b><?= $_SESSION["name"] ?></b>
(<a href="logout.php">Logout</a>)
2005-11-20 11:14:38 +01:00
<? } ?>
</td>
2005-10-16 16:10:14 +02:00
</tr></table>
2005-08-21 13:11:53 +02:00
</td>
</tr>
2005-11-18 14:34:34 +01:00
<? } else { ?>
<div id="userDlg">&nbsp;</div>
<? } ?>
2005-08-21 12:13:10 +02:00
<tr>
<td valign="top" rowspan="3" class="feeds">
2005-09-07 05:53:29 +02:00
<!-- <div id="feeds">&nbsp;</div> -->
2005-09-09 09:45:54 +02:00
<div id="dispSwitch">
<a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
</div>
2005-09-08 06:48:01 +02:00
<iframe frameborder="0"
2005-10-17 14:26:21 +02:00
src="backend.php?op=error&msg=Loading,%20please wait..."
2005-09-08 06:48:01 +02:00
id="feeds-frame" name="feeds-frame" class="feedsFrame"> </iframe>
2005-11-16 18:09:27 +01:00
<? if (get_pref($link, 'DISPLAY_FEEDLIST_ACTIONS')) { ?>
<div align="center">All feeds:
<select id="allFeedsChooser">
<option>Update</option>
<option>Mark as read</option>
2005-11-16 06:16:43 +01:00
<option>Show only unread</option>
</select>
<input type="submit" class="button" onclick="allFeedsMenuGo()" value="Go">
2005-09-06 19:12:10 +02:00
</div>
<? } ?>
2005-08-21 12:13:10 +02:00
</td>
<td valign="top" class="headlinesToolbarBox">
2005-09-07 09:19:14 +02:00
<table width="100%" cellpadding="0" cellspacing="0">
<tr><td class="headlinesToolbar" id="headlinesToolbar">
2005-09-11 05:02:23 +02:00
<input id="searchbox"
onblur="javascript:enableHotkeys()" onfocus="javascript:disableHotkeys()"
onchange="javascript:search()">
2005-10-16 18:16:34 +02:00
<select id="searchmodebox">
<option>This feed</option>
<option>All feeds</option>
</select>
<input type="submit"
2005-09-11 05:02:23 +02:00
class="button" onclick="javascript:search()" value="Search">
&nbsp;
View:
<select id="viewbox" onchange="javascript:viewCurrentFeed(0, '')">
<option>All Articles</option>
<option>Starred</option>
<option selected>Unread</option>
2005-10-16 16:37:15 +02:00
<option>Unread or Starred</option>
2005-10-23 13:24:56 +02:00
<option>Unread or Updated</option>
</select>
2005-09-05 14:54:07 +02:00
&nbsp;Limit:
<select id="limitbox" onchange="javascript:viewCurrentFeed(0, '')">
<?
$limits = array(15 => 15, 30 => 30, 60 => 60);
2005-11-16 18:09:27 +01:00
$def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
print $def_art_limit;
if ($def_art_limit >= 0) {
$limits[$def_art_limit] = $def_art_limit;
}
asort($limits);
array_push($limits, 0);
foreach ($limits as $key) {
print "<option";
2005-11-16 18:09:27 +01:00
if ($key == $def_art_limit) { print " selected"; }
print ">";
if ($limits[$key] == 0) { print "All"; } else { print $limits[$key]; }
print "</option>";
} ?>
2005-11-16 18:09:27 +01:00
2005-09-05 14:54:07 +02:00
</select>
&nbsp;Feed: <input class="button" type="submit"
onclick="javascript:viewCurrentFeed(0, 'ForceUpdate')" value="Update">
<input class="button" type="submit" id="btnMarkFeedAsRead"
onclick="javascript:viewCurrentFeed(0, 'MarkAllRead')" value="Mark as read">
2005-10-16 16:23:06 +02:00
</td>
<td align="right">
Actions: <select id="quickMenuChooser">
2005-11-16 06:16:43 +01:00
<option id="qmcPrefs" selected>Preferences...</option>
<option disabled>--------</option>
<option style="color : #5050aa" disabled>Feed actions:</option>
2005-11-16 06:16:43 +01:00
<option id="qmcAddFeed">&nbsp;&nbsp;Add new feed</option>
<option id="qmcRemoveFeed">&nbsp;&nbsp;Remove this feed</option>
<!-- <option>Edit this feed</option> -->
<option disabled>--------</option>
<option style="color : #5050aa" disabled>All feeds:</option>
2005-11-16 06:16:43 +01:00
<option id="qmcUpdateFeeds">&nbsp;&nbsp;Update</option>
<option id="qmcCatchupAll">&nbsp;&nbsp;Mark as read</option>
<option id="qmcShowOnlyUnread">&nbsp;&nbsp;Show only unread</option>
</select>
<input type="submit" class="button" onclick="quickMenuGo()" value="Go">
2005-10-16 16:23:06 +02:00
</td>
</tr>
</table>
</td>
</tr><tr>
2005-08-21 12:13:10 +02:00
<td id="headlines" class="headlines" valign="top">
2005-09-08 06:48:01 +02:00
<iframe frameborder="0" name="headlines-frame"
2005-09-07 09:19:14 +02:00
id="headlines-frame" class="headlinesFrame"
src="backend.php?op=error&msg=No%20feed%20selected."></iframe>
2005-08-21 12:13:10 +02:00
</td>
2005-09-05 14:41:59 +02:00
</tr><tr>
2005-08-21 12:13:10 +02:00
<td class="content" id="content" valign="top">
2005-09-08 06:48:01 +02:00
<iframe frameborder="0" name="content-frame"
id="content-frame" class="contentFrame"> </iframe>
2005-08-21 12:13:10 +02:00
</td>
</tr>
2005-11-16 18:09:27 +01:00
<? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
2005-08-21 12:13:10 +02:00
<tr>
2005-09-07 09:19:14 +02:00
<td colspan="2" class="footer">
2005-11-22 06:57:29 +01:00
<a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
<? if (WEB_DEMO_MODE) { ?>
<br>Running in demo mode, some functionality is disabled.
<? } ?>
2005-08-21 12:13:10 +02:00
</td>
</td>
<? } ?>
2005-08-21 12:13:10 +02:00
</table>
<? db_close($link); ?>
2005-08-21 12:13:10 +02:00
</body>
</html>