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