]> git.wh0rd.org - tt-rss.git/blob - prefs.php
split infobox stuff into separate css
[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 header('Content-Type: text/html; charset=utf-8');
20
21 ?>
22 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
23 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
24 <html>
25 <head>
26 <title>Tiny Tiny RSS : Preferences</title>
27 <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
28 <link rel="stylesheet" type="text/css" href="infobox.css?<?php echo $dt_add ?>"/>
29
30 <?php $user_theme = get_user_theme_path($link);
31 if ($user_theme) { ?>
32 <link rel="stylesheet" type="text/css" href="<?php echo $user_theme ?>/theme.css"/>
33 <?php } ?>
34
35 <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
36 <?php if ($user_css_url) { ?>
37 <link type="text/css" href="<?php echo $user_css_url ?>"/>
38 <?php } ?>
39
40 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
41
42 <script type="text/javascript" src="lib/prototype.js"></script>
43 <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
44
45 <script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
46
47 <script type="text/javascript" charset="utf-8" src="functions.js?<?php echo $dt_add ?>"></script>
48 <script type="text/javascript" charset="utf-8" src="prefs.js?<?php echo $dt_add ?>"></script>
49
50 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
51
52 <script type="text/javascript">
53 Event.observe(window, 'load', function() {
54 init();
55 });
56 </script>
57
58 </head>
59
60 <body id="ttrssPrefs">
61
62 <div id="overlay">
63 <div id="overlay_inner">
64 <?php echo __("Loading, please wait...") ?>
65
66 <div id="l_progress_o">
67 <div id="l_progress_i"></div>
68 </div>
69
70 <noscript>
71 <p><?php print_error(__("Your browser doesn't support Javascript, which is required
72 for this application to function properly. Please check your
73 browser settings.")) ?></p>
74 </noscript>
75 </div>
76 </div>
77
78 <div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
79 <?php rounded_table_start("hho"); ?>
80 <?php include "help/4.php" ?>
81 <?php rounded_table_end(); ?>
82 </div>
83
84 <img id="piggie" src="images/piggie.png" style="display : none" alt="piggie"/>
85
86 <ul id="debug_output" style='display : none'><li>&nbsp;</li></ul>
87
88 <div id="prefHeader">
89 <div class="topLinks">
90 <?php if (!SINGLE_USER_MODE) { ?>
91 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
92 <?php } ?>
93 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
94 <?php if (!SINGLE_USER_MODE) { ?>
95 | <a href="logout.php"><?php echo __('Logout') ?></a>
96 <?php } ?>
97 </div>
98 <img src="<?php echo theme_image($link, 'images/ttrss_logo.png') ?>" alt="Tiny Tiny RSS"/>
99 </div>
100
101 <div id="prefTabs">
102 <div class='prefKbdHelp'>
103 <img src="<?php echo theme_image($link, 'images/small_question.png') ?>" alt="?"/> <a href='#' onclick="Effect.Appear('hotkey_help_overlay', {duration: 0.3})"><?php echo __("Keyboard shortcuts") ?></a>
104 </div>
105
106 <div class="firstTab">&nbsp;</div>
107
108 <div id="genConfigTab" class="prefsTab"
109 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
110 <div id="feedConfigTab" class="prefsTab"
111 onclick="selectTab('feedConfig')"><?php echo __('Feeds') ?></div>
112 <div id="filterConfigTab" class="prefsTab"
113 onclick="selectTab('filterConfig')"><?php echo __('Filters') ?></div>
114 <div id="labelConfigTab" class="prefsTab"
115 onclick="selectTab('labelConfig')"><?php echo __('Labels') ?></div>
116 <?php if ($_SESSION["access_level"] >= 10) { ?>
117 <div id="userConfigTab" class="prefsTab"
118 onclick="selectTab('userConfig')"><?php echo __('Users') ?></div>
119 <?php } ?>
120 </div>
121
122 <div id="prefContentOuter">
123 <div id="prefContent">
124 <p><?php echo __('Loading, please wait...') ?></p>
125 <noscript>
126 <div class="error">
127 <?php echo __("Your browser doesn't support Javascript, which is required
128 for this application to function properly. Please check your
129 browser settings.") ?></div>
130 </noscript>
131 </div>
132 </div>
133
134 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
135 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
136
137 <div id="cmdline" style="display : none"></div>
138
139 <div id="errorBoxShadow" style="display : none">
140 <div id="errorBox">
141 <div id="xebTitle"><?php echo __('Fatal Exception') ?></div><div id="xebContent">&nbsp;</div>
142 <div id="xebBtn" align='center'>
143 <button onclick="closeErrorBox()"><?php echo __('Close this window') ?></button>
144 </div>
145 </div>
146 </div>
147
148 <div id="dialog_overlay" style="display : none"> </div>
149
150 <div id="prefFooter">
151 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
152 <?php if (!defined('HIDE_VERSION')) { ?>
153 v<?php echo VERSION ?>
154 <?php } ?>
155 &copy; 2005&ndash;<?php echo date('Y') ?> <a href="http://fakecake.org/">Andrew Dolgov</a>
156 </div>
157
158 <?php db_close($link); ?>
159
160 </body>
161 </html>