]> git.wh0rd.org - tt-rss.git/blame - prefs.php
move gettext/ to lib
[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
14f69488 43 <script type="text/javascript" src="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 }
6b9bf6c2
AD
58 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
59 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
60 }
74d5c8fa 61 //]]>
362698ad 62 </script>
007bda35
AD
63</head>
64
27f5a18f 65<body id="ttrssPrefs">
97dcd654 66
08827aaf
AD
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
93f66472 85<div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
746dcf42 86 <?php rounded_table_start("hho"); ?>
93f66472 87 <?php include "help/4.php" ?>
746dcf42 88 <?php rounded_table_end(); ?>
93f66472
AD
89</div>
90
74d5c8fa 91<img id="piggie" src="images/piggie.png" style="display : none" alt="piggie"/>
746dcf42 92
97dcd654
AD
93<script type="text/javascript">
94if (document.addEventListener) {
95 document.addEventListener("DOMContentLoaded", init, null);
96}
97window.onload = init;
98</script>
007bda35 99
74d5c8fa 100<ul id="debug_output" style='display : none'><li>&nbsp;</li></ul>
a7565293
AD
101
102<div id="fatal_error"><div id="fatal_error_inner">
103 <h1>Fatal Error</h1>
d1db26aa 104 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
a7565293
AD
105</div></div>
106
3f59e8cd 107<div id="prefHeader">
6352c214
AD
108 <div class="topLinks">
109 <?php if (!SINGLE_USER_MODE) { ?>
efae7595 110 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
6352c214
AD
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>
3f59e8cd
AD
117 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
118</div>
119
1f8274d3 120<div id="prefTabs">
6352c214 121 <!-- <div class="return">
3692e98f 122 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
6352c214 123 </div> -->
3f59e8cd 124
d1628a4f 125 <div class='prefKbdHelp'>
e0142e27 126 <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
127 </div>
128
656f4b6c
AD
129 <div class="firstTab">&nbsp;</div>
130
131 <div id="genConfigTab" class="prefsTab"
d1db26aa 132 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
656f4b6c 133 <div id="feedConfigTab" class="prefsTab"
d1db26aa 134 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
1d3a17c7 135 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
656f4b6c 136 <div id="feedBrowserTab" class="prefsTab"
d1db26aa 137 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
1d3a17c7 138 <?php } ?>
e4f4b46f
AD
139 <!-- <div id="pubItemsTab" class="prefsTab"
140 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
656f4b6c 141 <div id="filterConfigTab" class="prefsTab"
af03c001 142 onclick="selectTab('filterConfig')"><?php echo __('Filters') ?></div>
656f4b6c 143 <div id="labelConfigTab" class="prefsTab"
af03c001 144 onclick="selectTab('labelConfig')"><?php echo __('Labels') ?></div>
1d3a17c7 145 <?php if ($_SESSION["access_level"] >= 10) { ?>
656f4b6c 146 <div id="userConfigTab" class="prefsTab"
af03c001 147 onclick="selectTab('userConfig')"><?php echo __('Users') ?></div>
1d3a17c7 148 <?php } ?>
1f8274d3 149</div>
3f59e8cd 150
727b0e56 151<div id="prefContentOuter">
3f59e8cd 152<div id="prefContent">
d1db26aa 153 <p><?php echo __('Loading, please wait...') ?></p>
84916243
AD
154 <noscript>
155 <div class="error">
d1db26aa 156 <?php echo __("Your browser doesn't support Javascript, which is required
84916243 157 for this application to function properly. Please check your
d3f24242 158 browser settings.") ?></div>
84916243 159 </noscript>
3f59e8cd 160</div>
727b0e56 161</div>
007bda35 162
1d8e4418 163<div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
5dda5455 164<div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
1d8e4418 165
569720c5 166<div id="dialog_overlay" style="display : none"> </div>
5ede560f 167
23c2a4e7
AD
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>
aff31ecf 178 <?php } ?>
8865bdc0
AD
179 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
180 <?php if (!defined('HIDE_VERSION')) { ?>
181 v<?php echo VERSION ?>
182 <?php } ?>
c4f56bed 183 &copy; 2005&ndash;2009 <a href="http://bah.org.ru/">Andrew Dolgov</a>
23c2a4e7
AD
184</div>
185
1d3a17c7 186<?php db_close($link); ?>
007bda35 187
97dcd654
AD
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
007bda35
AD
203</body>
204</html>