]> git.wh0rd.org - tt-rss.git/blob - index.php
if plugin method get_css(), embed plugin-specific css to main UI
[tt-rss.git] / index.php
1 <?php
2 if (!file_exists("config.php")) {
3 print "<b>Fatal Error</b>: You forgot to copy
4 <b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
5 exit;
6 }
7
8 // we need a separate check here because functions.php might get parsed
9 // incorrectly before 5.3 because of :: syntax.
10 if (version_compare(PHP_VERSION, '5.3.0', '<')) {
11 print "<b>Fatal Error</b>: PHP version 5.3.0 or newer required.\n";
12 exit;
13 }
14
15 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
16 get_include_path());
17
18 require_once "sessions.php";
19 require_once "functions.php";
20 require_once "sanity_check.php";
21 require_once "version.php";
22 require_once "config.php";
23 require_once "db-prefs.php";
24 require_once "lib/Mobile_Detect.php";
25
26 $mobile = new Mobile_Detect();
27
28 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
29
30 if (!init_connection($link)) return;
31
32 global $pluginhost;
33
34 if (!$_REQUEST['mobile']) {
35 if ($mobile->isTablet() && $pluginhost->get_plugin("digest")) {
36 header('Location: backend.php?op=digest');
37 exit;
38 } else if ($mobile->isMobile()) {
39 header('Location: mobile/index.php');
40 exit;
41 }
42 }
43
44
45 login_sequence($link);
46
47 $dt_add = time();
48
49 no_cache_incantation();
50
51 header('Content-Type: text/html; charset=utf-8');
52
53 ?>
54 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
55 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
56 <html>
57 <head>
58 <title>Tiny Tiny RSS</title>
59 <link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
60 <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
61 <link rel="stylesheet" type="text/css" href="cdm.css?<?php echo $dt_add ?>"/>
62
63 <?php print_user_stylesheet($link) ?>
64
65 <style type="text/css">
66 <?php
67 foreach ($pluginhost->get_plugins() as $n => $p) {
68 if (method_exists($p, "get_css")) {
69 echo $p->get_css();
70 }
71 }
72 ?>
73 </style>
74
75 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
76
77 <script type="text/javascript" src="lib/prototype.js"></script>
78 <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
79 <script type="text/javascript" src="lib/dojo/dojo.js"></script>
80 <script type="text/javascript" src="lib/dijit/dijit.js"></script>
81 <script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
82
83 <script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
84 <script type="text/javascript" charset="utf-8" src="errors.php?mode=js"></script>
85
86 <script type="text/javascript">
87 <?php
88 require 'lib/jsmin.php';
89
90 global $pluginhost;
91
92 foreach ($pluginhost->get_plugins() as $n => $p) {
93 if (method_exists($p, "get_js")) {
94 echo JSMin::minify($p->get_js());
95 }
96 }
97
98 foreach (array("tt-rss", "functions", "feedlist", "viewfeed", "FeedTree") as $js) {
99 if (!isset($_GET['debug'])) {
100 echo JSMin::minify(file_get_contents("js/$js.js"));
101 } else {
102 echo file_get_contents("js/$js.js");
103 }
104 }
105 ?>
106 </script>
107
108 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
109
110 <script type="text/javascript">
111 Event.observe(window, 'load', function() {
112 init();
113 });
114 </script>
115 </head>
116
117 <body id="ttrssMain" class="claro">
118
119 <div id="overlay" style="display : block">
120 <div id="overlay_inner">
121 <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
122 <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
123 progress="0" maximum="100">
124 </div>
125 <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
126 </div>
127 </div>
128
129 <div id="header">
130 <img id="net-alert" style="display : none"
131 title="<?php echo __("Communication problem with server.") ?>"
132 src="<?php echo theme_image($link, 'images/alert.png') ?>"/>
133
134 <img id="newVersionIcon" style="display:none" onclick="newVersionDlg()"
135 width="13" height="13"
136 src="<?php echo theme_image($link, 'images/new_version.png') ?>"
137 title="<?php echo __('New version of Tiny Tiny RSS is available!') ?>"
138 alt="new_version_icon"/>
139 </div>
140
141 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
142 <div id="cmdline" style="display : none"></div>
143 <div id="auxDlg" style="display : none"></div>
144 <div id="headlines-tmp" style="display : none"></div>
145
146 <div id="main" dojoType="dijit.layout.BorderContainer">
147
148 <div id="feeds-holder" dojoType="dijit.layout.ContentPane" region="leading" style="width : 20%" splitter="true">
149 <div id="feedlistLoading">
150 <img src='images/indicator_tiny.gif'/>
151 <?php echo __("Loading, please wait..."); ?></div>
152 <div id="feedTree"></div>
153 </div>
154
155 <div dojoType="dijit.layout.BorderContainer" region="center" id="header-wrap" gutters="false">
156 <div dojoType="dijit.layout.BorderContainer" region="center" id="content-wrap">
157
158 <div id="toolbar" dojoType="dijit.layout.ContentPane" region="top">
159 <div id="main-toolbar" dojoType="dijit.Toolbar">
160
161 <form id="main_toolbar_form" action="" onsubmit='return false'>
162
163 <button dojoType="dijit.form.Button" id="collapse_feeds_btn"
164 onclick="collapse_feedlist()"
165 title="<?php echo __('Collapse feedlist') ?>" style="display : inline">
166 &lt;&lt;</button>
167
168 <select name="view_mode" title="<?php echo __('Show articles') ?>"
169 onchange="viewModeChanged()"
170 dojoType="dijit.form.Select">
171 <option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
172 <option value="all_articles"><?php echo __('All Articles') ?></option>
173 <option value="marked"><?php echo __('Starred') ?></option>
174 <option value="published"><?php echo __('Published') ?></option>
175 <option value="unread"><?php echo __('Unread') ?></option>
176 <!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
177 <option value="updated"><?php echo __('Updated') ?></option>
178 </select>
179
180 <select title="<?php echo __('Sort articles') ?>"
181 onchange="viewModeChanged()"
182 dojoType="dijit.form.Select" name="order_by">
183 <option selected="selected" value="default"><?php echo __('Default') ?></option>
184 <option value="date"><?php echo __('Date') ?></option>
185 <option value="title"><?php echo __('Title') ?></option>
186 <option value="score"><?php echo __('Score') ?></option>
187 </select>
188
189 <button dojoType="dijit.form.Button" name="update"
190 onclick="viewCurrentFeed()">
191 <?php echo __('Update') ?></button>
192
193 <button dojoType="dijit.form.Button"
194 onclick="catchupCurrentFeed()">
195 <?php echo __('Mark as read') ?></button>
196
197 </form>
198
199 <div class="actionChooser">
200
201 <button id="net-alert" dojoType="dijit.form.Button" style="display : none" disabled="true"
202 title="<?php echo __("Communication problem with server.") ?>">
203 <img
204 src="<?php echo theme_image($link, 'images/alert.png') ?>" />
205 </button>
206
207 <button id="newVersionIcon" dojoType="dijit.form.Button" style="display : none">
208 <img onclick="newVersionDlg()"
209 src="<?php echo theme_image($link, 'images/new_version.png') ?>"
210 title="<?php echo __('New version of Tiny Tiny RSS is available!') ?>" />
211 </button>
212
213
214 <div dojoType="dijit.form.DropDownButton">
215 <span><?php echo __('Actions...') ?></span>
216 <div dojoType="dijit.Menu" style="display: none">
217 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcPrefs')"><?php echo __('Preferences...') ?></div>
218 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcSearch')"><?php echo __('Search...') ?></div>
219 <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Feed actions:') ?></div>
220 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFeed')"><?php echo __('Subscribe to feed...') ?></div>
221 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcEditFeed')"><?php echo __('Edit this feed...') ?></div>
222 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRescoreFeed')"><?php echo __('Rescore feed') ?></div>
223 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRemoveFeed')"><?php echo __('Unsubscribe') ?></div>
224 <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('All feeds:') ?></div>
225 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcCatchupAll')"><?php echo __('Mark as read') ?></div>
226 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcShowOnlyUnread')"><?php echo __('(Un)hide read feeds') ?></div>
227 <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Other actions:') ?></div>
228 <?php if ($pluginhost->get_plugin("digest")) { ?>
229 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcDigest')"><?php echo __('Switch to digest...') ?></div>
230 <?php } ?>
231 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcTagCloud')"><?php echo __('Show tag cloud...') ?></div>
232 <?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
233 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcToggleWidescreen')"><?php echo __('Toggle widescreen mode') ?></div>
234 <?php } ?>
235 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcTagSelect')"><?php echo __('Select by tags...') ?></div>
236 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddLabel')"><?php echo __('Create label...') ?></div>
237 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFilter')"><?php echo __('Create filter...') ?></div>
238 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcHKhelp')"><?php echo __('Keyboard shortcuts help') ?></div>
239 <?php if (!$_SESSION["hide_logout"]) { ?>
240 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcLogout')"><?php echo __('Logout') ?></div>
241 <?php } ?>
242 </div>
243 </div>
244 </div>
245 </div> <!-- toolbar -->
246 </div> <!-- toolbar pane -->
247
248 <div id="headlines-wrap-inner" dojoType="dijit.layout.BorderContainer" region="center">
249
250 <div id="headlines-toolbar" dojoType="dijit.layout.ContentPane" region="top">
251 </div>
252
253 <div id="headlines-frame" dojoType="dijit.layout.ContentPane"
254 onscroll="headlines_scroll_handler(this)" region="center">
255 <div id="headlinesInnerContainer">
256 <div class="whiteBox"><?php echo __('Loading, please wait...') ?></div>
257 </div>
258 </div>
259
260 <?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
261 <div id="content-insert" dojoType="dijit.layout.ContentPane" region="bottom"
262 style="height : 50%" splitter="true"></div>
263 <?php } ?>
264
265 </div>
266 </div>
267 </div>
268 </div>
269
270 <?php db_close($link); ?>
271
272 </body>
273 </html>