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