]> git.wh0rd.org - tt-rss.git/blob - prefs.php
change ttrss_entries.title type to text
[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 <? if (ENABLE_LABELS) { ?>
64
65 <h2>Label Editor</h2>
66
67 <div class="expPane" id="labelConfPane">
68 <a class="button"
69 href="javascript:expandPane('labelConfPane')">Expand section &gt;</a>
70
71 </div>
72
73 <? } ?>
74
75 </td>
76 </tr>
77 <tr>
78 <td class="footer">
79 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
80 <? if (WEB_DEMO_MODE) { ?>
81 <br>Running in demo mode, some functionality is disabled.
82 <? } ?>
83 </td>
84 </td>
85 </table>
86
87
88 </body>
89 </html>