2005-08-22 03:17:12 +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-22 03:17:12 +02:00
|
|
|
<script type="text/javascript" src="prefs.js"></script>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="init()">
|
|
|
|
|
2005-08-25 15:35:59 +02:00
|
|
|
<? require_once "version.php" ?>
|
2005-08-23 16:47:46 +02:00
|
|
|
<? require_once "config.php" ?>
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
|
|
|
|
<tr>
|
2005-08-22 05:20:00 +02:00
|
|
|
<td class="header" valign="middle" colspan="2">
|
2005-08-22 03:17:12 +02:00
|
|
|
Preferences
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-08-22 05:20:00 +02:00
|
|
|
<td class="toolbar" valign="middle">
|
|
|
|
<div id="notify"> </div>
|
|
|
|
</td>
|
|
|
|
<td class="toolbar" valign="middle" colspan="2" align="right">
|
|
|
|
<a href="tt-rss.php" class="button">Return to main</a>
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
2005-08-22 06:56:40 +02:00
|
|
|
<td class="prefContent" valign="top" colspan="2">
|
2005-08-22 03:17:12 +02:00
|
|
|
<h2>Feed Configuration</h2>
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
<!--
|
2005-08-22 05:20:00 +02:00
|
|
|
<table class="prefAddFeed">
|
2005-08-22 06:56:40 +02:00
|
|
|
<td><input id="fadd_link"></td>
|
|
|
|
<td colspan="4" align="right">
|
2005-08-22 05:20:00 +02:00
|
|
|
<a class="button" href="javascript:addFeed()">Add feed</a></td></tr>
|
2005-08-24 10:02:58 +02:00
|
|
|
</table>
|
|
|
|
-->
|
|
|
|
<div id="piggie"> </div>
|
2005-08-22 03:17:12 +02:00
|
|
|
|
|
|
|
<div id="feeds"> </div>
|
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
<p>Selection:
|
2005-08-24 10:02:58 +02:00
|
|
|
<a class="button"
|
|
|
|
href="javascript:editSelectedFeed()">Edit</a>
|
2005-08-22 07:23:49 +02:00
|
|
|
<a class="buttonWarn"
|
|
|
|
href="javascript:removeSelectedFeeds()">Remove</a>
|
|
|
|
<a class="button"
|
|
|
|
href="javascript:readSelectedFeeds()">Mark as read</a>
|
|
|
|
<a class="button"
|
|
|
|
href="javascript:unreadSelectedFeeds()">Mark as unread</a>
|
2005-08-22 07:38:07 +02:00
|
|
|
<a class="button"
|
|
|
|
href="javascript:updateFeedList()">Refresh</a>
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
<hr>
|
2005-08-22 05:20:00 +02:00
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-08-22 05:20:00 +02:00
|
|
|
<td colspan="2" class="notify">
|
2005-08-23 16:47:46 +02:00
|
|
|
<a href="">Tiny-Tiny RSS</a> v<?= VERSION ?> © 2005 Andrew Dolgov
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|