]> git.wh0rd.org - tt-rss.git/blame - tt-rss.php
make feedlist collapsable
[tt-rss.git] / tt-rss.php
CommitLineData
1d3a17c7 1<?php
d65981e2
AD
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
7ae65adf 4 require_once "functions.php";
1df0f48b 5 require_once "sessions.php";
66581886 6 require_once "sanity_check.php";
4062022e
AD
7 require_once "version.php";
8 require_once "config.php";
9 require_once "db-prefs.php";
da5d0d09 10
4062022e 11 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
c93f38c4 12
b8aa49bc 13 login_sequence($link);
ff485f1d 14
1b758780 15 $dt_add = get_script_dt_add();
53515ff1 16
dc56b3b7 17 no_cache_incantation();
1df0f48b 18
4062022e 19?>
6b4163cb
AD
20<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
21 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1cd17194
AD
22<html>
23<head>
24 <title>Tiny Tiny RSS</title>
da5d0d09 25
48d5f90a 26 <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>">
430bf183 27
1d3a17c7 28 <?php $user_theme = $_SESSION["theme"];
503eb349 29 if ($user_theme) { ?>
48d5f90a 30 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css?<?php echo $dt_add ?>">
1d3a17c7 31 <?php } ?>
503eb349 32
1d3a17c7 33 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
5d35cdcd 34
1d3a17c7
AD
35 <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
36 <?php if ($user_css_url) { ?>
2e4afda7 37 <link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
1d3a17c7 38 <?php } ?>
386d7b5b 39
5f2add13 40 <!--[if lt IE 7]>
935f235d 41 <script type="text/javascript" src="pngfix.js"></script>
5f2add13
AD
42 <link rel="stylesheet" type="text/css" href="ie6.css">
43 <![endif]-->
44
45 <!--[if IE 7]>
46 <link rel="stylesheet" type="text/css" href="ie7.css">
935f235d
AD
47 <![endif]-->
48
c0266b88
AD
49 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
50
a58069db 51 <script type="text/javascript" src="prototype.js"></script>
a7750ac6 52 <script type="text/javascript" src="scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
709e7dc2 53 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
1d3a17c7
AD
54 <script type="text/javascript" src="tt-rss.js?<?php echo $dt_add ?>"></script>
55 <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
6b4163cb
AD
56 <script type="text/javascript" src="feedlist.js?<?php echo $dt_add ?>"></script>
57 <script type="text/javascript" src="viewfeed.js?<?php echo $dt_add ?>"></script>
58
d76a3b03 59 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
362698ad
AD
60
61 <script type="text/javascript">
62 if (navigator.userAgent.match("Opera")) {
63 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
64 }
6b9bf6c2
AD
65 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
66 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
67 }
362698ad 68 </script>
1cd17194
AD
69</head>
70
a9d42cf7 71<body onresize="resize_headlines()">
97dcd654 72
84916243
AD
73<div id="overlay">
74 <div id="overlay_inner">
d1db26aa 75 <p><?php echo __("Loading, please wait...") ?></p>
84916243 76 <noscript>
b76affe9 77 <div class="error"><?php echo
d1db26aa 78 __("Your browser doesn't support Javascript, which is required
84916243 79 for this application to function properly. Please check your
b76affe9 80 browser settings.") ?></div>
84916243
AD
81 </noscript>
82 </div>
83</div>
6b4163cb 84
33b8cab4
AD
85<div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
86
af106b0e
AD
87<div id="fatal_error"><div id="fatal_error_inner">
88 <h1>Fatal Error</h1>
462a192b 89 <div id="fatal_error_msg">Unknown Error</div>
af106b0e 90</div></div>
2055d4a6 91
5ede560f
AD
92<div id="dialog_overlay"> </div>
93
97dcd654
AD
94<script type="text/javascript">
95if (document.addEventListener) {
96 document.addEventListener("DOMContentLoaded", init, null);
97}
98window.onload = init;
99</script>
1cd17194 100
0ee1d1a0
AD
101<ul id="debug_output"></ul>
102
cea10627
AD
103<div id="infoBoxShadow"><div id="infoBox">&nbsp;</div></div>
104
c2625f8e 105<div id="header">
efae7595 106 <div class="topLinks">
c2625f8e 107 <?php if (!SINGLE_USER_MODE) { ?>
efae7595 108 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
c2625f8e 109 <?php } ?>
efae7595
AD
110 <a href="prefs.php"><?php echo __('Preferences') ?></a>
111
be746c8e 112 <?php if (defined('FEEDBACK_URL')) { ?>
db499b67 113 | <a target="_blank" class="feedback" href="<?php echo FEEDBACK_URL ?>">
b5dabd1a 114 <?php echo __('Comments?') ?></a>
be746c8e 115 <?php } ?>
b5dabd1a 116
efae7595
AD
117 <?php if (!SINGLE_USER_MODE) { ?>
118 | <a href="logout.php"><?php echo __('Logout') ?></a>
119 <?php } ?>
120
b4507bc2 121 <img id="newVersionIcon" style="display:none;" onclick="javascript:explainError(2)"
d9fa39f1
AD
122 src="images/new_version.png" title="New version is available!"
123 alt="new_version_icon">
124 </div>
3f59e8cd 125 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
c2625f8e 126</div>
caa4e57f 127
6b4163cb
AD
128<div id="feeds-holder">
129 <div id="dispSwitch">
709e7dc2 130 <a id="dispSwitchPrompt"
0979b696 131 href="javascript:toggleTags()"><?php echo __("tag cloud") ?></a>
6b4163cb 132 </div>
eb58af8d 133 <div id="feeds-frame">&nbsp;</div>
6b4163cb 134</div>
f69ea84d 135
6b4163cb 136<div id="toolbar">
5238347d 137
6b4163cb
AD
138 <div style="float : right">
139 <select id="quickMenuChooser" onchange="quickMenuChange()">
d1db26aa
AD
140 <option value="qmcDefault" selected><?php echo __('Actions...') ?></option>
141 <option value="qmcSearch"><?php echo __('Search') ?></option>
efae7595 142 <!-- <option value="qmcPrefs"><?php echo __('Preferences') ?></option> -->
6b4163cb 143 <option disabled>--------</option>
d1db26aa
AD
144 <option style="color : #5050aa" disabled><?php echo __('Feed actions:') ?></option>
145 <option value="qmcAddFeed"><?php echo __('&nbsp;&nbsp;Subscribe to feed') ?></option>
146 <option value="qmcEditFeed"><?php echo __('&nbsp;&nbsp;Edit this feed') ?></option>
c4a36709 147 <!-- <option value="qmcClearFeed"><?php echo __('&nbsp;&nbsp;Clear articles') ?></option> -->
d1db26aa 148 <option value="qmcRemoveFeed"><?php echo __('&nbsp;&nbsp;Unsubscribe') ?></option>
6b4163cb 149 <option disabled>--------</option>
d1db26aa 150 <option style="color : #5050aa" disabled><?php echo __('All feeds:') ?></option>
d1db26aa
AD
151 <option value="qmcCatchupAll"><?php echo __('&nbsp;&nbsp;Mark as read') ?></option>
152 <option value="qmcShowOnlyUnread"><?php echo __('&nbsp;&nbsp;(Un)hide read feeds') ?></option>
6b4163cb 153 <option disabled>--------</option>
d1db26aa
AD
154 <option style="color : #5050aa" disabled><?php echo __('Other actions:') ?></option>
155 <option value="qmcAddFilter"><?php echo __('&nbsp;&nbsp;Create filter') ?></option>
6b4163cb
AD
156 </select>
157 </div>
5238347d 158
e6312f6c 159 <form id="main_toolbar_form" onsubmit='return false'>
5238347d 160
8389b150
AD
161 <input type="submit" value="&lt;&lt;"
162 id="collapse_feeds_btn" onclick="collapse_feedlist()"
163 title="<?php echo __('Collapse feedlist') ?>" style="display : none">
164
165 <input type="submit" value="<?php echo __("Toggle Feedlist") ?>"
166 id="toggle_feeds_btn"
24c1e1c1
AD
167 onclick="toggle_feedlist()" style="display : none">
168
feead173
AD
169 <?php if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
170
d1db26aa 171 <?php echo __('Search:') ?>
3dc8ee84 172 <input name="query" type="search"
6e6504bc 173 onKeyPress="return filterCR(event, viewCurrentFeed)"
b0005823 174 onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
8551c73a 175
feead173
AD
176 <?php } ?>
177
d1db26aa 178 <?php echo __('View:') ?>
86b682ce 179 <select name="view_mode" onchange="viewCurrentFeed(0, '')">
d1db26aa
AD
180 <option selected value="adaptive"><?php echo __('Adaptive') ?></option>
181 <option value="all_articles"><?php echo __('All Articles') ?></option>
182 <option value="marked"><?php echo __('Starred') ?></option>
183 <option value="unread"><?php echo __('Unread') ?></option>
f0601b87 184 </select>
164f4738 185
d1db26aa 186 <?php echo __('Limit:') ?>
1d3a17c7 187 <?php
86b682ce 188 $limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
f1b9a8ee 189
86b682ce 190 $def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
cb1083a1 191
86b682ce
AD
192 if ($def_art_limit >= 0 && !array_key_exists($def_art_limit, $limits)) {
193 $limits[$def_art_limit] = $def_art_limit;
194 }
1572afe5 195
86b682ce
AD
196 asort($limits);
197
198 if (!$def_art_limit) {
199 $def_art_limit = 30;
200 }
201
202 print_select_hash("limit", $def_art_limit, $limits,
203 'onchange="viewCurrentFeed(0, \'\')"');
204
205 ?>
2df7a749
AD
206
207 &nbsp;
208
209 <input class="button" type="submit"
210 onclick="return viewCurrentFeed('ForceUpdate')"
d1db26aa 211 value="<?php echo __('Update') ?>">
2df7a749 212
86b682ce 213 </form>
1572afe5 214
86b682ce
AD
215 <!-- &nbsp;<input class="button" type="submit"
216 onclick="quickMenuGo('qmcSearch')" value="Search (tmp)"> -->
1572afe5 217
11befbb2
AD
218 <!-- <input class="button" type="submit"
219 onclick="catchupCurrentFeed()" value="Mark as read"> -->
f0601b87 220
6b4163cb
AD
221 </div>
222
80e4dc34 223<?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
b76affe9 224 <div id="headlines-frame" class="headlines_normal">
d1db26aa 225 <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
17ec931d 226 <div id="content-frame"><div class="whiteBox">&nbsp;</div></div>
80e4dc34 227<?php } else { ?>
b76affe9 228 <div id="headlines-frame" class="headlines_cdm">
d1db26aa 229 <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
80e4dc34 230<?php } ?>
6b4163cb 231
c2625f8e 232<div id="footer">
461766f3
AD
233 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
234 <select id="userSwitch" onchange="userSwitch()">
235 <?php
236 foreach (array('admin', 'fox', 'test') as $u) {
237 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
238 print "<option $op_sel>$u</option>";
239 }
240 ?>
241 </select>
aff31ecf 242 <?php } ?>
03a11e23 243 <a href="http://tt-rss.org/">Tiny Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005&ndash;2008 <a href="http://bah.org.ru/">Andrew Dolgov</a>
c2625f8e 244</div>
1cd17194 245
1d3a17c7 246<?php db_close($link); ?>
1cd17194 247
97dcd654
AD
248<script type="text/javascript">
249 /* for IE */
250 function statechange() {
251 if (document.readyState == "interactive") init();
252 }
253
254 if (document.readyState) {
255 if (document.readyState == "interactive" || document.readyState == "complete") {
256 init();
257 } else {
258 document.onreadystatechange = statechange;
259 }
260 }
261</script>
262
1cd17194
AD
263</body>
264</html>