]> git.wh0rd.org - tt-rss.git/blame - prefs.php
outputFeedEntry: fix typo
[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>
f3977cf5 42 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
14f69488 43
1d3a17c7
AD
44 <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
45 <script type="text/javascript" src="prefs.js?<?php echo $dt_add ?>"></script>
b1895692 46
59a543f0
AD
47 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
48
25cb5736
AD
49 <!--[if gte IE 5.5000]>
50 <script type="text/javascript" src="pngfix.js"></script>
d1793994 51 <link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
25cb5736 52 <![endif]-->
007bda35 53 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
362698ad
AD
54
55 <script type="text/javascript">
56 if (navigator.userAgent.match("Opera")) {
57 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
58 }
6b9bf6c2
AD
59 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
60 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
61 }
362698ad 62 </script>
007bda35
AD
63</head>
64
97dcd654
AD
65<body>
66
d437c8cf 67<div id="piggie">&nbsp;</div>
1cac3c31 68
48c6406b
AD
69<iframe id="backReqBox"></iframe>
70
97dcd654
AD
71<script type="text/javascript">
72if (document.addEventListener) {
73 document.addEventListener("DOMContentLoaded", init, null);
74}
75window.onload = init;
76</script>
007bda35 77
a7565293
AD
78<ul id="debug_output"></ul>
79
3f59e8cd
AD
80<div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
81
a7565293
AD
82<div id="fatal_error"><div id="fatal_error_inner">
83 <h1>Fatal Error</h1>
d1db26aa 84 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
a7565293
AD
85</div></div>
86
3f59e8cd
AD
87<div id="prefHeader">
88 <?php if (!SINGLE_USER_MODE) { ?>
89 <div style="float : right">
d1db26aa 90 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
cc17c205 91 (<a href="logout.php"><?= __('Logout') ?></a>)
3f59e8cd
AD
92 </div>
93 <?php } ?>
94 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
95</div>
96
3f59e8cd
AD
97 <div class="return">
98 <a href="#" onclick="gotoMain()">Exit preferences</a>
99 </div>
100
656f4b6c
AD
101 <div class="firstTab">&nbsp;</div>
102
103 <div id="genConfigTab" class="prefsTab"
d1db26aa 104 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
656f4b6c 105 <div id="feedConfigTab" class="prefsTab"
d1db26aa 106 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
1d3a17c7 107 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
656f4b6c 108 <div id="feedBrowserTab" class="prefsTab"
d1db26aa 109 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
1d3a17c7 110 <?php } ?>
656f4b6c 111 <div id="filterConfigTab" class="prefsTab"
d1db26aa 112 onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
1d3a17c7 113 <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
656f4b6c 114 <div id="labelConfigTab" class="prefsTab"
d1db26aa 115 onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
1d3a17c7
AD
116 <?php } ?>
117 <?php if ($_SESSION["access_level"] >= 10) { ?>
656f4b6c 118 <div id="userConfigTab" class="prefsTab"
d1db26aa 119 onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
1d3a17c7 120 <?php } ?>
3f59e8cd
AD
121
122<div id="prefContent">
d1db26aa 123 <p><?php echo __('Loading, please wait...') ?></p>
84916243
AD
124 <noscript>
125 <div class="error">
d1db26aa 126 <?php echo __("Your browser doesn't support Javascript, which is required
84916243 127 for this application to function properly. Please check your
d3f24242 128 browser settings.") ?></div>
84916243 129 </noscript>
3f59e8cd 130</div>
007bda35 131
23c2a4e7
AD
132<div id="prefFooter">
133 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
134 <select id="userSwitch" onchange="userSwitch()">
135 <?php
136 foreach (array('admin', 'fox', 'test') as $u) {
137 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
138 print "<option $op_sel>$u</option>";
139 }
140 ?>
141 </select>
aff31ecf 142 <?php } ?>
17b3e8e6 143 <a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2007 <a href="http://bah.org.ru/">Andrew Dolgov</a>
23c2a4e7
AD
144</div>
145
1d3a17c7 146<?php db_close($link); ?>
007bda35 147
97dcd654
AD
148<script type="text/javascript">
149 /* for IE */
150 function statechange() {
151 if (document.readyState == "interactive") init();
152 }
153
154 if (document.readyState) {
155 if (document.readyState == "interactive" || document.readyState == "complete") {
156 init();
157 } else {
158 document.onreadystatechange = statechange;
159 }
160 }
161</script>
162
007bda35
AD
163</body>
164</html>