]> git.wh0rd.org - tt-rss.git/blob - index.php
add redirect to digest on smartphones if mobile is missing
[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() && $pluginhost->get_plugin("mobile")) {
39 header('Location: backend.php?op=mobile');
40 exit;
41 } else if ($mobile->isMobile() && $pluginhost->get_plugin("digest")) {
42 header('Location: backend.php?op=digest');
43 exit;
44 }
45 }
46
47 login_sequence($link);
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
60 <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
61 <?php echo stylesheet_tag("tt-rss.css"); ?>
62 <?php echo stylesheet_tag("cdm.css"); ?>
63
64 <?php print_user_stylesheet($link) ?>
65
66 <style type="text/css">
67 <?php
68 foreach ($pluginhost->get_plugins() as $n => $p) {
69 if (method_exists($p, "get_css")) {
70 echo $p->get_css();
71 }
72 }
73 ?>
74 </style>
75
76 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
77 <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
78
79 <?php
80 foreach (array("lib/prototype.js",
81 "lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
82 "lib/dojo/dojo.js",
83 "lib/dijit/dijit.js",
84 "lib/dojo/tt-rss-layer.js",
85 "errors.php?mode=js") as $jsfile) {
86
87 echo javascript_tag($jsfile);
88
89 } ?>
90
91 <script type="text/javascript">
92 <?php
93 require 'lib/jshrink/Minifier.php';
94
95 global $pluginhost;
96
97 foreach ($pluginhost->get_plugins() as $n => $p) {
98 if (method_exists($p, "get_js")) {
99 echo JShrink\Minifier::minify($p->get_js());
100 }
101 }
102
103 print get_minified_js(array("tt-rss",
104 "functions", "feedlist", "viewfeed", "FeedTree"));
105
106 init_js_translations();
107 ?>
108 </script>
109
110 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
111
112 <script type="text/javascript">
113 Event.observe(window, 'load', function() {
114 init();
115 });
116 </script>
117 </head>
118
119 <body id="ttrssMain" class="claro">
120
121 <div id="overlay" style="display : block">
122 <div id="overlay_inner">
123 <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
124 <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
125 progress="0" maximum="100">
126 </div>
127 <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
128 </div>
129 </div>
130
131 <div style="display : none" onclick="Element.hide(this)" id="small_article_preview"></div>
132
133 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
134 <div id="cmdline" style="display : none"></div>
135 <div id="auxDlg" style="display : none"></div>
136 <div id="headlines-tmp" style="display : none"></div>
137
138 <div id="main" dojoType="dijit.layout.BorderContainer">
139
140 <div id="feeds-holder" dojoType="dijit.layout.ContentPane" region="leading" style="width : 20%" splitter="true">
141 <div id="feedlistLoading">
142 <img src='images/indicator_tiny.gif'/>
143 <?php echo __("Loading, please wait..."); ?></div>
144 <div id="feedTree"></div>
145 </div>
146
147 <div dojoType="dijit.layout.BorderContainer" region="center" id="header-wrap" gutters="false">
148 <div dojoType="dijit.layout.BorderContainer" region="center" id="content-wrap">
149
150 <div id="toolbar" dojoType="dijit.layout.ContentPane" region="top">
151 <div id="main-toolbar" dojoType="dijit.Toolbar">
152
153 <form id="main_toolbar_form" action="" onsubmit='return false'>
154
155 <button dojoType="dijit.form.Button" id="collapse_feeds_btn"
156 onclick="collapse_feedlist()"
157 title="<?php echo __('Collapse feedlist') ?>" style="display : inline">
158 &lt;&lt;</button>
159
160 <select name="view_mode" title="<?php echo __('Show articles') ?>"
161 onchange="viewModeChanged()"
162 dojoType="dijit.form.Select">
163 <option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
164 <option value="all_articles"><?php echo __('All Articles') ?></option>
165 <option value="marked"><?php echo __('Starred') ?></option>
166 <option value="published"><?php echo __('Published') ?></option>
167 <option value="unread"><?php echo __('Unread') ?></option>
168 <option value="unread_first"><?php echo __('Unread First') ?></option>
169 <!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
170 </select>
171
172 <select title="<?php echo __('Sort articles') ?>"
173 onchange="viewModeChanged()"
174 dojoType="dijit.form.Select" name="order_by">
175 <option selected="selected" value="default"><?php echo __('Default') ?></option>
176 <option value="date"><?php echo __('Date') ?></option>
177 <option value="title"><?php echo __('Title') ?></option>
178 <option value="score"><?php echo __('Score') ?></option>
179 </select>
180
181 <!-- deprecated -->
182 <button dojoType="dijit.form.Button" name="update" style="display : none"
183 onclick="viewCurrentFeed()">
184 <?php echo __('Update') ?></button>
185
186 <button dojoType="dijit.form.Button"
187 onclick="catchupCurrentFeed()">
188 <?php echo __('Mark as read') ?></button>
189
190 </form>
191
192 <div class="actionChooser">
193
194 <button id="net-alert" dojoType="dijit.form.Button" style="display : none" disabled="true"
195 title="<?php echo __("Communication problem with server.") ?>">
196 <img
197 src="images/alert.png" />
198 </button>
199
200 <button id="newVersionIcon" dojoType="dijit.form.Button" style="display : none">
201 <img onclick="newVersionDlg()"
202 src="images/new_version.png"
203 title="<?php echo __('New version of Tiny Tiny RSS is available!') ?>" />
204 </button>
205
206
207 <div dojoType="dijit.form.DropDownButton">
208 <span><?php echo __('Actions...') ?></span>
209 <div dojoType="dijit.Menu" style="display: none">
210 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcPrefs')"><?php echo __('Preferences...') ?></div>
211 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcSearch')"><?php echo __('Search...') ?></div>
212 <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Feed actions:') ?></div>
213 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFeed')"><?php echo __('Subscribe to feed...') ?></div>
214 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcEditFeed')"><?php echo __('Edit this feed...') ?></div>
215 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRescoreFeed')"><?php echo __('Rescore feed') ?></div>
216 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRemoveFeed')"><?php echo __('Unsubscribe') ?></div>
217 <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('All feeds:') ?></div>
218 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcCatchupAll')"><?php echo __('Mark as read') ?></div>
219 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcShowOnlyUnread')"><?php echo __('(Un)hide read feeds') ?></div>
220 <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Other actions:') ?></div>
221 <?php if ($pluginhost->get_plugin("digest")) { ?>
222 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcDigest')"><?php echo __('Switch to digest...') ?></div>
223 <?php } ?>
224 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcTagCloud')"><?php echo __('Show tag cloud...') ?></div>
225 <?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
226 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcToggleWidescreen')"><?php echo __('Toggle widescreen mode') ?></div>
227 <?php } ?>
228 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcTagSelect')"><?php echo __('Select by tags...') ?></div>
229 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddLabel')"><?php echo __('Create label...') ?></div>
230 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFilter')"><?php echo __('Create filter...') ?></div>
231 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcHKhelp')"><?php echo __('Keyboard shortcuts help') ?></div>
232 <?php if (!$_SESSION["hide_logout"]) { ?>
233 <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcLogout')"><?php echo __('Logout') ?></div>
234 <?php } ?>
235 </div>
236 </div>
237 </div>
238 </div> <!-- toolbar -->
239 </div> <!-- toolbar pane -->
240
241 <div id="headlines-wrap-inner" dojoType="dijit.layout.BorderContainer" region="center">
242
243 <div id="headlines-toolbar" dojoType="dijit.layout.ContentPane" region="top">
244 </div>
245
246 <div id="headlines-frame" dojoType="dijit.layout.ContentPane"
247 onscroll="headlines_scroll_handler(this)" region="center">
248 <div id="headlinesInnerContainer">
249 <div class="whiteBox"><?php echo __('Loading, please wait...') ?></div>
250 </div>
251 </div>
252
253 <?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
254 <div id="content-insert" dojoType="dijit.layout.ContentPane" region="bottom"
255 style="height : 50%" splitter="true"></div>
256 <?php } ?>
257
258 </div>
259 </div>
260 </div>
261 </div>
262
263 <?php db_close($link); ?>
264
265 </body>
266 </html>