]> git.wh0rd.org - tt-rss.git/blob - prefs.php
52eedc6d3c9bb98260d7917dbd8545f2987e5bac
[tt-rss.git] / prefs.php
1 <html>
2 <head>
3 <title>Tiny Tiny RSS</title>
4 <link rel="stylesheet" href="tt-rss.css" type="text/css">
5 <script type="text/javascript" src="functions.js"></script>
6 <script type="text/javascript" src="prefs.js"></script>
7 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
8 </head>
9
10 <body onload="init()">
11
12 <? require_once "version.php" ?>
13 <? require_once "config.php" ?>
14
15 <table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
16 <tr>
17 <td class="header" valign="middle" colspan="2">
18 Preferences
19 </td>
20 </tr>
21 <tr>
22 <td class="toolbar" valign="middle">
23 <table id="notify"><tr><td width="100%" id="notify_body">&nbsp;</td>
24 <td><img onclick="javascript:notify('')" alt="Close"
25 src="images/close.png"></td></table>
26 </td>
27 <td class="toolbar" valign="middle" colspan="2" align="right">
28 <a href="tt-rss.php" class="button">Return to main</a>
29 </td>
30 </tr>
31 </tr>
32 <td id="prefContent" class="prefContent" valign="top" colspan="2">
33 <h2>Feed Configuration</h2><div id="piggie">&nbsp;</div>
34
35
36 <div class="expPane" id="feedConfPane">
37 <a class="button"
38 href="javascript:expandPane('feedConfPane')">Expand section &gt;</a>
39 </div>
40
41 <h2>OPML Import</h2>
42
43 <div class="expPane">
44
45 <form enctype="multipart/form-data" method="POST" action="opml.php">
46 File: <input id="opml_file" name="opml_file" type="file">&nbsp;
47 <input class="button" name="op" onclick="return validateOpmlImport();"
48 type="submit" value="Import">
49 </form>
50
51 </div>
52
53 <h2>Content Filtering</h2>
54
55 <div class="expPane" id="filterConfPane">
56 <a class="button"
57 href="javascript:expandPane('filterConfPane')">Expand section &gt;</a>
58
59 </div>
60
61 </td>
62 </tr>
63 <tr>
64 <td colspan="2" class="notify">
65 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
66 <? if (WEB_DEMO_MODE) { ?>
67 <br>Running in demo mode, some functionality is disabled.
68 <? } ?>
69 </td>
70 </td>
71 </table>
72
73
74 </body>
75 </html>