]> git.wh0rd.org - tt-rss.git/blob - prefs.php
disallow ability to link the feed to itself
[tt-rss.git] / prefs.php
1 <?
2 session_start();
3
4 require_once "sanity_check.php";
5 require_once "version.php";
6 require_once "config.php";
7 require_once "db-prefs.php";
8 require_once "functions.php";
9
10 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
11
12 login_sequence($link);
13 ?>
14 <html>
15 <head>
16 <title>Tiny Tiny RSS : Preferences</title>
17 <link rel="stylesheet" href="tt-rss.css" type="text/css">
18
19 <? $user_theme = $_SESSION["theme"];
20 if ($user_theme) { ?>
21 <link rel="stylesheet" type="text/css" href="themes/<?= $user_theme ?>/theme.css">
22 <? } ?>
23
24 <? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
25 <? if ($user_css_url) { ?>
26 <link type="text/css" href="<?= $user_css_url ?>"/>
27 <? } ?>
28
29 <? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
30
31 <link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
32
33 <? } else { ?>
34
35 <link title="Compact Stylesheet" rel="alternate stylesheet"
36 type="text/css" href="tt-rss_compact.css"/>
37
38 <? } ?>
39
40
41 <script type="text/javascript" src="functions.js"></script>
42 <script type="text/javascript" src="prefs.js"></script>
43
44 <!--[if gte IE 5.5000]>
45 <script type="text/javascript" src="pngfix.js"></script>
46 <![endif]-->
47 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
48 </head>
49
50 <body onload="init()">
51
52 <table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
53 <? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
54 <tr>
55 <td colspan="2">
56 <table cellspacing="0" cellpadding="0" width="100%"><tr>
57 <td rowspan="2" class="header" valign="middle">
58 <img src="images/ttrss_logo.png" alt="logo">
59 </td>
60 <td valign="top" class="notifyBox">
61 <div id="notify"><span id="notify_body">&nbsp;</span></div>
62 </td>
63 </tr><tr><td class="welcomePrompt">
64 <? if (!SINGLE_USER_MODE) { ?>
65 Hello, <b><?= $_SESSION["name"] ?></b>
66 (<a href="logout.php">Logout</a>)
67 <? } ?>
68 </td>
69 </tr></table>
70 </td>
71 </tr>
72 <? } else { ?>
73 <tr>
74 <td class="small">
75 <div id="notify"><span id="notify_body">&nbsp;</span></div>
76 <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
77 </td><td class="welcomePrompt">
78 <? if (!SINGLE_USER_MODE) { ?>
79 Hello, <b><?= $_SESSION["name"] ?></b>
80 (<a href="logout.php">Logout</a>)
81 <? } ?>
82 </td></tr>
83 <? } ?>
84 <tr>
85 <td class="prefsTabs" align="left" valign="bottom">
86 <input id="genConfigTab" class="prefsTab" type="submit" value="Preferences"
87 onclick="selectTab('genConfig')">
88 <input id="feedConfigTab" class="prefsTab" type="submit" value="Feed Configuration"
89 onclick="selectTab('feedConfig')">
90 <input id="feedBrowserTab" class="prefsTab" type="submit" value="Feed Browser"
91 onclick="selectTab('feedBrowser')">
92 <input id="filterConfigTab" class="prefsTab" type="submit" value="Content Filtering"
93 onclick="selectTab('filterConfig')">
94 <? if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) { ?>
95 <input id="labelConfigTab" class="prefsTab" type="submit" value="Label Editor"
96 onclick="selectTab('labelConfig')">
97 <? } ?>
98 <? if ($_SESSION["access_level"] >= 10) { ?>
99 <input id="userConfigTab" class="prefsTab" type="submit" value="User Manager"
100 onclick="selectTab('userConfig')">
101 <? } ?>
102 </td>
103 <td class="prefsToolbar" valign="middle" align="right">
104 <input type="submit" onclick="gotoMain()" class="button" value="Return to main">
105 </td>
106 </tr>
107 </tr>
108 <td id="prefContent" class="prefContent" valign="top" colspan="2">
109
110 <p>Loading, please wait...</p>
111
112 </td>
113 </tr>
114 <? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
115 <tr>
116 <td class="footer" colspan="2">
117 <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
118 <? if (WEB_DEMO_MODE) { ?>
119 <br>Running in demo mode, some functionality is disabled.
120 <? } ?>
121 </td>
122 </td>
123 <? } ?>
124 </table>
125
126 <? db_close($link); ?>
127
128 </body>
129 </html>