]> git.wh0rd.org Git - tt-rss.git/blob - prefs.php
made header a little bit smaller
[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 class="header" valign="middle">     
22                 <img src="images/ttrss_logo.png" alt="logo">    
23         </td>
24 </tr>
25 <? } ?>
26 <tr>
27         <td class="prefsToolbar" valign="middle">
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>
35 </tr>
36 </tr>
37         <td id="prefContent" class="prefContent" valign="top">
38                 <h2>Feed Configuration</h2><div id="piggie">&nbsp;</div>
39
40                 <div class="expPane" id="feedConfPane">
41                         <a class="button" 
42                                 href="javascript:expandPane('feedConfPane')">Expand section &gt;</a>
43                 </div>
44
45                 <h2>OPML Import</h2>
46
47                 <div class="expPane">
48         
49                 <form   enctype="multipart/form-data" method="POST" action="opml.php">
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>
54
55                 </div>
56
57                 <h2>Content Filtering</h2>
58
59                 <div class="expPane" id="filterConfPane">
60                         <a class="button" 
61                                 href="javascript:expandPane('filterConfPane')">Expand section &gt;</a>
62
63                 </div>
64
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
77         </td>
78 </tr>
79 <? if (DISPLAY_FOOTER) { ?>
80 <tr>
81         <td class="footer">
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                 <? } ?>
86         </td>
87 </td>
88 <? } ?>
89 </table>
90
91
92 </body>
93 </html>