2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
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";
11 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
13 login_sequence($link);
15 $dt_add = get_script_dt_add();
17 no_cache_incantation();
20 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
21 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
24 <title>Tiny Tiny RSS : Preferences</title>
25 <link rel="stylesheet" href="tt-rss.css" type="text/css">
27 <?php $user_theme = $_SESSION["theme"];
29 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
32 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
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 ?>"/>
39 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
41 <script type="text/javascript" src="prototype.js"></script>
42 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
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>
48 <script type="text/javascript" src="pngfix.js"></script>
49 <link rel="stylesheet" type="text/css" href="ie6.css">
53 <link rel="stylesheet" type="text/css" href="ie7.css">
56 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
58 <script type="text/javascript">
59 if (navigator.userAgent.match("Opera")) {
60 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
62 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
63 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
70 <div id="piggie"> </div>
72 <script type="text/javascript">
73 if (document.addEventListener) {
74 document.addEventListener("DOMContentLoaded", init, null);
79 <ul id="debug_output"></ul>
81 <div id="fatal_error"><div id="fatal_error_inner">
83 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
87 <?php if (!SINGLE_USER_MODE) { ?>
88 <div style="float : right">
89 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
90 (<a href="logout.php"><?= __('Logout') ?></a>)
93 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
98 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
101 <div class="firstTab"> </div>
103 <div id="genConfigTab" class="prefsTab"
104 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
105 <div id="feedConfigTab" class="prefsTab"
106 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
107 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
108 <div id="feedBrowserTab" class="prefsTab"
109 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
111 <div id="pubItemsTab" class="prefsTab"
112 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div>
113 <div id="filterConfigTab" class="prefsTab"
114 onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
115 <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
116 <div id="labelConfigTab" class="prefsTab"
117 onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
119 <?php if ($_SESSION["access_level"] >= 10) { ?>
120 <div id="userConfigTab" class="prefsTab"
121 onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
125 <div id="prefContent">
126 <p><?php echo __('Loading, please wait...') ?></p>
129 <?php echo __("Your browser doesn't support Javascript, which is required
130 for this application to function properly. Please check your
131 browser settings.") ?></div>
135 <div id="notify" class="notify"><span id="notify_body"> </span></div>
136 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
138 <div id="dialog_overlay"> </div>
140 <div id="prefFooter">
141 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
142 <select id="userSwitch" onchange="userSwitch()">
144 foreach (array('admin', 'fox', 'test') as $u) {
145 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
146 print "<option $op_sel>$u</option>";
151 <a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> © 2005-2007 <a href="http://bah.org.ru/">Andrew Dolgov</a>
154 <?php db_close($link); ?>
156 <script type="text/javascript">
158 function statechange() {
159 if (document.readyState == "interactive") init();
162 if (document.readyState) {
163 if (document.readyState == "interactive" || document.readyState == "complete") {
166 document.onreadystatechange = statechange;