]> git.wh0rd.org - tt-rss.git/blob - prefs.php
piggification updates
[tt-rss.git] / prefs.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
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";
10
11 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
12
13 login_sequence($link);
14
15 $dt_add = get_script_dt_add();
16
17 no_cache_incantation();
18
19 ?>
20 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
21 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22 <html>
23 <head>
24 <title>Tiny Tiny RSS : Preferences</title>
25 <link rel="stylesheet" href="tt-rss.css" type="text/css">
26
27 <?php $user_theme = $_SESSION["theme"];
28 if ($user_theme) { ?>
29 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
30 <?php } ?>
31
32 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
33
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 } ?>
38
39 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
40
41 <script type="text/javascript" src="prototype.js"></script>
42 <script type="text/javascript" src="scriptaculous/scriptaculous.js"></script>
43 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
44
45 <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
46 <script type="text/javascript" src="prefs.js?<?php echo $dt_add ?>"></script>
47
48 <!--[if lt IE 7]>
49 <script type="text/javascript" src="pngfix.js"></script>
50 <link rel="stylesheet" type="text/css" href="ie6.css">
51 <![endif]-->
52
53 <!--[if IE 7]>
54 <link rel="stylesheet" type="text/css" href="ie7.css">
55 <![endif]-->
56
57 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
58
59 <script type="text/javascript">
60 if (navigator.userAgent.match("Opera")) {
61 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
62 }
63 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
64 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
65 }
66 </script>
67 </head>
68
69 <body>
70
71 <img id="piggie" src="images/piggie.png" style="display : none" alt="piggie">
72
73 <script type="text/javascript">
74 if (document.addEventListener) {
75 document.addEventListener("DOMContentLoaded", init, null);
76 }
77 window.onload = init;
78 </script>
79
80 <ul id="debug_output"></ul>
81
82 <div id="fatal_error"><div id="fatal_error_inner">
83 <h1>Fatal Error</h1>
84 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
85 </div></div>
86
87 <div id="prefHeader">
88 <?php if (!SINGLE_USER_MODE) { ?>
89 <div style="float : right">
90 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
91 (<a href="logout.php"><?= __('Logout') ?></a>)
92 </div>
93 <?php } ?>
94 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
95 </div>
96
97 <div id="prefTabs">
98 <div class="return">
99 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
100 </div>
101
102 <div class="firstTab">&nbsp;</div>
103
104 <div id="genConfigTab" class="prefsTab"
105 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
106 <div id="feedConfigTab" class="prefsTab"
107 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
108 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
109 <div id="feedBrowserTab" class="prefsTab"
110 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
111 <?php } ?>
112 <!-- <div id="pubItemsTab" class="prefsTab"
113 onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
114 <div id="filterConfigTab" class="prefsTab"
115 onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
116 <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
117 <div id="labelConfigTab" class="prefsTab"
118 onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
119 <?php } ?>
120 <?php if ($_SESSION["access_level"] >= 10) { ?>
121 <div id="userConfigTab" class="prefsTab"
122 onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
123 <?php } ?>
124 </div>
125
126 <div id="prefContent">
127 <p><?php echo __('Loading, please wait...') ?></p>
128 <noscript>
129 <div class="error">
130 <?php echo __("Your browser doesn't support Javascript, which is required
131 for this application to function properly. Please check your
132 browser settings.") ?></div>
133 </noscript>
134 </div>
135
136 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
137 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
138
139 <div id="dialog_overlay"> </div>
140
141 <div id="prefFooter">
142 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
143 <select id="userSwitch" onchange="userSwitch()">
144 <?php
145 foreach (array('admin', 'fox', 'test') as $u) {
146 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
147 print "<option $op_sel>$u</option>";
148 }
149 ?>
150 </select>
151 <?php } ?>
152 <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>
153 </div>
154
155 <?php db_close($link); ?>
156
157 <script type="text/javascript">
158 /* for IE */
159 function statechange() {
160 if (document.readyState == "interactive") init();
161 }
162
163 if (document.readyState) {
164 if (document.readyState == "interactive" || document.readyState == "complete") {
165 init();
166 } else {
167 document.onreadystatechange = statechange;
168 }
169 }
170 </script>
171
172 </body>
173 </html>