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="scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
44 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
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>
50 <script type="text/javascript" src="pngfix.js"></script>
51 <link rel="stylesheet" type="text/css" href="ie6.css">
55 <link rel="stylesheet" type="text/css" href="ie7.css">
58 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
60 <script type="text/javascript">
61 if (navigator.userAgent.match("Opera")) {
62 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
64 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
65 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
72 <div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
73 <?php rounded_table_start("hho"); ?>
74 <?php include "help/4.php" ?>
75 <?php rounded_table_end(); ?>
78 <img id="piggie" src="images/piggie.png" style="display : none" alt="piggie">
80 <script type="text/javascript">
81 if (document.addEventListener) {
82 document.addEventListener("DOMContentLoaded", init, null);
87 <ul id="debug_output"></ul>
89 <div id="fatal_error"><div id="fatal_error_inner">
91 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
95 <div class="topLinks">
96 <?php if (!SINGLE_USER_MODE) { ?>
97 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
99 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
100 <?php if (!SINGLE_USER_MODE) { ?>
101 | <a href="logout.php"><?php echo __('Logout') ?></a>
104 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
108 <!-- <div class="return">
109 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
112 <div class="firstTab"> </div>
114 <div id="genConfigTab" class="prefsTab"
115 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
116 <div id="feedConfigTab" class="prefsTab"
117 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
118 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
119 <div id="feedBrowserTab" class="prefsTab"
120 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
122 <!-- <div id="pubItemsTab" class="prefsTab"
123 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
124 <div id="filterConfigTab" class="prefsTab"
125 onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
126 <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
127 <div id="labelConfigTab" class="prefsTab"
128 onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
130 <?php if ($_SESSION["access_level"] >= 10) { ?>
131 <div id="userConfigTab" class="prefsTab"
132 onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
136 <div id="prefContent">
137 <p><?php echo __('Loading, please wait...') ?></p>
140 <?php echo __("Your browser doesn't support Javascript, which is required
141 for this application to function properly. Please check your
142 browser settings.") ?></div>
146 <div id="notify" class="notify"><span id="notify_body"> </span></div>
147 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
149 <div id="dialog_overlay"> </div>
151 <div id="prefFooter">
152 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
153 <select id="userSwitch" onchange="userSwitch()">
155 foreach (array('admin', 'fox', 'test') as $u) {
156 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
157 print "<option $op_sel>$u</option>";
162 <a href="http://tt-rss.org/">Tiny Tiny RSS</a> v<?php echo VERSION ?> © 2005–2008 <a href="http://bah.org.ru/">Andrew Dolgov</a>
165 <?php db_close($link); ?>
167 <script type="text/javascript">
169 function statechange() {
170 if (document.readyState == "interactive") init();
173 if (document.readyState) {
174 if (document.readyState == "interactive" || document.readyState == "complete") {
177 document.onreadystatechange = statechange;