]> git.wh0rd.org - tt-rss.git/blame - tt-rss.php
add confirmation to Mark as read action (closes #96)
[tt-rss.git] / tt-rss.php
CommitLineData
4062022e 1<?
7ae65adf
AD
2 require_once "functions.php";
3
4 basic_nosid_redirect_check();
5
36bfab86 6 require_once "sessions.php";
66581886
AD
7
8 require_once "sanity_check.php";
4062022e
AD
9 require_once "version.php";
10 require_once "config.php";
11 require_once "db-prefs.php";
da5d0d09 12
4062022e 13 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
c93f38c4 14
b8aa49bc 15 login_sequence($link);
ff485f1d 16
1b758780 17 $dt_add = get_script_dt_add();
53515ff1 18
4062022e 19?>
1cd17194
AD
20<html>
21<head>
22 <title>Tiny Tiny RSS</title>
da5d0d09 23
430bf183
AD
24 <link rel="stylesheet" type="text/css" href="tt-rss.css">
25
503eb349
AD
26 <? $user_theme = $_SESSION["theme"];
27 if ($user_theme) { ?>
28 <link rel="stylesheet" type="text/css" href="themes/<?= $user_theme ?>/theme.css">
29 <? } ?>
30
5d35cdcd
AD
31 <? if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
32
386d7b5b
AD
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
4062022e 38 <? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
da5d0d09 39
430bf183 40 <link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
da5d0d09
AD
41
42 <? } else { ?>
43
430bf183
AD
44 <link title="Compact Stylesheet" rel="alternate stylesheet"
45 type="text/css" href="tt-rss_compact.css"/>
da5d0d09
AD
46
47 <? } ?>
628eb1bd 48
a58069db
AD
49 <script type="text/javascript" src="prototype.js"></script>
50
53515ff1
AD
51 <script type="text/javascript" src="tt-rss.js?<?= $dt_add ?>"></script>
52 <script type="text/javascript" src="functions.js?<?= $dt_add ?>"></script>
d5224f0d
AD
53 <!--[if gte IE 5.5000]>
54 <script type="text/javascript" src="pngfix.js"></script>
96737ce9 55 <link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
d5224f0d 56 <![endif]-->
d76a3b03 57 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
362698ad
AD
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 }
6b9bf6c2
AD
63 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
64 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
65 }
362698ad 66 </script>
1cd17194
AD
67</head>
68
97dcd654
AD
69<body>
70
2055d4a6 71<div id="overlay"><div id="overlay_inner">Loading, please wait...</div></div>
af106b0e
AD
72<div id="fatal_error"><div id="fatal_error_inner">
73 <h1>Fatal Error</h1>
462a192b 74 <div id="fatal_error_msg">Unknown Error</div>
af106b0e 75</div></div>
2055d4a6 76
97dcd654
AD
77<script type="text/javascript">
78if (document.addEventListener) {
79 document.addEventListener("DOMContentLoaded", init, null);
80}
81window.onload = init;
82</script>
1cd17194 83
71ad883b
AD
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>
27981ca3 89
0ee1d1a0
AD
90<ul id="debug_output"></ul>
91
cea10627
AD
92<div id="infoBoxShadow"><div id="infoBox">&nbsp;</div></div>
93
828a8ecc 94<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
4062022e 95<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
1cd17194 96<tr>
1de2b92c 97 <td colspan="2" class="headerBox" id="mainHeader">
828a8ecc 98 <table cellspacing="0" cellpadding="0" width="100%"><tr>
c93f38c4 99 <td rowspan="2" class="header" valign="middle">
5d35cdcd 100 <img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="logo">
828a8ecc 101 </td>
82e1fe00 102 <td valign="top" class="notifyBox">
036f45ab 103 <div id="notify"><span id="notify_body">&nbsp;</span></div>
828a8ecc 104 </td>
c93f38c4 105 </tr><tr><td class="welcomePrompt">
7d4c898a 106 <? if (!SINGLE_USER_MODE) { ?>
9f78104c
AD
107 Hello, <b><?= $_SESSION["name"] ?></b>
108 (<a href="logout.php">Logout</a>)
8cb74804
AD
109 <? } ?>
110 </td>
828a8ecc 111 </tr></table>
2c1dd701
AD
112 </td>
113</tr>
69919a24 114<? } else { ?>
82e1fe00 115<tr>
1de2b92c 116 <td class="small" id="mainHeader">
82e1fe00
AD
117 <div id="notify"><span id="notify_body">&nbsp;</span></div>
118 <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
119 </td><td class="welcomePrompt">
120 <? if (!SINGLE_USER_MODE) { ?>
121 Hello, <b><?= $_SESSION["name"] ?></b>
122 (<a href="logout.php">Logout</a>)
123 <? } ?>
b8dc6247 124</td></tr>
da5d0d09 125<? } ?>
1cd17194 126<tr>
06300301
AD
127 <? if (get_pref($link, 'COMBINED_DISPLAY_MODE'))
128 $feeds_rowspan = 2;
129 else
130 $feeds_rowspan = 3; ?>
131 <td valign="top" rowspan="<?= $feeds_rowspan ?>" class="feeds">
28fa9253
AD
132 <table class="innerFeedTable"
133 cellspacing="0" cellpadding="0" height="100%" width="100%">
134 <tr><td>
135 <div id="dispSwitch">
136 <a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
137 </div>
138 </td></tr>
139 <tr><td height="100%" width="100%" valign="top">
f69ea84d
AD
140
141 <iframe frameborder="0"
caa53a7c 142 id="feeds-frame" name="feeds-frame" class="feedsFrame"></iframe>
caa4e57f 143
f69ea84d
AD
144 </td></tr></table>
145
1cd17194 146 </td>
f0601b87 147 <td valign="top" class="headlinesToolbarBox">
e828e31e 148 <table width="100%" cellpadding="0" cellspacing="0">
5238347d 149
ac43eba1 150 <tr><td class="headlinesToolbar" id="headlinesToolbar">
5238347d 151
164f4738 152 <form id="main_toolbar_form">
5238347d 153
164f4738
AD
154 <? if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
155 <input name="query"
156 onKeyPress="return filterCR(event)"
b0005823 157 onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
164f4738
AD
158 <input class="button" type="submit"
159 onclick="return viewCurrentFeed(0)" value="Search">
160 &nbsp;
161 <? } ?>
f0601b87 162
86b682ce
AD
163 View:
164 <select name="view_mode" onchange="viewCurrentFeed(0, '')">
165 <option selected value="adaptive">Adaptive</option>
166 <option value="all_articles">All Articles</option>
167 <option value="marked">Starred</option>
168 <option value="unread">Unread</option>
f0601b87 169 </select>
164f4738
AD
170
171 &nbsp;Limit:
f1b9a8ee 172 <?
86b682ce 173 $limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
f1b9a8ee 174
86b682ce 175 $def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
cb1083a1 176
86b682ce
AD
177 if ($def_art_limit >= 0 && !array_key_exists($def_art_limit, $limits)) {
178 $limits[$def_art_limit] = $def_art_limit;
179 }
1572afe5 180
86b682ce
AD
181 asort($limits);
182
183 if (!$def_art_limit) {
184 $def_art_limit = 30;
185 }
186
187 print_select_hash("limit", $def_art_limit, $limits,
188 'onchange="viewCurrentFeed(0, \'\')"');
189
190 ?>
191 </form>
1572afe5 192
86b682ce
AD
193 <!-- &nbsp;<input class="button" type="submit"
194 onclick="quickMenuGo('qmcSearch')" value="Search (tmp)"> -->
1572afe5 195
86b682ce
AD
196 &nbsp;<input class="button" type="submit"
197 onclick="viewCurrentFeed(0, 'ForceUpdate')" value="Update">
f0601b87 198
86b682ce 199 <input class="button" type="submit"
fce24838 200 onclick="catchupCurrentFeed()" value="Mark as read">
f0601b87 201
a14f82f2
AD
202 </td>
203 <td align="right">
c09ec856 204 <select id="quickMenuChooser" onchange="quickMenuChange()">
86b682ce
AD
205 <option value="qmcDefault" selected>Actions...</option>
206 <option value="qmcPrefs">Preferences</option>
207 <option value="qmcSearch">Search</option>
7a991cac
AD
208 <option disabled>--------</option>
209 <option style="color : #5050aa" disabled>Feed actions:</option>
86b682ce
AD
210 <option value="qmcAddFeed">&nbsp;&nbsp;Subscribe to feed</option>
211 <option value="qmcRemoveFeed">&nbsp;&nbsp;Unsubscribe</option>
e2f8f7b4 212 <!-- <option>Edit this feed</option> -->
7a991cac
AD
213 <option disabled>--------</option>
214 <option style="color : #5050aa" disabled>All feeds:</option>
0d51e25d 215 <? if (!ENABLE_UPDATE_DAEMON && !DAEMON_REFRESH_ONLY) { ?>
86b682ce 216 <option value="qmcUpdateFeeds">&nbsp;&nbsp;Update</option>
085a5a74 217 <? } ?>
86b682ce
AD
218 <option value="qmcCatchupAll">&nbsp;&nbsp;Mark as read</option>
219 <option value="qmcShowOnlyUnread">&nbsp;&nbsp;Show only unread</option>
a24f525c
AD
220 <option disabled>--------</option>
221 <option style="color : #5050aa" disabled>Other actions:</option>
86b682ce 222 <option value="qmcAddFilter">&nbsp;&nbsp;Create filter</option>
e2f8f7b4 223 </select>
a14f82f2
AD
224 </td>
225 </tr>
f0601b87 226 </table>
386cbf27
AD
227 </td>
228</tr>
229<? if (get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
230<tr>
231 <td id="headlines" class="headlines2" valign="top">
232 <iframe frameborder="0" name="headlines-frame"
caa53a7c 233 id="headlines-frame" class="headlinesFrame"></iframe>
386cbf27
AD
234 </td>
235</tr>
236<? } else { ?>
237<tr>
1cd17194 238 <td id="headlines" class="headlines" valign="top">
5bfef089 239 <iframe frameborder="0" name="headlines-frame"
caa53a7c 240 id="headlines-frame" class="headlinesFrame"></iframe>
1cd17194 241 </td>
bb7cface 242</tr><tr>
1cd17194 243 <td class="content" id="content" valign="top">
5bfef089 244 <iframe frameborder="0" name="content-frame"
caa53a7c 245 id="content-frame" class="contentFrame"> </iframe>
1cd17194
AD
246 </td>
247</tr>
386cbf27 248<? } ?>
4062022e 249<? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
1cd17194 250<tr>
1de2b92c 251 <td colspan="2" class="footer" id="mainFooter">
36ae0574 252 <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005-2006 Andrew Dolgov
0b615681
AD
253 <? if (WEB_DEMO_MODE) { ?>
254 <br>Running in demo mode, some functionality is disabled.
255 <? } ?>
1cd17194
AD
256 </td>
257</td>
da5d0d09 258<? } ?>
1cd17194
AD
259</table>
260
ab49d368 261<? db_close($link); ?>
1cd17194 262
97dcd654
AD
263<script type="text/javascript">
264 /* for IE */
265 function statechange() {
266 if (document.readyState == "interactive") init();
267 }
268
269 if (document.readyState) {
270 if (document.readyState == "interactive" || document.readyState == "complete") {
271 init();
272 } else {
273 document.onreadystatechange = statechange;
274 }
275 }
276</script>
277
1cd17194
AD
278</body>
279</html>