131 lines
3.7 KiB
PHP
131 lines
3.7 KiB
PHP
<html>
|
|
<head>
|
|
<title>Tiny Tiny RSS</title>
|
|
<link rel="stylesheet" href="tt-rss.css" type="text/css">
|
|
<script type="text/javascript" src="functions.js"></script>
|
|
<script type="text/javascript" src="tt-rss.js"></script>
|
|
<!--[if gte IE 5.5000]>
|
|
<script type="text/javascript" src="pngfix.js"></script>
|
|
<![endif]-->
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
</head>
|
|
|
|
<? require_once "version.php" ?>
|
|
<? require_once "config.php" ?>
|
|
|
|
<body onload="init()">
|
|
|
|
<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
|
|
<tr>
|
|
<td class="header" valign="middle" colspan="2">
|
|
<img src="images/ttrss_logo.png" alt="logo">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="mainToolbar" colspan="2">
|
|
|
|
<table width='100%' cellspacing='0' cellpadding='0'>
|
|
<td><span id="notify"><span id="notify_body"></span></td>
|
|
<td align='right'>
|
|
<input type="submit" onclick="gotoPreferences()"
|
|
class="button" value="Preferences"></td>
|
|
</table>
|
|
|
|
<!-- <table width="100%" cellspacing="0" cellpadding="0">
|
|
<td valign="middle">
|
|
<table id="notify"><tr><td width="100%" id="notify_body"> </td>
|
|
<td><img onclick="javascript:notify('')" alt="Close"
|
|
src="images/close.png"></td></table>
|
|
</td>
|
|
<td class="toolbar" valign="middle" align="right">
|
|
<a href="prefs.php" class="button">Preferences</a></td>
|
|
</tr></table> -->
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" rowspan="3" class="feeds">
|
|
|
|
<!-- <div id="feeds"> </div> -->
|
|
|
|
<div id="dispSwitch">
|
|
<a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
|
|
</div>
|
|
|
|
<iframe frameborder="0"
|
|
id="feeds-frame" name="feeds-frame" class="feedsFrame"> </iframe>
|
|
|
|
<p align="center">All feeds:
|
|
|
|
<input class="button" type="submit"
|
|
onclick="javascript:scheduleFeedUpdate(true)" value="Update">
|
|
|
|
<input class="button" type="submit"
|
|
onclick="javascript:catchupAllFeeds()" value="Mark as read">
|
|
|
|
</p>
|
|
|
|
</td>
|
|
<td valign="top" class="headlinesToolbarBox">
|
|
<table width="100%" cellpadding="0" cellspacing="0">
|
|
|
|
<!-- <tr><td id="headlinesTitle" class="headlinesTitle">
|
|
|
|
</td></tr> -->
|
|
<tr><td class="headlinesToolbar" id="headlinesToolbar">
|
|
Search: <input id="searchbox"
|
|
onblur="javascript:enableHotkeys()" onfocus="javascript:disableHotkeys()"
|
|
onchange="javascript:search()">
|
|
<input type="submit"
|
|
class="button" onclick="javascript:resetSearch()" value="Reset">
|
|
|
|
View:
|
|
|
|
<select id="viewbox" onchange="javascript:viewCurrentFeed(0, '')">
|
|
<option>All Articles</option>
|
|
<option>Starred</option>
|
|
<option selected>Unread</option>
|
|
</select>
|
|
|
|
Limit:
|
|
|
|
<select id="limitbox" onchange="javascript:viewCurrentFeed(0, '')">
|
|
<option>15</option>
|
|
<option selected>30</option>
|
|
<option>60</option>
|
|
<option>All</option>
|
|
</select>
|
|
|
|
Feed: <input class="button" type="submit"
|
|
onclick="javascript:viewCurrentFeed(0, 'ForceUpdate')" value="Update">
|
|
|
|
<input class="button" type="submit"
|
|
onclick="javascript:viewCurrentFeed(0, 'MarkAllRead')" value="Mark as read">
|
|
|
|
</td></tr>
|
|
</table>
|
|
</td>
|
|
</tr><tr>
|
|
<td id="headlines" class="headlines" valign="top">
|
|
<iframe frameborder="0" name="headlines-frame"
|
|
id="headlines-frame" class="headlinesFrame"
|
|
src="backend.php?op=error&msg=No%20feed%20selected."></iframe>
|
|
</td>
|
|
</tr><tr>
|
|
<td class="content" id="content" valign="top">
|
|
<iframe frameborder="0" name="content-frame"
|
|
id="content-frame" class="contentFrame"> </iframe>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="footer">
|
|
<a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> © 2005 Andrew Dolgov
|
|
<? if (WEB_DEMO_MODE) { ?>
|
|
<br>Running in demo mode, some functionality is disabled.
|
|
<? } ?>
|
|
</td>
|
|
</td>
|
|
</table>
|
|
|
|
|
|
</body>
|
|
</html>
|