]> git.wh0rd.org - tt-rss.git/blame - tt-rss.php
force scripts refresh on every reload
[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
53515ff1
AD
17 $dt_add = time();
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
386d7b5b
AD
31 <? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
32 <? if ($user_css_url) { ?>
33 <link type="text/css" href="<?= $user_css_url ?>"/>
34 <? } ?>
35
4062022e 36 <? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
da5d0d09 37
430bf183 38 <link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
da5d0d09
AD
39
40 <? } else { ?>
41
430bf183
AD
42 <link title="Compact Stylesheet" rel="alternate stylesheet"
43 type="text/css" href="tt-rss_compact.css"/>
da5d0d09
AD
44
45 <? } ?>
628eb1bd 46
53515ff1
AD
47 <script type="text/javascript" src="tt-rss.js?<?= $dt_add ?>"></script>
48 <script type="text/javascript" src="functions.js?<?= $dt_add ?>"></script>
d5224f0d
AD
49 <!--[if gte IE 5.5000]>
50 <script type="text/javascript" src="pngfix.js"></script>
96737ce9 51 <link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
d5224f0d 52 <![endif]-->
d76a3b03 53 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
362698ad
AD
54
55 <script type="text/javascript">
56 if (navigator.userAgent.match("Opera")) {
57 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
58 }
59 </script>
1cd17194
AD
60</head>
61
97dcd654
AD
62<body>
63
2055d4a6
AD
64<div id="overlay"><div id="overlay_inner">Loading, please wait...</div></div>
65
97dcd654
AD
66<script type="text/javascript">
67if (document.addEventListener) {
68 document.addEventListener("DOMContentLoaded", init, null);
69}
70window.onload = init;
71</script>
1cd17194 72
27981ca3
AD
73<? if (ENABLE_UPDATE_DAEMON && !file_is_locked("update_daemon.lock")) { ?>
74 <div class="warning">
75 <b>Warning:</b> Update daemon is enabled in configuration, but daemon
76 process is not running, which prevents all feeds from updating. Please
77 start the daemon process or contact instance owner.
78 </div>
79<? } ?>
80
0ee1d1a0
AD
81<ul id="debug_output"></ul>
82
828a8ecc 83<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
4062022e 84<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
1cd17194 85<tr>
1de2b92c 86 <td colspan="2" class="headerBox" id="mainHeader">
828a8ecc 87 <table cellspacing="0" cellpadding="0" width="100%"><tr>
c93f38c4 88 <td rowspan="2" class="header" valign="middle">
828a8ecc
AD
89 <img src="images/ttrss_logo.png" alt="logo">
90 </td>
82e1fe00 91 <td valign="top" class="notifyBox">
036f45ab 92 <div id="notify"><span id="notify_body">&nbsp;</span></div>
828a8ecc 93 </td>
69919a24 94
76332f3c 95 <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
69919a24 96
c93f38c4 97 </tr><tr><td class="welcomePrompt">
7d4c898a 98 <? if (!SINGLE_USER_MODE) { ?>
9f78104c
AD
99 Hello, <b><?= $_SESSION["name"] ?></b>
100 (<a href="logout.php">Logout</a>)
8cb74804
AD
101 <? } ?>
102 </td>
828a8ecc 103 </tr></table>
2c1dd701
AD
104 </td>
105</tr>
69919a24 106<? } else { ?>
82e1fe00 107<tr>
1de2b92c 108 <td class="small" id="mainHeader">
82e1fe00
AD
109 <div id="notify"><span id="notify_body">&nbsp;</span></div>
110 <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
111 </td><td class="welcomePrompt">
112 <? if (!SINGLE_USER_MODE) { ?>
113 Hello, <b><?= $_SESSION["name"] ?></b>
114 (<a href="logout.php">Logout</a>)
115 <? } ?>
b8dc6247 116</td></tr>
da5d0d09 117<? } ?>
1cd17194 118<tr>
06300301
AD
119 <? if (get_pref($link, 'COMBINED_DISPLAY_MODE'))
120 $feeds_rowspan = 2;
121 else
122 $feeds_rowspan = 3; ?>
123 <td valign="top" rowspan="<?= $feeds_rowspan ?>" class="feeds">
28fa9253
AD
124 <table class="innerFeedTable"
125 cellspacing="0" cellpadding="0" height="100%" width="100%">
126 <tr><td>
127 <div id="dispSwitch">
128 <a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
129 </div>
130 </td></tr>
131 <tr><td height="100%" width="100%" valign="top">
f69ea84d
AD
132
133 <iframe frameborder="0"
134 src="backend.php?op=error&msg=Loading,%20please wait..."
135 id="feeds-frame" name="feeds-frame" class="feedsFrame"> </iframe>
caa4e57f 136
f69ea84d
AD
137 </td></tr></table>
138
1cd17194 139 </td>
f0601b87 140 <td valign="top" class="headlinesToolbarBox">
e828e31e 141 <table width="100%" cellpadding="0" cellspacing="0">
5238347d 142
ac43eba1 143 <tr><td class="headlinesToolbar" id="headlinesToolbar">
5238347d
AD
144
145 <? if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
146
147 <input id="searchbox"
b0005823 148 onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
52b51244
AD
149 <select id="searchmodebox">
150 <option>This feed</option>
b0005823
AD
151 <? if (get_pref($link, 'ENABLE_FEED_CATS')) { ?>
152 <option>This category</option>
153 <? } ?>
52b51244
AD
154 <option>All feeds</option>
155 </select>
156
ac43eba1 157 <input type="submit"
4ce19859 158 class="button" onclick="javascript:search()" value="Search">
f0601b87 159
5238347d
AD
160 &nbsp;
161
162 <? } ?>
163
164 View:
f0601b87
AD
165
166 <select id="viewbox" onchange="javascript:viewCurrentFeed(0, '')">
0ee2d12f 167 <option selected>Adaptive</option>
d6f55ce8 168 <option>All Articles</option>
f0601b87 169 <option>Starred</option>
0ee2d12f 170 <option>Unread</option>
f0601b87
AD
171 </select>
172
cb1083a1
AD
173 &nbsp;Limit:
174
175 <select id="limitbox" onchange="javascript:viewCurrentFeed(0, '')">
f1b9a8ee
AD
176
177 <?
178 $limits = array(15 => 15, 30 => 30, 60 => 60);
179
4062022e
AD
180 $def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
181
59b77643 182 if ($def_art_limit >= 0 && !array_key_exists($def_art_limit, $limits)) {
4062022e 183 $limits[$def_art_limit] = $def_art_limit;
f1b9a8ee 184 }
f1b9a8ee 185
59b77643 186 asort($limits);
f1b9a8ee
AD
187 array_push($limits, 0);
188
59b77643
AD
189 if (!$def_art_limit) {
190 $def_art_limit = 30;
191 }
192
f1b9a8ee
AD
193 foreach ($limits as $key) {
194 print "<option";
4062022e 195 if ($key == $def_art_limit) { print " selected"; }
f1b9a8ee
AD
196 print ">";
197
198 if ($limits[$key] == 0) { print "All"; } else { print $limits[$key]; }
199
200 print "</option>";
201 } ?>
4062022e 202
cb1083a1
AD
203 </select>
204
1572afe5
AD
205<!-- &nbsp;Selection:
206
207 <select id="headopbox">
208 <option id="hopToggleRead">Toggle (un)read</option>
209 </select>
210
211 <input class="button" type="submit" onclick="headopGo()" value="Go"> -->
212
ac43eba1
AD
213 &nbsp;Feed: <input class="button" type="submit"
214 onclick="javascript:viewCurrentFeed(0, 'ForceUpdate')" value="Update">
f0601b87 215
a7de14fc 216 <input class="button" type="submit" id="btnMarkFeedAsRead"
1572afe5 217 onclick="javascript:viewCurrentFeed(0, 'MarkAllRead')" value="Mark as read">
f0601b87 218
a14f82f2
AD
219 </td>
220 <td align="right">
c09ec856
AD
221 <select id="quickMenuChooser" onchange="quickMenuChange()">
222 <option id="qmcDefault" selected>Actions...</option>
223 <option id="qmcPrefs">Preferences</option>
224 <option id="qmcSearch">Search</option>
7a991cac
AD
225 <option disabled>--------</option>
226 <option style="color : #5050aa" disabled>Feed actions:</option>
c09ec856
AD
227 <option id="qmcAddFeed">&nbsp;&nbsp;Add new feed</option>
228 <option id="qmcRemoveFeed">&nbsp;&nbsp;Remove this feed</option>
e2f8f7b4 229 <!-- <option>Edit this feed</option> -->
7a991cac
AD
230 <option disabled>--------</option>
231 <option style="color : #5050aa" disabled>All feeds:</option>
085a5a74 232 <? if (!ENABLE_UPDATE_DAEMON) { ?>
cbe45fa8 233 <option id="qmcUpdateFeeds">&nbsp;&nbsp;Update</option>
085a5a74
AD
234 <? } ?>
235 <option id="qmcCatchupAll">&nbsp;&nbsp;Mark as read</option>
cbe45fa8 236 <option id="qmcShowOnlyUnread">&nbsp;&nbsp;Show only unread</option>
a24f525c
AD
237 <option disabled>--------</option>
238 <option style="color : #5050aa" disabled>Other actions:</option>
c09ec856 239 <option id="qmcAddFilter">&nbsp;&nbsp;Add filter</option>
e2f8f7b4 240 </select>
a14f82f2
AD
241 </td>
242 </tr>
f0601b87 243 </table>
386cbf27
AD
244 </td>
245</tr>
246<? if (get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
247<tr>
248 <td id="headlines" class="headlines2" valign="top">
249 <iframe frameborder="0" name="headlines-frame"
250 id="headlines-frame" class="headlinesFrame"
251 src="backend.php?op=error&msg=No%20feed%20selected."></iframe>
252 </td>
253</tr>
254<? } else { ?>
255<tr>
1cd17194 256 <td id="headlines" class="headlines" valign="top">
5bfef089 257 <iframe frameborder="0" name="headlines-frame"
e828e31e
AD
258 id="headlines-frame" class="headlinesFrame"
259 src="backend.php?op=error&msg=No%20feed%20selected."></iframe>
1cd17194 260 </td>
bb7cface 261</tr><tr>
1cd17194 262 <td class="content" id="content" valign="top">
5bfef089
AD
263 <iframe frameborder="0" name="content-frame"
264 id="content-frame" class="contentFrame"> </iframe>
1cd17194
AD
265 </td>
266</tr>
386cbf27 267<? } ?>
4062022e 268<? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
1cd17194 269<tr>
1de2b92c 270 <td colspan="2" class="footer" id="mainFooter">
36ae0574 271 <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005-2006 Andrew Dolgov
0b615681
AD
272 <? if (WEB_DEMO_MODE) { ?>
273 <br>Running in demo mode, some functionality is disabled.
274 <? } ?>
1cd17194
AD
275 </td>
276</td>
da5d0d09 277<? } ?>
1cd17194
AD
278</table>
279
ab49d368 280<? db_close($link); ?>
1cd17194 281
97dcd654
AD
282<script type="text/javascript">
283 /* for IE */
284 function statechange() {
285 if (document.readyState == "interactive") init();
286 }
287
288 if (document.readyState) {
289 if (document.readyState == "interactive" || document.readyState == "complete") {
290 init();
291 } else {
292 document.onreadystatechange = statechange;
293 }
294 }
295</script>
296
1cd17194
AD
297</body>
298</html>