]> git.wh0rd.org - tt-rss.git/blame - tt-rss.php
IE related workarounds in tt-rss-ie.css
[tt-rss.git] / tt-rss.php
CommitLineData
4062022e 1<?
0cc89acb 2 session_start();
66581886
AD
3
4 require_once "sanity_check.php";
4062022e
AD
5 require_once "version.php";
6 require_once "config.php";
7 require_once "db-prefs.php";
ff485f1d 8 require_once "functions.php";
da5d0d09 9
4062022e 10 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
c93f38c4 11
b8aa49bc 12 login_sequence($link);
ff485f1d 13
4062022e 14?>
1cd17194
AD
15<html>
16<head>
17 <title>Tiny Tiny RSS</title>
da5d0d09 18
430bf183
AD
19 <link rel="stylesheet" type="text/css" href="tt-rss.css">
20
503eb349
AD
21 <? $user_theme = $_SESSION["theme"];
22 if ($user_theme) { ?>
23 <link rel="stylesheet" type="text/css" href="themes/<?= $user_theme ?>/theme.css">
24 <? } ?>
25
386d7b5b
AD
26 <? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
27 <? if ($user_css_url) { ?>
28 <link type="text/css" href="<?= $user_css_url ?>"/>
29 <? } ?>
30
4062022e 31 <? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
da5d0d09 32
430bf183 33 <link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
da5d0d09
AD
34
35 <? } else { ?>
36
430bf183
AD
37 <link title="Compact Stylesheet" rel="alternate stylesheet"
38 type="text/css" href="tt-rss_compact.css"/>
da5d0d09
AD
39
40 <? } ?>
628eb1bd 41
331900c6 42 <script type="text/javascript" src="functions.js"></script>
1cd17194 43 <script type="text/javascript" src="tt-rss.js"></script>
d5224f0d
AD
44 <!--[if gte IE 5.5000]>
45 <script type="text/javascript" src="pngfix.js"></script>
46 <![endif]-->
d76a3b03 47 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
1cd17194
AD
48</head>
49
50<body onload="init()">
51
828a8ecc 52<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
4062022e 53<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
1cd17194 54<tr>
b8dc6247 55 <td colspan="2" class="headerBox">
828a8ecc 56 <table cellspacing="0" cellpadding="0" width="100%"><tr>
c93f38c4 57 <td rowspan="2" class="header" valign="middle">
828a8ecc
AD
58 <img src="images/ttrss_logo.png" alt="logo">
59 </td>
82e1fe00 60 <td valign="top" class="notifyBox">
036f45ab 61 <div id="notify"><span id="notify_body">&nbsp;</span></div>
828a8ecc 62 </td>
69919a24 63
76332f3c 64 <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
69919a24 65
c93f38c4 66 </tr><tr><td class="welcomePrompt">
7d4c898a 67 <? if (!SINGLE_USER_MODE) { ?>
9f78104c
AD
68 Hello, <b><?= $_SESSION["name"] ?></b>
69 (<a href="logout.php">Logout</a>)
8cb74804
AD
70 <? } ?>
71 </td>
828a8ecc 72 </tr></table>
2c1dd701
AD
73 </td>
74</tr>
69919a24 75<? } else { ?>
82e1fe00
AD
76<tr>
77 <td class="small">
78 <div id="notify"><span id="notify_body">&nbsp;</span></div>
79 <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
80 </td><td class="welcomePrompt">
81 <? if (!SINGLE_USER_MODE) { ?>
82 Hello, <b><?= $_SESSION["name"] ?></b>
83 (<a href="logout.php">Logout</a>)
84 <? } ?>
b8dc6247 85</td></tr>
da5d0d09 86<? } ?>
1cd17194 87<tr>
06300301
AD
88 <? if (get_pref($link, 'COMBINED_DISPLAY_MODE'))
89 $feeds_rowspan = 2;
90 else
91 $feeds_rowspan = 3; ?>
92 <td valign="top" rowspan="<?= $feeds_rowspan ?>" class="feeds">
28fa9253
AD
93 <table class="innerFeedTable"
94 cellspacing="0" cellpadding="0" height="100%" width="100%">
95 <tr><td>
96 <div id="dispSwitch">
97 <a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
98 </div>
99 </td></tr>
100 <tr><td height="100%" width="100%" valign="top">
caa4e57f 101
f69ea84d 102 <? if (get_pref($link, 'DISPLAY_FEEDLIST_ACTIONS')) { ?>
8143ae1f 103
5bfef089 104 <iframe frameborder="0"
6adbdbee 105 src="backend.php?op=error&msg=Loading,%20please wait..."
f69ea84d 106 id="feeds-frame" name="feeds-frame" class="feedsFrameWithActions"> </iframe>
7a991cac 107
3745788e 108 <div align="center">All feeds:
caa4e57f 109
3745788e
AD
110 <select id="allFeedsChooser">
111 <option>Update</option>
112 <option>Mark as read</option>
cbe45fa8 113 <option>Show only unread</option>
3745788e
AD
114 </select>
115
116 <input type="submit" class="button" onclick="allFeedsMenuGo()" value="Go">
27be66c3 117
3745788e 118 </div>
28fa9253 119
f69ea84d
AD
120 <? } else { ?>
121
122 <iframe frameborder="0"
123 src="backend.php?op=error&msg=Loading,%20please wait..."
124 id="feeds-frame" name="feeds-frame" class="feedsFrame"> </iframe>
caa4e57f 125
7a991cac
AD
126 <? } ?>
127
f69ea84d
AD
128 </td></tr></table>
129
1cd17194 130 </td>
f0601b87 131 <td valign="top" class="headlinesToolbarBox">
e828e31e 132 <table width="100%" cellpadding="0" cellspacing="0">
5238347d 133
ac43eba1 134 <tr><td class="headlinesToolbar" id="headlinesToolbar">
5238347d
AD
135
136 <? if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
137
138 <input id="searchbox"
f0601b87
AD
139 onblur="javascript:enableHotkeys()" onfocus="javascript:disableHotkeys()"
140 onchange="javascript:search()">
52b51244
AD
141 <select id="searchmodebox">
142 <option>This feed</option>
143 <option>All feeds</option>
144 </select>
145
ac43eba1 146 <input type="submit"
4ce19859 147 class="button" onclick="javascript:search()" value="Search">
f0601b87 148
5238347d
AD
149 &nbsp;
150
151 <? } ?>
152
153 View:
f0601b87
AD
154
155 <select id="viewbox" onchange="javascript:viewCurrentFeed(0, '')">
0ee2d12f 156 <option selected>Adaptive</option>
d6f55ce8 157 <option>All Articles</option>
f0601b87 158 <option>Starred</option>
0ee2d12f 159 <option>Unread</option>
f0601b87
AD
160 </select>
161
cb1083a1
AD
162 &nbsp;Limit:
163
164 <select id="limitbox" onchange="javascript:viewCurrentFeed(0, '')">
f1b9a8ee
AD
165
166 <?
167 $limits = array(15 => 15, 30 => 30, 60 => 60);
168
4062022e
AD
169 $def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
170
171 print $def_art_limit;
172
173 if ($def_art_limit >= 0) {
174 $limits[$def_art_limit] = $def_art_limit;
f1b9a8ee
AD
175 }
176
177 asort($limits);
178
179 array_push($limits, 0);
180
181 foreach ($limits as $key) {
182 print "<option";
4062022e 183 if ($key == $def_art_limit) { print " selected"; }
f1b9a8ee
AD
184 print ">";
185
186 if ($limits[$key] == 0) { print "All"; } else { print $limits[$key]; }
187
188 print "</option>";
189 } ?>
4062022e 190
cb1083a1
AD
191 </select>
192
1572afe5
AD
193<!-- &nbsp;Selection:
194
195 <select id="headopbox">
196 <option id="hopToggleRead">Toggle (un)read</option>
197 </select>
198
199 <input class="button" type="submit" onclick="headopGo()" value="Go"> -->
200
ac43eba1
AD
201 &nbsp;Feed: <input class="button" type="submit"
202 onclick="javascript:viewCurrentFeed(0, 'ForceUpdate')" value="Update">
f0601b87 203
a7de14fc 204 <input class="button" type="submit" id="btnMarkFeedAsRead"
1572afe5 205 onclick="javascript:viewCurrentFeed(0, 'MarkAllRead')" value="Mark as read">
f0601b87 206
a14f82f2
AD
207 </td>
208 <td align="right">
6de5d056 209 Actions: <select id="quickMenuChooser">
cbe45fa8 210 <option id="qmcPrefs" selected>Preferences...</option>
7a991cac
AD
211 <option disabled>--------</option>
212 <option style="color : #5050aa" disabled>Feed actions:</option>
a24f525c
AD
213 <option id="qmcAddFeed">&nbsp;&nbsp;Add new feed...</option>
214 <option id="qmcRemoveFeed">&nbsp;&nbsp;Remove this feed...</option>
e2f8f7b4 215 <!-- <option>Edit this feed</option> -->
7a991cac
AD
216 <option disabled>--------</option>
217 <option style="color : #5050aa" disabled>All feeds:</option>
cbe45fa8
AD
218 <option id="qmcUpdateFeeds">&nbsp;&nbsp;Update</option>
219 <option id="qmcCatchupAll">&nbsp;&nbsp;Mark as read</option>
220 <option id="qmcShowOnlyUnread">&nbsp;&nbsp;Show only unread</option>
a24f525c
AD
221 <option disabled>--------</option>
222 <option style="color : #5050aa" disabled>Other actions:</option>
223 <option id="qmcAddFilter">&nbsp;&nbsp;Add filter...</option>
e2f8f7b4
AD
224 </select>
225 <input type="submit" class="button" onclick="quickMenuGo()" value="Go">
a14f82f2
AD
226 </td>
227 </tr>
f0601b87 228 </table>
386cbf27
AD
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"
236 src="backend.php?op=error&msg=No%20feed%20selected."></iframe>
237 </td>
238</tr>
239<? } else { ?>
240<tr>
1cd17194 241 <td id="headlines" class="headlines" valign="top">
5bfef089 242 <iframe frameborder="0" name="headlines-frame"
e828e31e
AD
243 id="headlines-frame" class="headlinesFrame"
244 src="backend.php?op=error&msg=No%20feed%20selected."></iframe>
1cd17194 245 </td>
bb7cface 246</tr><tr>
1cd17194 247 <td class="content" id="content" valign="top">
5bfef089
AD
248 <iframe frameborder="0" name="content-frame"
249 id="content-frame" class="contentFrame"> </iframe>
1cd17194
AD
250 </td>
251</tr>
386cbf27 252<? } ?>
4062022e 253<? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
1cd17194 254<tr>
e828e31e 255 <td colspan="2" class="footer">
7325509d 256 <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
0b615681
AD
257 <? if (WEB_DEMO_MODE) { ?>
258 <br>Running in demo mode, some functionality is disabled.
259 <? } ?>
1cd17194
AD
260 </td>
261</td>
da5d0d09 262<? } ?>
1cd17194
AD
263</table>
264
ab49d368 265<? db_close($link); ?>
1cd17194
AD
266
267</body>
268</html>