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();
19 header('Content-Type: text/html; charset=utf-8');
22 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
23 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
26 <title>Tiny Tiny RSS : Preferences</title>
27 <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
29 <?php $user_theme = $_SESSION["theme"];
31 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css"/>
34 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
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 ?>"/>
41 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
43 <script type="text/javascript" src="lib/prototype.js"></script>
44 <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
46 <script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
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>
51 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
53 <script type="text/javascript">
55 if (navigator.userAgent.match("Opera")) {
56 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
62 <body id="ttrssPrefs">
65 <div id="overlay_inner">
66 <?php echo __("Loading, please wait...") ?>
68 <div id="l_progress_o">
69 <div id="l_progress_i"></div>
73 <div class="error"><?php echo
74 __("Your browser doesn't support Javascript, which is required
75 for this application to function properly. Please check your
76 browser settings.") ?></div>
82 <div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
83 <?php rounded_table_start("hho"); ?>
84 <?php include "help/4.php" ?>
85 <?php rounded_table_end(); ?>
88 <img id="piggie" src="images/piggie.png" style="display : none" alt="piggie"/>
90 <script type="text/javascript">
91 if (document.addEventListener) {
92 document.addEventListener("DOMContentLoaded", init, null);
97 <ul id="debug_output" style='display : none'><li> </li></ul>
99 <div id="fatal_error"><div id="fatal_error_inner">
101 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
104 <div id="prefHeader">
105 <div class="topLinks">
106 <?php if (!SINGLE_USER_MODE) { ?>
107 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
109 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
110 <?php if (!SINGLE_USER_MODE) { ?>
111 | <a href="logout.php"><?php echo __('Logout') ?></a>
114 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
118 <!-- <div class="return">
119 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
122 <div class='prefKbdHelp'>
123 <img src="images/small_question.png" alt="?"/> <a href='#' onclick="Effect.Appear('hotkey_help_overlay', {duration: 0.3})"><?php echo __("Keyboard shortcuts") ?></a>
126 <div class="firstTab"> </div>
128 <div id="genConfigTab" class="prefsTab"
129 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
130 <div id="feedConfigTab" class="prefsTab"
131 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
132 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
133 <div id="feedBrowserTab" class="prefsTab"
134 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
136 <!-- <div id="pubItemsTab" class="prefsTab"
137 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
138 <div id="filterConfigTab" class="prefsTab"
139 onclick="selectTab('filterConfig')"><?php echo __('Filters') ?></div>
140 <div id="labelConfigTab" class="prefsTab"
141 onclick="selectTab('labelConfig')"><?php echo __('Labels') ?></div>
142 <?php if ($_SESSION["access_level"] >= 10) { ?>
143 <div id="userConfigTab" class="prefsTab"
144 onclick="selectTab('userConfig')"><?php echo __('Users') ?></div>
148 <div id="prefContentOuter">
149 <div id="prefContent">
150 <p><?php echo __('Loading, please wait...') ?></p>
153 <?php echo __("Your browser doesn't support Javascript, which is required
154 for this application to function properly. Please check your
155 browser settings.") ?></div>
160 <div id="notify" class="notify"><span id="notify_body"> </span></div>
161 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
163 <div id="dialog_overlay" style="display : none"> </div>
165 <div id="prefFooter">
166 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
167 <select id="userSwitch" onchange="userSwitch()">
169 foreach (array('admin', 'fox', 'test') as $u) {
170 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
171 print "<option $op_sel>$u</option>";
176 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
177 <?php if (!defined('HIDE_VERSION')) { ?>
178 v<?php echo VERSION ?>
180 © 2005–2009 <a href="http://bah.org.ru/">Andrew Dolgov</a>
183 <?php db_close($link); ?>
185 <script type="text/javascript">
187 function statechange() {
188 if (document.readyState == "interactive") init();
191 if (document.readyState) {
192 if (document.readyState == "interactive" || document.readyState == "complete") {
195 document.onreadystatechange = statechange;