]> git.wh0rd.org - tt-rss.git/blame - prefs.php
reworked preferences dialog, start work on post filters (schema updated)
[tt-rss.git] / prefs.php
CommitLineData
007bda35
AD
1<html>
2<head>
3 <title>Tiny Tiny RSS</title>
4 <link rel="stylesheet" href="tt-rss.css" type="text/css">
331900c6 5 <script type="text/javascript" src="functions.js"></script>
007bda35
AD
6 <script type="text/javascript" src="prefs.js"></script>
7 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
8</head>
9
10<body onload="init()">
11
edb988ad 12<? require_once "version.php" ?>
f07c0eb4
AD
13<? require_once "config.php" ?>
14
007bda35
AD
15<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
16<tr>
71ad3959 17 <td class="header" valign="middle" colspan="2">
007bda35
AD
18 Preferences
19 </td>
20</tr>
21<tr>
71ad3959
AD
22 <td class="toolbar" valign="middle">
23 <div id="notify">&nbsp;</div>
24 </td>
25 <td class="toolbar" valign="middle" colspan="2" align="right">
26 <a href="tt-rss.php" class="button">Return to main</a>
007bda35
AD
27 </td>
28</tr>
29</tr>
e2ec66a8 30 <td id="prefContent" class="prefContent" valign="top" colspan="2">
603c27f8 31
a0d53889 32 <h2>Feed Configuration</h2>
007bda35 33
a0d53889
AD
34 <div class="expPane" id="feedConfPane">
35 <a href="javascript:expandPane('feedConfPane')">Click to expand &gt;&gt;</a>
36 </div>
9f311df6 37
a0d53889 38 <h2>OPML Import</h2>
9f311df6 39
a0d53889
AD
40 <div class="expPane">
41
9f311df6
AD
42 <form enctype="multipart/form-data" method="POST" action="opml.php">
43 <input type="hidden" name="MAX_FILE_SIZE" value="30000">
44 File: <input id="opml_file" name="opml_file" type="file">&nbsp;
45 <input class="button" name="op" onclick="return validateOpmlImport();"
46 type="submit" value="Import">
47 </form>
a0d53889
AD
48
49 </div>
50
51 <h2>Content filtering</h2>
52
53 <div class="expPane" id="filterConfPane">
54 <a href="javascript:expandPane('filterConfPane')">Click to expand &gt;&gt;</a>
55 </div>
56
007bda35
AD
57 </td>
58</tr>
59<tr>
71ad3959 60 <td colspan="2" class="notify">
7936e979
AD
61 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
62 <? if (WEB_DEMO_MODE) { ?>
63 <br>Running in demo mode, some functionality is disabled.
64 <? } ?>
007bda35
AD
65 </td>
66</td>
67</table>
68
69
70</body>
71</html>