]> git.wh0rd.org - tt-rss.git/blame - prefs.php
rename schema upgrade file
[tt-rss.git] / prefs.php
CommitLineData
007bda35
AD
1<html>
2<head>
e828e31e 3 <title>Tiny Tiny RSS : Preferences</title>
007bda35 4 <link rel="stylesheet" href="tt-rss.css" type="text/css">
331900c6 5 <script type="text/javascript" src="functions.js"></script>
007bda35 6 <script type="text/javascript" src="prefs.js"></script>
25cb5736
AD
7 <!--[if gte IE 5.5000]>
8 <script type="text/javascript" src="pngfix.js"></script>
9 <![endif]-->
007bda35
AD
10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
11</head>
12
13<body onload="init()">
14
edb988ad 15<? require_once "version.php" ?>
f07c0eb4
AD
16<? require_once "config.php" ?>
17
e828e31e 18<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
da5d0d09 19<? if (DISPLAY_HEADER) { ?>
007bda35 20<tr>
828a8ecc
AD
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>
007bda35
AD
30 </td>
31</tr>
da5d0d09 32<? } ?>
007bda35 33<tr>
f5a50b25
AD
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">
828a8ecc
AD
45 <input type="submit" onclick="gotoMain()" class="button" value="Return to main">
46 </td>
f5a50b25 47 </tr>
007bda35 48</tr>
f5a50b25 49 <td id="prefContent" class="prefContent" valign="top" colspan="2">
a0d53889 50
f5a50b25 51 <p>Loading, please wait...</p>
48f0adb0 52
007bda35
AD
53 </td>
54</tr>
da5d0d09 55<? if (DISPLAY_FOOTER) { ?>
007bda35 56<tr>
faa1c034 57 <td class="footer" colspan="2">
7936e979
AD
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 <? } ?>
007bda35
AD
62 </td>
63</td>
da5d0d09 64<? } ?>
007bda35
AD
65</table>
66
67
68</body>
69</html>