2005-10-16 06:51:09 +02:00
|
|
|
<? require_once "version.php" ?>
|
|
|
|
<? require_once "config.php" ?>
|
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Tiny Tiny RSS</title>
|
2005-10-16 06:51:09 +02:00
|
|
|
|
|
|
|
<? if (USE_COMPACT_STYLESHEET) { ?>
|
|
|
|
|
|
|
|
<link title="Compact Stylesheet"
|
|
|
|
rel="stylesheet" href="tt-rss_compact.css" type="text/css">
|
|
|
|
<link title="Normal Stylesheet" rel="alternate stylesheet"
|
|
|
|
type="text/css" href="tt-rss.css"/>
|
|
|
|
|
|
|
|
<? } else { ?>
|
|
|
|
|
|
|
|
<link title="Normal Stylesheet"
|
|
|
|
rel="stylesheet" href="tt-rss.css" type="text/css">
|
|
|
|
<link title="Compact Stylesheet" rel="alternate stylesheet"
|
|
|
|
type="text/css" href="tt-rss_compact.css"/>
|
|
|
|
|
|
|
|
<? } ?>
|
|
|
|
|
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-10-16 16:10:14 +02:00
|
|
|
<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
|
2005-10-16 06:51:09 +02:00
|
|
|
<? if (DISPLAY_HEADER) { ?>
|
2005-08-21 12:13:10 +02:00
|
|
|
<tr>
|
2005-10-16 16:30:51 +02:00
|
|
|
<td colspan="2" class="headerBox">
|
2005-10-16 16:10:14 +02:00
|
|
|
<table cellspacing="0" cellpadding="0" width="100%"><tr>
|
|
|
|
<td class="header" valign="middle">
|
|
|
|
<img src="images/ttrss_logo.png" alt="logo">
|
|
|
|
</td>
|
|
|
|
<td align="right" valign="top">
|
|
|
|
<div id="notify"><span id="notify_body"></div>
|
|
|
|
</td>
|
|
|
|
</tr></table>
|
2005-08-21 13:11:53 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2005-10-16 06:51:09 +02:00
|
|
|
<? } ?>
|
2005-08-21 12:13:10 +02:00
|
|
|
<tr>
|
2005-09-05 14:02:00 +02:00
|
|
|
<td valign="top" rowspan="3" class="feeds">
|
2005-08-28 07:48:32 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
<!-- <div id="feeds"> </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"
|
|
|
|
id="feeds-frame" name="feeds-frame" class="feedsFrame"> </iframe>
|
2005-08-28 07:48:32 +02:00
|
|
|
|
|
|
|
<p align="center">All feeds:
|
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
<input class="button" type="submit"
|
|
|
|
onclick="javascript:scheduleFeedUpdate(true)" value="Update">
|
|
|
|
|
|
|
|
<input class="button" type="submit"
|
2005-09-06 19:12:10 +02:00
|
|
|
onclick="javascript:catchupAllFeeds()" value="Mark as read">
|
|
|
|
|
|
|
|
</p>
|
2005-08-28 07:48:32 +02:00
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
</td>
|
2005-09-05 14:02:00 +02:00
|
|
|
<td valign="top" class="headlinesToolbarBox">
|
2005-09-07 09:19:14 +02:00
|
|
|
<table width="100%" cellpadding="0" cellspacing="0">
|
2005-09-06 06:14:17 +02:00
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
<!-- <tr><td id="headlinesTitle" class="headlinesTitle">
|
|
|
|
|
|
|
|
</td></tr> -->
|
2005-09-06 06:14:17 +02:00
|
|
|
<tr><td class="headlinesToolbar" id="headlinesToolbar">
|
2005-09-11 05:02:23 +02:00
|
|
|
<input id="searchbox"
|
2005-09-05 14:02:00 +02:00
|
|
|
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>
|
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
<input type="submit"
|
2005-09-11 05:02:23 +02:00
|
|
|
class="button" onclick="javascript:search()" value="Search">
|
|
|
|
<!-- <input type="submit"
|
|
|
|
class="button" onclick="javascript:resetSearch()" value="Reset"> -->
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
View:
|
|
|
|
|
|
|
|
<select id="viewbox" onchange="javascript:viewCurrentFeed(0, '')">
|
2005-09-08 15:05:48 +02:00
|
|
|
<option>All Articles</option>
|
2005-09-05 14:02:00 +02:00
|
|
|
<option>Starred</option>
|
2005-09-06 06:14:17 +02:00
|
|
|
<option selected>Unread</option>
|
2005-10-16 16:37:15 +02:00
|
|
|
<option>Unread or Starred</option>
|
2005-09-05 14:02:00 +02:00
|
|
|
</select>
|
|
|
|
|
2005-09-05 14:54:07 +02:00
|
|
|
Limit:
|
|
|
|
|
|
|
|
<select id="limitbox" onchange="javascript:viewCurrentFeed(0, '')">
|
|
|
|
<option>15</option>
|
2005-09-06 06:14:17 +02:00
|
|
|
<option selected>30</option>
|
2005-09-05 14:54:07 +02:00
|
|
|
<option>60</option>
|
|
|
|
<option>All</option>
|
|
|
|
</select>
|
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
Feed: <input class="button" type="submit"
|
|
|
|
onclick="javascript:viewCurrentFeed(0, 'ForceUpdate')" value="Update">
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
<input class="button" type="submit"
|
|
|
|
onclick="javascript:viewCurrentFeed(0, 'MarkAllRead')" value="Mark as read">
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2005-10-16 16:23:06 +02:00
|
|
|
</td>
|
|
|
|
<td align="right">
|
|
|
|
<input type="submit" onclick="gotoPreferences()"
|
|
|
|
class="button" value="Preferences"></td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2005-09-05 14:02:00 +02:00
|
|
|
</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-10-16 06:51:09 +02:00
|
|
|
<? if (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-08-25 18:08:32 +02:00
|
|
|
<a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> © 2005 Andrew Dolgov
|
2005-08-23 13:35:44 +02:00
|
|
|
<? if (WEB_DEMO_MODE) { ?>
|
|
|
|
<br>Running in demo mode, some functionality is disabled.
|
|
|
|
<? } ?>
|
2005-08-21 12:13:10 +02:00
|
|
|
</td>
|
|
|
|
</td>
|
2005-10-16 06:51:09 +02:00
|
|
|
<? } ?>
|
2005-08-21 12:13:10 +02:00
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|