]> git.wh0rd.org - tt-rss.git/blame - prefs.php
new style exception reporting
[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();
03208748
AD
18
19 header('Content-Type: text/html; charset=utf-8');
20
ab49d368 21?>
3f59e8cd
AD
22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
23 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
007bda35
AD
24<html>
25<head>
e828e31e 26 <title>Tiny Tiny RSS : Preferences</title>
74d5c8fa 27 <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
ab49d368 28
1d3a17c7 29 <?php $user_theme = $_SESSION["theme"];
503eb349 30 if ($user_theme) { ?>
74d5c8fa 31 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css"/>
1d3a17c7 32 <?php } ?>
503eb349 33
1d3a17c7 34 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
5d35cdcd 35
1d3a17c7
AD
36 <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
37 <?php if ($user_css_url) { ?>
38 <link type="text/css" href="<?php echo $user_css_url ?>"/>
39 <?php } ?>
386d7b5b 40
74d5c8fa 41 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
c0266b88 42
fe7537b5 43 <script type="text/javascript" src="lib/prototype.js"></script>
bd40e88e 44 <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
a7750ac6 45
ff39ff9b 46 <script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
14f69488 47
ff39ff9b
AD
48 <script type="text/javascript" charset="utf-8" src="functions.js?<?php echo $dt_add ?>"></script>
49 <script type="text/javascript" charset="utf-8" src="prefs.js?<?php echo $dt_add ?>"></script>
b1895692 50
74d5c8fa 51 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
362698ad
AD
52
53 <script type="text/javascript">
74d5c8fa 54 //<![CDATA[
362698ad
AD
55 if (navigator.userAgent.match("Opera")) {
56 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
57 }
74d5c8fa 58 //]]>
362698ad 59 </script>
007bda35
AD
60</head>
61
27f5a18f 62<body id="ttrssPrefs">
97dcd654 63
08827aaf
AD
64<div id="overlay">
65 <div id="overlay_inner">
66 <?php echo __("Loading, please wait...") ?>
67
68 <div id="l_progress_o">
69 <div id="l_progress_i"></div>
70 </div>
71
72 <noscript>
73 <div class="error"><?php echo
74 __("Your browser doesn't support Javascript, which is required
75 for this application to function properly. Please check your
76 browser settings.") ?></div>
77 </noscript>
78 </div>
79</div>
80
93f66472 81<div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
746dcf42 82 <?php rounded_table_start("hho"); ?>
93f66472 83 <?php include "help/4.php" ?>
746dcf42 84 <?php rounded_table_end(); ?>
93f66472
AD
85</div>
86
74d5c8fa 87<img id="piggie" src="images/piggie.png" style="display : none" alt="piggie"/>
746dcf42 88
97dcd654
AD
89<script type="text/javascript">
90if (document.addEventListener) {
91 document.addEventListener("DOMContentLoaded", init, null);
92}
93window.onload = init;
94</script>
007bda35 95
74d5c8fa 96<ul id="debug_output" style='display : none'><li>&nbsp;</li></ul>
a7565293 97
3f59e8cd 98<div id="prefHeader">
6352c214
AD
99 <div class="topLinks">
100 <?php if (!SINGLE_USER_MODE) { ?>
efae7595 101 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
6352c214
AD
102 <?php } ?>
103 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
104 <?php if (!SINGLE_USER_MODE) { ?>
105 | <a href="logout.php"><?php echo __('Logout') ?></a>
106 <?php } ?>
107 </div>
3f59e8cd
AD
108 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
109</div>
110
1f8274d3 111<div id="prefTabs">
6352c214 112 <!-- <div class="return">
3692e98f 113 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
6352c214 114 </div> -->
3f59e8cd 115
d1628a4f 116 <div class='prefKbdHelp'>
e0142e27 117 <img src="images/small_question.png" alt="?"/> <a href='#' onclick="Effect.Appear('hotkey_help_overlay', {duration: 0.3})"><?php echo __("Keyboard shortcuts") ?></a>
d1628a4f
AD
118 </div>
119
656f4b6c
AD
120 <div class="firstTab">&nbsp;</div>
121
122 <div id="genConfigTab" class="prefsTab"
d1db26aa 123 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
656f4b6c 124 <div id="feedConfigTab" class="prefsTab"
d1db26aa 125 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
1d3a17c7 126 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
656f4b6c 127 <div id="feedBrowserTab" class="prefsTab"
d1db26aa 128 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
1d3a17c7 129 <?php } ?>
e4f4b46f
AD
130 <!-- <div id="pubItemsTab" class="prefsTab"
131 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
656f4b6c 132 <div id="filterConfigTab" class="prefsTab"
af03c001 133 onclick="selectTab('filterConfig')"><?php echo __('Filters') ?></div>
656f4b6c 134 <div id="labelConfigTab" class="prefsTab"
af03c001 135 onclick="selectTab('labelConfig')"><?php echo __('Labels') ?></div>
1d3a17c7 136 <?php if ($_SESSION["access_level"] >= 10) { ?>
656f4b6c 137 <div id="userConfigTab" class="prefsTab"
af03c001 138 onclick="selectTab('userConfig')"><?php echo __('Users') ?></div>
1d3a17c7 139 <?php } ?>
1f8274d3 140</div>
3f59e8cd 141
727b0e56 142<div id="prefContentOuter">
3f59e8cd 143<div id="prefContent">
d1db26aa 144 <p><?php echo __('Loading, please wait...') ?></p>
84916243
AD
145 <noscript>
146 <div class="error">
d1db26aa 147 <?php echo __("Your browser doesn't support Javascript, which is required
84916243 148 for this application to function properly. Please check your
d3f24242 149 browser settings.") ?></div>
84916243 150 </noscript>
3f59e8cd 151</div>
727b0e56 152</div>
007bda35 153
1d8e4418 154<div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
5dda5455 155<div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
1d8e4418 156
273d1e29
AD
157<div id="errorBoxShadow" style="display : none">
158 <div id="errorBox">
159 <div id="xebTitle">Fatal Exception</div><div id="xebContent">&nbsp;</div>
160 <div id="xebBtn" align='center'><input type="submit"
161 onclick="closeErrorBox()" value="Close this window"/></div>
162 </div>
163</div>
164
569720c5 165<div id="dialog_overlay" style="display : none"> </div>
5ede560f 166
23c2a4e7
AD
167<div id="prefFooter">
168 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
169 <select id="userSwitch" onchange="userSwitch()">
170 <?php
171 foreach (array('admin', 'fox', 'test') as $u) {
172 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
173 print "<option $op_sel>$u</option>";
174 }
175 ?>
176 </select>
aff31ecf 177 <?php } ?>
8865bdc0
AD
178 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
179 <?php if (!defined('HIDE_VERSION')) { ?>
180 v<?php echo VERSION ?>
181 <?php } ?>
c4f56bed 182 &copy; 2005&ndash;2009 <a href="http://bah.org.ru/">Andrew Dolgov</a>
23c2a4e7
AD
183</div>
184
1d3a17c7 185<?php db_close($link); ?>
007bda35 186
97dcd654
AD
187<script type="text/javascript">
188 /* for IE */
189 function statechange() {
190 if (document.readyState == "interactive") init();
191 }
192
193 if (document.readyState) {
194 if (document.readyState == "interactive" || document.readyState == "complete") {
195 init();
196 } else {
197 document.onreadystatechange = statechange;
198 }
199 }
200</script>
201
007bda35
AD
202</body>
203</html>