]> git.wh0rd.org - tt-rss.git/blame - prefs.php
made header a little bit smaller
[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>
e828e31e
AD
21 <td class="header" valign="middle">
22 <img src="images/ttrss_logo.png" alt="logo">
007bda35
AD
23 </td>
24</tr>
da5d0d09 25<? } ?>
007bda35 26<tr>
0eef53fe 27 <td class="prefsToolbar" valign="middle">
e828e31e
AD
28
29 <table width='100%' cellspacing='0' cellpadding='0'>
30 <td><span id="notify"><span id="notify_body"></span></td>
31 <td align='right'>
32 <input type="submit" onclick="gotoMain()"
33 class="button" value="Return to main"></td>
34 </table>
007bda35
AD
35</tr>
36</tr>
e828e31e 37 <td id="prefContent" class="prefContent" valign="top">
ea6774cf 38 <h2>Feed Configuration</h2><div id="piggie">&nbsp;</div>
603c27f8 39
a0d53889 40 <div class="expPane" id="feedConfPane">
ea6774cf
AD
41 <a class="button"
42 href="javascript:expandPane('feedConfPane')">Expand section &gt;</a>
a0d53889 43 </div>
9f311df6 44
a0d53889 45 <h2>OPML Import</h2>
9f311df6 46
a0d53889
AD
47 <div class="expPane">
48
9f311df6 49 <form enctype="multipart/form-data" method="POST" action="opml.php">
9f311df6
AD
50 File: <input id="opml_file" name="opml_file" type="file">&nbsp;
51 <input class="button" name="op" onclick="return validateOpmlImport();"
52 type="submit" value="Import">
53 </form>
a0d53889
AD
54
55 </div>
56
ea6774cf 57 <h2>Content Filtering</h2>
a0d53889
AD
58
59 <div class="expPane" id="filterConfPane">
ea6774cf
AD
60 <a class="button"
61 href="javascript:expandPane('filterConfPane')">Expand section &gt;</a>
62
a0d53889
AD
63 </div>
64
48f0adb0
AD
65 <? if (ENABLE_LABELS) { ?>
66
67 <h2>Label Editor</h2>
68
69 <div class="expPane" id="labelConfPane">
70 <a class="button"
71 href="javascript:expandPane('labelConfPane')">Expand section &gt;</a>
72
73 </div>
74
75 <? } ?>
76
007bda35
AD
77 </td>
78</tr>
da5d0d09 79<? if (DISPLAY_FOOTER) { ?>
007bda35 80<tr>
e828e31e 81 <td class="footer">
7936e979
AD
82 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
83 <? if (WEB_DEMO_MODE) { ?>
84 <br>Running in demo mode, some functionality is disabled.
85 <? } ?>
007bda35
AD
86 </td>
87</td>
da5d0d09 88<? } ?>
007bda35
AD
89</table>
90
91
92</body>
93</html>