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</title>
26 <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
28 <?php $user_theme = $_SESSION["theme"];
30 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css?<?php echo $dt_add ?>">
33 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
35 <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
36 <?php if ($user_css_url) { ?>
37 <link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
40 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
42 <script type="text/javascript" src="prototype.js"></script>
43 <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>
45 <script type="text/javascript" src="tt-rss.js?<?php echo $dt_add ?>"></script>
46 <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
47 <script type="text/javascript" src="feedlist.js?<?php echo $dt_add ?>"></script>
48 <script type="text/javascript" src="viewfeed.js?<?php echo $dt_add ?>"></script>
50 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
52 <script type="text/javascript">
54 if (navigator.userAgent.match("Opera")) {
55 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
57 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
58 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
60 window.onresize=resize_headlines;
67 <div id="overlay" style="display : block">
68 <div id="overlay_inner">
69 <?php echo __("Loading, please wait...") ?>
71 <div id="l_progress_o">
72 <div id="l_progress_i"></div>
76 <div class="error"><?php echo
77 __("Your browser doesn't support Javascript, which is required
78 for this application to function properly. Please check your
79 browser settings.") ?></div>
84 <div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
85 <?php rounded_table_start("hho"); ?>
86 <?php include "help/3.php" ?>
87 <?php rounded_table_end(); ?>
90 <div id="notify" class="notify"><span id="notify_body"> </span></div>
92 <div id="fatal_error"><div id="fatal_error_inner">
94 <div id="fatal_error_msg">Unknown Error</div>
97 <div id="dialog_overlay" style="display : none"> </div>
99 <script type="text/javascript">
100 if (document.addEventListener) {
101 document.addEventListener("DOMContentLoaded", init, null);
103 window.onload = init;
106 <ul id="debug_output" style='display : none'><li> </li></ul>
108 <div id="infoBoxShadow"><div id="infoBox"> </div></div>
111 <div class="topLinks">
112 <?php if (!SINGLE_USER_MODE) { ?>
113 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
115 <a href="prefs.php"><?php echo __('Preferences') ?></a>
117 <?php if (defined('FEEDBACK_URL')) { ?>
118 | <a target="_blank" class="feedback" href="<?php echo FEEDBACK_URL ?>">
119 <?php echo __('Comments?') ?></a>
122 <?php if (!SINGLE_USER_MODE) { ?>
123 | <a href="logout.php"><?php echo __('Logout') ?></a>
126 <img id="newVersionIcon" style="display:none;" onclick="javascript:explainError(2)"
127 src="images/new_version.png" title="New version is available!"
128 alt="new_version_icon"/>
130 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
133 <div id="feeds-holder">
134 <div id="dispSwitch">
135 <a id="dispSwitchPrompt"
136 href="javascript:toggleTags()"><?php echo __("tag cloud") ?></a>
138 <div id="feeds-frame"> </div>
143 <div style="float : right">
144 <select id="quickMenuChooser" onchange="quickMenuChange()">
145 <option value="qmcDefault" selected="selected"><?php echo __('Actions...') ?></option>
146 <option value="qmcSearch"><?php echo __('Search') ?></option>
147 <!-- <option value="qmcPrefs"><?php echo __('Preferences') ?></option> -->
148 <option disabled="disabled">--------</option>
149 <option style="color : #5050aa" disabled="disabled"><?php echo __('Feed actions:') ?></option>
150 <option value="qmcAddFeed"><?php echo __(' Subscribe to feed') ?></option>
151 <option value="qmcEditFeed"><?php echo __(' Edit this feed') ?></option>
152 <!-- <option value="qmcClearFeed"><?php echo __(' Clear articles') ?></option> -->
153 <option value="qmcRescoreFeed"><?php echo __(' Rescore feed') ?></option>
154 <option value="qmcRemoveFeed"><?php echo __(' Unsubscribe') ?></option>
155 <option disabled="disabled">--------</option>
156 <option style="color : #5050aa" disabled="disabled"><?php echo __('All feeds:') ?></option>
157 <option value="qmcCatchupAll"><?php echo __(' Mark as read') ?></option>
158 <option value="qmcShowOnlyUnread"><?php echo __(' (Un)hide read feeds') ?></option>
159 <option disabled="disabled">--------</option>
160 <option style="color : #5050aa" disabled="disabled"><?php echo __('Other actions:') ?></option>
161 <option value="qmcAddFilter"><?php echo __(' Create filter') ?></option>
162 <option value="qmcResetUI"><?php echo __(' Reset UI layout') ?></option>
163 <option value="qmcResetCats"><?php echo __(' Reset category order') ?></option>
165 <option value="qmcHKhelp"><?php echo __(' Keyboard shortcuts') ?></option>
169 <form id="main_toolbar_form" action="" onsubmit='return false'>
171 <input type="submit" value="<<"
172 id="collapse_feeds_btn" onclick="collapse_feedlist()" class="button"
173 title="<?php echo __('Collapse feedlist') ?>" style="display : none"/>
175 <input type="submit" value="<?php echo __("Toggle Feedlist") ?>"
176 id="toggle_feeds_btn" class="button"
177 onclick="toggle_feedlist()" style="display : none"/>
181 <?php if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
183 <?php echo __('Search:') ?>
184 <input name="query" type="text"
185 onkeypress="return filterCR(event, viewCurrentFeed)"
186 onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();"/>
190 <select name="view_mode" onchange="viewModeChanged()">
191 <option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
192 <option value="all_articles"><?php echo __('All Articles') ?></option>
193 <option value="marked"><?php echo __('Starred') ?></option>
194 <option value="unread"><?php echo __('Unread') ?></option>
195 <!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
198 <?php echo __('Order:') ?>
200 <select name="order_by" onchange="viewModeChanged()">
201 <option selected="selected" value="default"><?php echo __('Default') ?></option>
202 <option value="date"><?php echo __('Date') ?></option>
203 <option value="title"><?php echo __('Title') ?></option>
204 <option value="score"><?php echo __('Score') ?></option>
208 <?php echo __('Limit:') ?>
210 $limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
212 $def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
214 if ($def_art_limit >= 0 && !array_key_exists($def_art_limit, $limits)) {
215 $limits[$def_art_limit] = $def_art_limit;
220 if (!$def_art_limit) {
224 print_select_hash("limit", $def_art_limit, $limits,
225 'onchange="viewLimitChanged()"');
231 <input class="button" type="submit"
232 onclick="return viewCurrentFeed('ForceUpdate')"
233 value="<?php echo __('Update') ?>"/>
237 <!-- <input class="button" type="submit"
238 onclick="quickMenuGo('qmcSearch')" value="Search (tmp)"> -->
240 <!-- <input class="button" type="submit"
241 onclick="catchupCurrentFeed()" value="Mark as read"> -->
245 <?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
246 <div id="headlines-frame" class="headlines_normal">
247 <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
248 <div id="content-frame">
249 <div id="resize-grabber"
250 onmouseover="enable_resize(true)" onmouseout="enable_resize(false)"
251 title="<?php echo __('Drag me to resize panels') ?>">
252 <img src="images/resize_handle_horiz.png" id="resize-handle"
253 onmouseover="enable_resize(true)" onmouseout="enable_resize(false)"
256 <div id="content-insert"> </div>
257 <!-- <div class="whiteBox"> </div> --> </div>
259 <div id="headlines-frame" class="headlines_cdm">
260 <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
264 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
265 <select id="userSwitch" onchange="userSwitch()">
267 foreach (array('admin', 'fox', 'test') as $u) {
268 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
269 print "<option $op_sel>$u</option>";
274 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
275 <?php if (!defined('HIDE_VERSION')) { ?>
276 v<?php echo VERSION ?>
278 © 2005–2008 <a href="http://bah.org.ru/">Andrew Dolgov</a>
281 <?php db_close($link); ?>
283 <script type="text/javascript">
285 function statechange() {
286 if (document.readyState == "interactive") init();
289 if (document.readyState) {
290 if (document.readyState == "interactive" || document.readyState == "complete") {
293 document.onreadystatechange = statechange;