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