]> git.wh0rd.org - tt-rss.git/blob - prefs.php
misc fixes, rework hotkeys code placement
[tt-rss.git] / prefs.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
4 require_once "functions.php";
5 require_once "sessions.php";
6 require_once "sanity_check.php";
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);
12
13 login_sequence($link);
14
15 $dt_add = get_script_dt_add();
16
17 no_cache_incantation();
18
19 ?>
20 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
21 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22 <html>
23 <head>
24 <title>Tiny Tiny RSS : Preferences</title>
25 <link rel="stylesheet" href="tt-rss.css" type="text/css">
26
27 <?php $user_theme = $_SESSION["theme"];
28 if ($user_theme) { ?>
29 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
30 <?php } ?>
31
32 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
33
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 } ?>
38
39 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
40
41 <script type="text/javascript" src="prototype.js"></script>
42 <script type="text/javascript" src="scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
43
44 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
45
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>
48
49 <!--[if lt IE 7]>
50 <script type="text/javascript" src="pngfix.js"></script>
51 <link rel="stylesheet" type="text/css" href="ie6.css">
52 <![endif]-->
53
54 <!--[if IE 7]>
55 <link rel="stylesheet" type="text/css" href="ie7.css">
56 <![endif]-->
57
58 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
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 }
64 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
65 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
66 }
67 </script>
68 </head>
69
70 <body>
71
72 <img id="piggie" src="images/piggie.png" style="display : none" alt="piggie">
73
74 <div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
75 <?php include "help/4.php" ?>
76 </div>
77
78 <script type="text/javascript">
79 if (document.addEventListener) {
80 document.addEventListener("DOMContentLoaded", init, null);
81 }
82 window.onload = init;
83 </script>
84
85 <ul id="debug_output"></ul>
86
87 <div id="fatal_error"><div id="fatal_error_inner">
88 <h1>Fatal Error</h1>
89 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
90 </div></div>
91
92 <div id="prefHeader">
93 <div class="topLinks">
94 <?php if (!SINGLE_USER_MODE) { ?>
95 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
96 <?php } ?>
97 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
98 <?php if (!SINGLE_USER_MODE) { ?>
99 | <a href="logout.php"><?php echo __('Logout') ?></a>
100 <?php } ?>
101 </div>
102 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
103 </div>
104
105 <div id="prefTabs">
106 <!-- <div class="return">
107 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
108 </div> -->
109
110 <div class="firstTab">&nbsp;</div>
111
112 <div id="genConfigTab" class="prefsTab"
113 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
114 <div id="feedConfigTab" class="prefsTab"
115 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
116 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
117 <div id="feedBrowserTab" class="prefsTab"
118 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
119 <?php } ?>
120 <!-- <div id="pubItemsTab" class="prefsTab"
121 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
122 <div id="filterConfigTab" class="prefsTab"
123 onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
124 <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
125 <div id="labelConfigTab" class="prefsTab"
126 onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
127 <?php } ?>
128 <?php if ($_SESSION["access_level"] >= 10) { ?>
129 <div id="userConfigTab" class="prefsTab"
130 onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
131 <?php } ?>
132 </div>
133
134 <div id="prefContent">
135 <p><?php echo __('Loading, please wait...') ?></p>
136 <noscript>
137 <div class="error">
138 <?php echo __("Your browser doesn't support Javascript, which is required
139 for this application to function properly. Please check your
140 browser settings.") ?></div>
141 </noscript>
142 </div>
143
144 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
145 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
146
147 <div id="dialog_overlay"> </div>
148
149 <div id="prefFooter">
150 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
151 <select id="userSwitch" onchange="userSwitch()">
152 <?php
153 foreach (array('admin', 'fox', 'test') as $u) {
154 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
155 print "<option $op_sel>$u</option>";
156 }
157 ?>
158 </select>
159 <?php } ?>
160 <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>
161 </div>
162
163 <?php db_close($link); ?>
164
165 <script type="text/javascript">
166 /* for IE */
167 function statechange() {
168 if (document.readyState == "interactive") init();
169 }
170
171 if (document.readyState) {
172 if (document.readyState == "interactive" || document.readyState == "complete") {
173 init();
174 } else {
175 document.onreadystatechange = statechange;
176 }
177 }
178 </script>
179
180 </body>
181 </html>