]> git.wh0rd.org - tt-rss.git/blame - prefs.php
getAllCounters: add rate limit (5 sec)
[tt-rss.git] / prefs.php
CommitLineData
1d3a17c7 1<?php
d65981e2
AD
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
7ae65adf 4 require_once "functions.php";
1df0f48b 5 require_once "sessions.php";
66581886 6 require_once "sanity_check.php";
ab49d368
AD
7 require_once "version.php";
8 require_once "config.php";
9 require_once "db-prefs.php";
10
11 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
c93f38c4 12
b8aa49bc 13 login_sequence($link);
53515ff1 14
1b758780 15 $dt_add = get_script_dt_add();
53515ff1 16
dc56b3b7 17 no_cache_incantation();
1df0f48b 18
ab49d368 19?>
3f59e8cd
AD
20<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
21 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
007bda35
AD
22<html>
23<head>
e828e31e 24 <title>Tiny Tiny RSS : Preferences</title>
007bda35 25 <link rel="stylesheet" href="tt-rss.css" type="text/css">
ab49d368 26
1d3a17c7 27 <?php $user_theme = $_SESSION["theme"];
503eb349 28 if ($user_theme) { ?>
1d3a17c7
AD
29 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
30 <?php } ?>
503eb349 31
1d3a17c7 32 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
5d35cdcd 33
1d3a17c7
AD
34 <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
35 <?php if ($user_css_url) { ?>
36 <link type="text/css" href="<?php echo $user_css_url ?>"/>
37 <?php } ?>
386d7b5b 38
c0266b88
AD
39 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
40
14f69488 41 <script type="text/javascript" src="prototype.js"></script>
a7750ac6
AD
42 <script type="text/javascript" src="scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
43
f3977cf5 44 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
14f69488 45
1d3a17c7
AD
46 <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
47 <script type="text/javascript" src="prefs.js?<?php echo $dt_add ?>"></script>
b1895692 48
5f2add13 49 <!--[if lt IE 7]>
25cb5736 50 <script type="text/javascript" src="pngfix.js"></script>
5f2add13 51 <link rel="stylesheet" type="text/css" href="ie6.css">
25cb5736 52 <![endif]-->
5f2add13
AD
53
54 <!--[if IE 7]>
55 <link rel="stylesheet" type="text/css" href="ie7.css">
56 <![endif]-->
57
007bda35 58 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
362698ad
AD
59
60 <script type="text/javascript">
61 if (navigator.userAgent.match("Opera")) {
62 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
63 }
6b9bf6c2
AD
64 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
65 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
66 }
362698ad 67 </script>
007bda35
AD
68</head>
69
97dcd654
AD
70<body>
71
93f66472 72<div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
746dcf42 73 <?php rounded_table_start("hho"); ?>
93f66472 74 <?php include "help/4.php" ?>
746dcf42 75 <?php rounded_table_end(); ?>
93f66472
AD
76</div>
77
746dcf42
AD
78<img id="piggie" src="images/piggie.png" style="display : none" alt="piggie">
79
97dcd654
AD
80<script type="text/javascript">
81if (document.addEventListener) {
82 document.addEventListener("DOMContentLoaded", init, null);
83}
84window.onload = init;
85</script>
007bda35 86
8836613c 87<ul id="debug_output" style='display : none'></ul>
a7565293
AD
88
89<div id="fatal_error"><div id="fatal_error_inner">
90 <h1>Fatal Error</h1>
d1db26aa 91 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
a7565293
AD
92</div></div>
93
3f59e8cd 94<div id="prefHeader">
6352c214
AD
95 <div class="topLinks">
96 <?php if (!SINGLE_USER_MODE) { ?>
efae7595 97 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
6352c214
AD
98 <?php } ?>
99 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
100 <?php if (!SINGLE_USER_MODE) { ?>
101 | <a href="logout.php"><?php echo __('Logout') ?></a>
102 <?php } ?>
103 </div>
3f59e8cd
AD
104 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
105</div>
106
1f8274d3 107<div id="prefTabs">
6352c214 108 <!-- <div class="return">
3692e98f 109 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
6352c214 110 </div> -->
3f59e8cd 111
d1628a4f 112 <div class='prefKbdHelp'>
86deaa0e 113 <img src="images/small_question.png" alt="?"> <a href='#' onclick="Effect.Appear('hotkey_help_overlay', {duration: 0.3})">Keyboard shortcuts</a>
d1628a4f
AD
114 </div>
115
656f4b6c
AD
116 <div class="firstTab">&nbsp;</div>
117
118 <div id="genConfigTab" class="prefsTab"
d1db26aa 119 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
656f4b6c 120 <div id="feedConfigTab" class="prefsTab"
d1db26aa 121 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
1d3a17c7 122 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
656f4b6c 123 <div id="feedBrowserTab" class="prefsTab"
d1db26aa 124 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
1d3a17c7 125 <?php } ?>
e4f4b46f
AD
126 <!-- <div id="pubItemsTab" class="prefsTab"
127 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
656f4b6c 128 <div id="filterConfigTab" class="prefsTab"
d1db26aa 129 onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
1d3a17c7 130 <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
656f4b6c 131 <div id="labelConfigTab" class="prefsTab"
d1db26aa 132 onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
1d3a17c7
AD
133 <?php } ?>
134 <?php if ($_SESSION["access_level"] >= 10) { ?>
656f4b6c 135 <div id="userConfigTab" class="prefsTab"
d1db26aa 136 onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
1d3a17c7 137 <?php } ?>
1f8274d3 138</div>
3f59e8cd
AD
139
140<div id="prefContent">
d1db26aa 141 <p><?php echo __('Loading, please wait...') ?></p>
84916243
AD
142 <noscript>
143 <div class="error">
d1db26aa 144 <?php echo __("Your browser doesn't support Javascript, which is required
84916243 145 for this application to function properly. Please check your
d3f24242 146 browser settings.") ?></div>
84916243 147 </noscript>
3f59e8cd 148</div>
007bda35 149
1d8e4418 150<div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
5dda5455 151<div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
1d8e4418 152
5ede560f
AD
153<div id="dialog_overlay"> </div>
154
23c2a4e7
AD
155<div id="prefFooter">
156 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
157 <select id="userSwitch" onchange="userSwitch()">
158 <?php
159 foreach (array('admin', 'fox', 'test') as $u) {
160 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
161 print "<option $op_sel>$u</option>";
162 }
163 ?>
164 </select>
aff31ecf 165 <?php } ?>
03a11e23 166 <a href="http://tt-rss.org/">Tiny Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005&ndash;2008 <a href="http://bah.org.ru/">Andrew Dolgov</a>
23c2a4e7
AD
167</div>
168
1d3a17c7 169<?php db_close($link); ?>
007bda35 170
97dcd654
AD
171<script type="text/javascript">
172 /* for IE */
173 function statechange() {
174 if (document.readyState == "interactive") init();
175 }
176
177 if (document.readyState) {
178 if (document.readyState == "interactive" || document.readyState == "complete") {
179 init();
180 } else {
181 document.onreadystatechange = statechange;
182 }
183 }
184</script>
185
007bda35
AD
186</body>
187</html>