]> git.wh0rd.org - tt-rss.git/blob - prefs.php
tabbed preferences
[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="prefsTabs" align="left" valign="bottom">
35 <input id="feedConfigTab" class="prefsTab" type="submit" value="Feed Configuration"
36 onclick="selectTab('feedConfig')">
37 <input id="filterConfigTab" class="prefsTab" type="submit" value="Content Filtering"
38 onclick="selectTab('filterConfig')">
39 <? if (ENABLE_LABELS) { ?>
40 <input id="labelConfigTab" class="prefsTab" type="submit" value="Label Editor"
41 onclick="selectTab('labelConfig')">
42 <? } ?>
43 </td>
44 <td class="prefsToolbar" valign="middle" align="right">
45 <input type="submit" onclick="gotoMain()" class="button" value="Return to main">
46 </td>
47 </tr>
48 </tr>
49 <td id="prefContent" class="prefContent" valign="top" colspan="2">
50
51 <p>Loading, please wait...</p>
52
53 </td>
54 </tr>
55 <? if (DISPLAY_FOOTER) { ?>
56 <tr>
57 <td class="footer">
58 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
59 <? if (WEB_DEMO_MODE) { ?>
60 <br>Running in demo mode, some functionality is disabled.
61 <? } ?>
62 </td>
63 </td>
64 <? } ?>
65 </table>
66
67
68 </body>
69 </html>