2005-08-21 12:13:10 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Tiny Tiny RSS</title>
|
|
|
|
<link rel="stylesheet" href="tt-rss.css" type="text/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-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>
|
|
|
|
|
2005-08-25 15:35:59 +02:00
|
|
|
<? require_once "version.php" ?>
|
2005-08-23 13:35:44 +02:00
|
|
|
<? require_once "config.php" ?>
|
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
<body onload="init()">
|
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
|
2005-08-21 12:13:10 +02:00
|
|
|
<tr>
|
2005-08-21 13:11:53 +02:00
|
|
|
<td class="header" valign="middle" colspan="2">
|
|
|
|
Tiny Tiny RSS
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-08-22 06:56:40 +02:00
|
|
|
<td class="toolbar" colspan="2">
|
|
|
|
<table width="100%" cellspacing="0" cellpadding="0">
|
|
|
|
<td valign="middle"> <div id="notify"> </div></td>
|
|
|
|
<td class="toolbar" valign="middle" align="right">
|
|
|
|
<a href="prefs.php" class="button">Preferences</a></td>
|
|
|
|
</tr></table>
|
2005-08-21 12:13:10 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-09-05 14:02:00 +02:00
|
|
|
<td valign="top" rowspan="3" class="feeds">
|
2005-08-28 07:48:32 +02:00
|
|
|
|
|
|
|
<div id="feeds"> </div>
|
|
|
|
|
|
|
|
<p align="center">All feeds:
|
|
|
|
|
|
|
|
<a class="button"
|
|
|
|
href="javascript:scheduleFeedUpdate(true)">Update</a>
|
|
|
|
|
|
|
|
<a class="button"
|
|
|
|
href="javascript:catchupAllFeeds()">Mark as read</a></p>
|
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
</td>
|
2005-09-05 14:02:00 +02:00
|
|
|
<td valign="top" class="headlinesToolbarBox">
|
|
|
|
<table width="100%">
|
|
|
|
<!-- <tr><td id="headlinesTitle" class="headlinesTitle">
|
|
|
|
|
|
|
|
</td></tr> -->
|
|
|
|
<tr><td class="headlinesToolbar">
|
|
|
|
Search: <input id="searchbox"
|
|
|
|
onblur="javascript:enableHotkeys()" onfocus="javascript:disableHotkeys()"
|
|
|
|
onchange="javascript:search()">
|
|
|
|
<a class="button" href="javascript:resetSearch()">Reset</a>
|
|
|
|
|
|
|
|
View:
|
|
|
|
|
|
|
|
<select id="viewbox" onchange="javascript:viewCurrentFeed(0, '')">
|
|
|
|
<option>All Posts</option>
|
|
|
|
<option>Starred</option>
|
|
|
|
</select>
|
|
|
|
|
2005-09-05 14:54:07 +02:00
|
|
|
Limit:
|
|
|
|
|
|
|
|
<select id="limitbox" onchange="javascript:viewCurrentFeed(0, '')">
|
|
|
|
<option>15</option>
|
|
|
|
<option>30</option>
|
|
|
|
<option>60</option>
|
|
|
|
<option>All</option>
|
|
|
|
</select>
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
Feed: <a class="button"
|
|
|
|
href="javascript:viewCurrentFeed(0, 'ForceUpdate')">Update</a>
|
|
|
|
|
|
|
|
<a class="button"
|
|
|
|
href="javascript:viewCurrentFeed(0, 'MarkAllRead')">Mark as read</a>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr><tr>
|
2005-08-21 12:13:10 +02:00
|
|
|
<td id="headlines" class="headlines" valign="top">
|
2005-09-05 14:02:00 +02:00
|
|
|
<iframe name="headlines-frame"
|
|
|
|
id="headlines-frame" class="headlinesFrame"> </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-05 14:02:00 +02:00
|
|
|
<iframe name="content-frame" id="content-frame" class="contentFrame"> </iframe>
|
2005-08-21 12:13:10 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-08-22 06:56:40 +02:00
|
|
|
<td colspan="2" class="notify">
|
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>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|