]> git.wh0rd.org - tt-rss.git/blob - tt-rss.php
unreference seq from main hotkey handler
[tt-rss.git] / tt-rss.php
1 <?
2 require_once "functions.php";
3
4 basic_nosid_redirect_check();
5
6 require_once "sessions.php";
7
8 require_once "sanity_check.php";
9 require_once "version.php";
10 require_once "config.php";
11 require_once "db-prefs.php";
12
13 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
14
15 login_sequence($link);
16
17 $dt_add = get_script_dt_add();
18
19 ?>
20 <html>
21 <head>
22 <title>Tiny Tiny RSS</title>
23
24 <link rel="stylesheet" type="text/css" href="tt-rss.css">
25
26 <? $user_theme = $_SESSION["theme"];
27 if ($user_theme) { ?>
28 <link rel="stylesheet" type="text/css" href="themes/<?= $user_theme ?>/theme.css">
29 <? } ?>
30
31 <? if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
32
33 <? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
34 <? if ($user_css_url) { ?>
35 <link type="text/css" href="<?= $user_css_url ?>"/>
36 <? } ?>
37
38 <? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
39
40 <link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
41
42 <? } else { ?>
43
44 <link title="Compact Stylesheet" rel="alternate stylesheet"
45 type="text/css" href="tt-rss_compact.css"/>
46
47 <? } ?>
48
49 <script type="text/javascript" src="prototype.js"></script>
50
51 <script type="text/javascript" src="tt-rss.js?<?= $dt_add ?>"></script>
52 <script type="text/javascript" src="functions.js?<?= $dt_add ?>"></script>
53 <!--[if gte IE 5.5000]>
54 <script type="text/javascript" src="pngfix.js"></script>
55 <link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
56 <![endif]-->
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 <div id="overlay"><div id="overlay_inner">Loading, please wait...</div></div>
72 <div id="fatal_error"><div id="fatal_error_inner">
73 <h1>Fatal Error</h1>
74 <div id="fatal_error_msg">Unknown Error</div>
75 </div></div>
76
77 <script type="text/javascript">
78 if (document.addEventListener) {
79 document.addEventListener("DOMContentLoaded", init, null);
80 }
81 window.onload = init;
82 </script>
83
84 <div id="noDaemonWarning">
85 <b>Warning:</b> Update daemon is enabled in configuration, but daemon
86 process is not running, which prevents all feeds from updating. Please
87 start the daemon process or contact instance owner.
88 </div>
89
90 <iframe id="backReqBox"></iframe>
91
92 <ul id="debug_output"></ul>
93
94 <div id="infoBoxShadow"><div id="infoBox">&nbsp;</div></div>
95
96 <table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
97 <? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
98 <tr>
99 <td colspan="2" class="headerBox" id="mainHeader">
100 <table cellspacing="0" cellpadding="0" width="100%"><tr>
101 <td rowspan="2" class="header" valign="middle">
102 <img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">
103 </td>
104 <td valign="top" class="notifyBox">
105 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
106 </td>
107 </tr><tr><td class="welcomePrompt">
108 <? if (!SINGLE_USER_MODE) { ?>
109 Hello, <b><?= $_SESSION["name"] ?></b>
110 (<a href="logout.php">Logout</a>)
111 <? } ?>
112 </td>
113 </tr></table>
114 </td>
115 </tr>
116 <? } else { ?>
117 <tr>
118 <td class="small" id="mainHeader">
119 <div id="notify" class="notify_sm"><span id="notify_body">&nbsp;</span></div>
120 <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
121 </td><td class="welcomePrompt">
122 <? if (!SINGLE_USER_MODE) { ?>
123 Hello, <b><?= $_SESSION["name"] ?></b>
124 (<a href="logout.php">Logout</a>)
125 <? } ?>
126 </td></tr>
127 <? } ?>
128 <tr>
129 <? if (get_pref($link, 'COMBINED_DISPLAY_MODE'))
130 $feeds_rowspan = 2;
131 else
132 $feeds_rowspan = 3; ?>
133 <td valign="top" rowspan="<?= $feeds_rowspan ?>" class="feeds">
134 <table class="innerFeedTable"
135 cellspacing="0" cellpadding="0" height="100%" width="100%">
136 <tr><td>
137 <div id="dispSwitch">
138 <a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
139 </div>
140 </td></tr>
141 <tr><td height="100%" width="100%" valign="top">
142
143 <iframe frameborder="0"
144 id="feeds-frame" name="feeds-frame" class="feedsFrame"></iframe>
145
146 </td></tr></table>
147
148 </td>
149 <td valign="top" class="headlinesToolbarBox">
150 <table width="100%" cellpadding="0" cellspacing="0">
151
152 <tr><td class="headlinesToolbar" id="headlinesToolbar">
153
154 <form id="main_toolbar_form">
155
156 <? if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
157 <input name="query"
158 onKeyPress="return filterCR(event)"
159 onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
160 <input class="button" type="submit"
161 onclick="return viewCurrentFeed(0)" value="Search">
162 &nbsp;
163 <? } ?>
164
165 View:
166 <select name="view_mode" onchange="viewCurrentFeed(0, '')">
167 <option selected value="adaptive">Adaptive</option>
168 <option value="all_articles">All Articles</option>
169 <option value="marked">Starred</option>
170 <option value="unread">Unread</option>
171 </select>
172
173 &nbsp;Limit:
174 <?
175 $limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
176
177 $def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
178
179 if ($def_art_limit >= 0 && !array_key_exists($def_art_limit, $limits)) {
180 $limits[$def_art_limit] = $def_art_limit;
181 }
182
183 asort($limits);
184
185 if (!$def_art_limit) {
186 $def_art_limit = 30;
187 }
188
189 print_select_hash("limit", $def_art_limit, $limits,
190 'onchange="viewCurrentFeed(0, \'\')"');
191
192 ?>
193 </form>
194
195 <!-- &nbsp;<input class="button" type="submit"
196 onclick="quickMenuGo('qmcSearch')" value="Search (tmp)"> -->
197
198 &nbsp;<input class="button" type="submit"
199 onclick="viewCurrentFeed(0, 'ForceUpdate')" value="Update">
200
201 <input class="button" type="submit"
202 onclick="catchupCurrentFeed()" value="Mark as read">
203
204 </td>
205 <td align="right">
206 <select id="quickMenuChooser" onchange="quickMenuChange()">
207 <option value="qmcDefault" selected>Actions...</option>
208 <option value="qmcPrefs">Preferences</option>
209 <option value="qmcSearch">Search</option>
210 <option disabled>--------</option>
211 <option style="color : #5050aa" disabled>Feed actions:</option>
212 <option value="qmcAddFeed">&nbsp;&nbsp;Subscribe to feed</option>
213 <option value="qmcRemoveFeed">&nbsp;&nbsp;Unsubscribe</option>
214 <!-- <option>Edit this feed</option> -->
215 <option disabled>--------</option>
216 <option style="color : #5050aa" disabled>All feeds:</option>
217 <? if (!ENABLE_UPDATE_DAEMON && !DAEMON_REFRESH_ONLY) { ?>
218 <option value="qmcUpdateFeeds">&nbsp;&nbsp;Update</option>
219 <? } ?>
220 <option value="qmcCatchupAll">&nbsp;&nbsp;Mark as read</option>
221 <option value="qmcShowOnlyUnread">&nbsp;&nbsp;Show only unread</option>
222 <option disabled>--------</option>
223 <option style="color : #5050aa" disabled>Other actions:</option>
224 <option value="qmcAddFilter">&nbsp;&nbsp;Create filter</option>
225 </select>
226 </td>
227 </tr>
228 </table>
229 </td>
230 </tr>
231 <? if (get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
232 <tr>
233 <td id="headlines" class="headlines2" valign="top">
234 <iframe frameborder="0" name="headlines-frame"
235 id="headlines-frame" class="headlinesFrame"></iframe>
236 </td>
237 </tr>
238 <? } else { ?>
239 <tr>
240 <td id="headlines" class="headlines" valign="top">
241 <iframe frameborder="0" name="headlines-frame"
242 id="headlines-frame" class="headlinesFrame"></iframe>
243 </td>
244 </tr><tr>
245 <td class="content" id="content" valign="top">
246 <iframe frameborder="0" name="content-frame"
247 id="content-frame" class="contentFrame"> </iframe>
248 </td>
249 </tr>
250 <? } ?>
251 <? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
252 <tr>
253 <td colspan="2" class="footer" id="mainFooter">
254 <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005-2006 Andrew Dolgov
255 <? if (WEB_DEMO_MODE) { ?>
256 <br>Running in demo mode, some functionality is disabled.
257 <? } ?>
258 </td>
259 </td>
260 <? } ?>
261 </table>
262
263 <? db_close($link); ?>
264
265 <script type="text/javascript">
266 /* for IE */
267 function statechange() {
268 if (document.readyState == "interactive") init();
269 }
270
271 if (document.readyState) {
272 if (document.readyState == "interactive" || document.readyState == "complete") {
273 init();
274 } else {
275 document.onreadystatechange = statechange;
276 }
277 }
278 </script>
279
280 </body>
281 </html>