]> git.wh0rd.org - tt-rss.git/blob - prefs.php
17b93f47a1d8ec740230a591ef3db2ec0b8e8a22
[tt-rss.git] / prefs.php
1 <html>
2 <head>
3 <title>Tiny Tiny RSS : Preferences</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 <!--[if gte IE 5.5000]>
8 <script type="text/javascript" src="pngfix.js"></script>
9 <![endif]-->
10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
11 </head>
12
13 <body onload="init()">
14
15 <? require_once "version.php" ?>
16 <? require_once "config.php" ?>
17
18 <table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
19 <? if (DISPLAY_HEADER) { ?>
20 <tr>
21 <td colspan="2">
22 <table cellspacing="0" cellpadding="0" width="100%"><tr>
23 <td class="header" valign="middle">
24 <img src="images/ttrss_logo.png" alt="logo">
25 </td>
26 <td align="right" valign="top">
27 <div id="notify"><span id="notify_body"></div>
28 </td>
29 </tr></table>
30 </td>
31 </tr>
32 <? } ?>
33 <tr>
34 <td class="prefsToolbar" valign="middle" align="right">
35 <input type="submit" onclick="gotoMain()" class="button" value="Return to main">
36 </td>
37 </tr>
38 </tr>
39 <td id="prefContent" class="prefContent" valign="top">
40 <h2>Feed Configuration</h2><div id="piggie">&nbsp;</div>
41
42 <div class="expPane" id="feedConfPane">
43 <a class="button"
44 href="javascript:expandPane('feedConfPane')">Expand section &gt;</a>
45 </div>
46
47 <h2>OPML Import</h2>
48
49 <div class="expPane">
50
51 <form enctype="multipart/form-data" method="POST" action="opml.php">
52 File: <input id="opml_file" name="opml_file" type="file">&nbsp;
53 <input class="button" name="op" onclick="return validateOpmlImport();"
54 type="submit" value="Import">
55 </form>
56
57 </div>
58
59 <h2>Content Filtering</h2>
60
61 <div class="expPane" id="filterConfPane">
62 <a class="button"
63 href="javascript:expandPane('filterConfPane')">Expand section &gt;</a>
64
65 </div>
66
67 <? if (ENABLE_LABELS) { ?>
68
69 <h2>Label Editor</h2>
70
71 <div class="expPane" id="labelConfPane">
72 <a class="button"
73 href="javascript:expandPane('labelConfPane')">Expand section &gt;</a>
74
75 </div>
76
77 <? } ?>
78
79 </td>
80 </tr>
81 <? if (DISPLAY_FOOTER) { ?>
82 <tr>
83 <td class="footer">
84 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
85 <? if (WEB_DEMO_MODE) { ?>
86 <br>Running in demo mode, some functionality is disabled.
87 <? } ?>
88 </td>
89 </td>
90 <? } ?>
91 </table>
92
93
94 </body>
95 </html>