ttrss/prefs.php

70 lines
1.7 KiB
PHP
Raw Normal View History

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">&nbsp;</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-25 17:26:33 +02:00
<td id="prefContent" class="prefContent" valign="top" colspan="2">
2005-08-22 03:17:12 +02:00
<h2>Feed Configuration</h2>
<!--
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>
</table>
-->
<div id="piggie">&nbsp;</div>
2005-08-22 03:17:12 +02:00
<div id="feeds">&nbsp;</div>
2005-08-22 07:23:49 +02:00
<p>Selection:&nbsp;
<a class="button"
href="javascript:editSelectedFeed()">Edit</a>&nbsp;
2005-08-22 07:23:49 +02:00
<a class="buttonWarn"
href="javascript:removeSelectedFeeds()">Remove</a>&nbsp;
<a class="button"
href="javascript:readSelectedFeeds()">Mark as read</a>&nbsp;
<a class="button"
href="javascript:unreadSelectedFeeds()">Mark as unread</a>&nbsp;
2005-08-22 07:38:07 +02:00
<a class="button"
href="javascript:updateFeedList()">Refresh</a>&nbsp;
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 ?> &copy; 2005 Andrew Dolgov
2005-08-22 03:17:12 +02:00
</td>
</td>
</table>
</body>
</html>