2011-12-11 19:59:25 +00:00
|
|
|
<?php
|
2021-02-22 18:47:48 +00:00
|
|
|
|
2013-03-14 15:16:01 +00:00
|
|
|
// we need a separate check here because functions.php might get parsed
|
|
|
|
// incorrectly before 5.3 because of :: syntax.
|
2022-07-29 03:34:20 +00:00
|
|
|
if (version_compare(PHP_VERSION, '7.4.0', '<')) {
|
|
|
|
print "<b>Fatal Error</b>: PHP version 7.4.0 or newer required. You're using " . PHP_VERSION . ".\n";
|
2013-03-14 15:16:01 +00:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2021-02-22 14:38:46 +00:00
|
|
|
set_include_path(__DIR__ ."/include" . PATH_SEPARATOR .
|
2012-12-09 09:41:22 +00:00
|
|
|
get_include_path());
|
2011-12-11 19:59:25 +00:00
|
|
|
|
2013-04-17 11:36:34 +00:00
|
|
|
require_once "autoload.php";
|
2011-12-11 19:59:25 +00:00
|
|
|
require_once "sessions.php";
|
2013-01-04 21:28:07 +00:00
|
|
|
require_once "functions.php";
|
2021-03-01 07:20:21 +00:00
|
|
|
|
|
|
|
Config::sanity_check();
|
2012-06-28 19:14:08 +00:00
|
|
|
|
2013-04-17 12:23:15 +00:00
|
|
|
if (!init_plugins()) return;
|
2012-12-24 06:16:01 +00:00
|
|
|
|
2020-09-22 06:04:33 +00:00
|
|
|
UserHelper::login_sequence();
|
2011-12-11 19:59:25 +00:00
|
|
|
|
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
|
|
?>
|
2019-02-23 10:49:40 +00:00
|
|
|
<!DOCTYPE html>
|
2011-12-11 19:59:25 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2013-03-23 05:51:30 +00:00
|
|
|
<title>Tiny Tiny RSS</title>
|
2017-09-02 21:15:19 +00:00
|
|
|
<meta name="viewport" content="initial-scale=1,width=device-width" />
|
2013-03-20 16:33:46 +00:00
|
|
|
|
2021-02-11 18:19:57 +00:00
|
|
|
<?php if ($_SESSION["uid"] && empty($_SESSION["safe_mode"])) {
|
2021-02-25 11:49:58 +00:00
|
|
|
$theme = get_pref(Prefs::USER_CSS_THEME);
|
2018-12-09 08:37:26 +00:00
|
|
|
if ($theme && theme_exists("$theme")) {
|
2021-03-08 14:39:24 +00:00
|
|
|
echo stylesheet_tag(get_theme_path($theme), ['id' => 'theme_css']);
|
2013-03-28 17:04:29 +00:00
|
|
|
}
|
2020-11-30 12:53:32 +00:00
|
|
|
} ?>
|
|
|
|
|
2021-03-11 04:44:58 +00:00
|
|
|
<?= Config::get_override_links() ?>
|
2013-03-28 17:04:29 +00:00
|
|
|
|
2020-09-14 17:00:01 +00:00
|
|
|
<script type="text/javascript">
|
2021-02-14 06:15:51 +00:00
|
|
|
const __csrf_token = "<?= $_SESSION["csrf_token"]; ?>";
|
2020-09-14 17:00:01 +00:00
|
|
|
</script>
|
|
|
|
|
2020-09-22 06:04:33 +00:00
|
|
|
<?php UserHelper::print_user_stylesheet() ?>
|
2011-12-11 19:59:25 +00:00
|
|
|
|
2013-03-18 05:30:06 +00:00
|
|
|
<style type="text/css">
|
|
|
|
<?php
|
2013-04-18 08:27:34 +00:00
|
|
|
foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
|
2013-03-18 05:30:06 +00:00
|
|
|
if (method_exists($p, "get_css")) {
|
|
|
|
echo $p->get_css();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</style>
|
2011-12-20 19:57:27 +00:00
|
|
|
|
2011-12-11 19:59:25 +00:00
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
|
2013-03-21 15:09:13 +00:00
|
|
|
<link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
|
2011-12-11 19:59:25 +00:00
|
|
|
|
2016-08-10 07:01:05 +00:00
|
|
|
<script>
|
|
|
|
dojoConfig = {
|
|
|
|
async: true,
|
2021-02-14 06:15:51 +00:00
|
|
|
cacheBust: "<?= get_scripts_timestamp(); ?>",
|
2016-08-10 07:01:05 +00:00
|
|
|
packages: [
|
|
|
|
{ name: "fox", location: "../../js" },
|
|
|
|
]
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2013-03-20 16:33:46 +00:00
|
|
|
<?php
|
2021-02-23 19:26:07 +00:00
|
|
|
foreach (["lib/dojo/dojo.js",
|
2013-03-20 16:33:46 +00:00
|
|
|
"lib/dojo/tt-rss-layer.js",
|
2018-12-02 15:38:27 +00:00
|
|
|
"js/tt-rss.js",
|
2021-02-23 19:26:07 +00:00
|
|
|
"js/common.js"] as $jsfile) {
|
2013-03-20 16:33:46 +00:00
|
|
|
|
2014-01-27 21:39:24 +00:00
|
|
|
echo javascript_tag($jsfile);
|
2011-12-11 19:59:25 +00:00
|
|
|
|
2013-03-20 16:33:46 +00:00
|
|
|
} ?>
|
2011-12-11 19:59:25 +00:00
|
|
|
|
2011-12-21 08:15:03 +00:00
|
|
|
<script type="text/javascript">
|
2013-05-14 17:27:23 +00:00
|
|
|
require({cache:{}});
|
2018-03-08 15:41:03 +00:00
|
|
|
</script>
|
2018-12-02 15:38:27 +00:00
|
|
|
|
2018-03-08 15:41:03 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
<?php
|
2013-04-18 08:27:34 +00:00
|
|
|
foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
|
2012-12-23 10:52:18 +00:00
|
|
|
if (method_exists($p, "get_js")) {
|
2018-12-13 17:13:30 +00:00
|
|
|
$script = $p->get_js();
|
|
|
|
|
|
|
|
if ($script) {
|
|
|
|
echo "try {
|
|
|
|
$script
|
|
|
|
} catch (e) {
|
|
|
|
console.warn('failed to initialize plugin JS: $n', e);
|
|
|
|
}";
|
|
|
|
}
|
2011-12-21 08:15:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</script>
|
|
|
|
|
2019-12-15 08:57:26 +00:00
|
|
|
<style type="text/css">
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
|
|
|
background : #303030;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body.css_loading * {
|
|
|
|
display : none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2021-04-09 10:45:25 +00:00
|
|
|
<noscript>
|
|
|
|
<?= stylesheet_tag("themes/light.css") ?>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
body.css_loading noscript {
|
|
|
|
display : block;
|
|
|
|
margin : 16px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</noscript>
|
|
|
|
|
2011-12-11 19:59:25 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
2016-06-03 09:08:03 +00:00
|
|
|
<meta name="referrer" content="no-referrer"/>
|
2011-12-11 19:59:25 +00:00
|
|
|
</head>
|
|
|
|
|
2019-12-15 08:57:26 +00:00
|
|
|
<body class="flat ttrss_main ttrss_index css_loading">
|
2011-12-11 19:59:25 +00:00
|
|
|
|
2021-04-09 10:45:25 +00:00
|
|
|
<noscript class="alert alert-error"><?= ('Javascript is disabled. Please enable it.') ?></noscript>
|
|
|
|
|
|
|
|
<div id="overlay">
|
2011-12-11 19:59:25 +00:00
|
|
|
<div id="overlay_inner">
|
2021-02-14 06:15:51 +00:00
|
|
|
<?= __("Loading, please wait...") ?>
|
2011-12-11 19:59:25 +00:00
|
|
|
<div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
|
|
|
|
progress="0" maximum="100">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2014-11-02 17:58:46 +00:00
|
|
|
<div id="notify" class="notify"></div>
|
2011-12-11 19:59:25 +00:00
|
|
|
<div id="cmdline" style="display : none"></div>
|
|
|
|
|
|
|
|
<div id="main" dojoType="dijit.layout.BorderContainer">
|
2018-12-05 07:33:30 +00:00
|
|
|
<div id="feeds-holder" dojoType="dijit.layout.ContentPane" region="leading" style="width : 20%" splitter="true">
|
2021-03-16 19:09:01 +00:00
|
|
|
<div id="feedlistLoading" class="text-center text-muted text-small">
|
|
|
|
<img class="icon-three-dots" src="images/three-dots.svg?2">
|
|
|
|
<?= __("Loading, please wait..."); ?>
|
|
|
|
</div>
|
2019-10-07 13:43:24 +00:00
|
|
|
<?php
|
2021-02-08 13:14:48 +00:00
|
|
|
PluginHost::getInstance()->run_hooks_callback(PluginHost::HOOK_FEED_TREE, function ($result) {
|
|
|
|
echo $result;
|
|
|
|
});
|
2019-10-07 13:43:24 +00:00
|
|
|
?>
|
2018-12-05 07:33:30 +00:00
|
|
|
<div id="feedTree"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div dojoType="dijit.layout.BorderContainer" region="center" id="content-wrap">
|
|
|
|
<div id="toolbar-frame" dojoType="dijit.layout.ContentPane" region="top">
|
2019-04-07 10:21:52 +00:00
|
|
|
<div id="toolbar" dojoType="fox.Toolbar">
|
2018-12-05 07:33:30 +00:00
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<!-- order 0, default -->
|
|
|
|
|
|
|
|
<?php
|
|
|
|
PluginHost::getInstance()->run_hooks_callback(PluginHost::HOOK_MAIN_TOOLBAR_BUTTON, function ($result) {
|
|
|
|
echo $result;
|
|
|
|
});
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!-- order 5: alert icons -->
|
|
|
|
|
|
|
|
<i class="material-icons net-alert" style="display : none; order : 5"
|
2021-02-14 06:15:51 +00:00
|
|
|
title="<?= __("Communication problem with server.") ?>">error_outline</i>
|
2018-12-06 09:30:11 +00:00
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<i class="material-icons log-alert" style="display : none; order : 5" onclick="App.openPreferences('system')"
|
2021-02-14 06:15:51 +00:00
|
|
|
title="<?= __("Recent entries found in event log.") ?>">warning</i>
|
2018-12-10 08:54:19 +00:00
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<i id="updates-available" class="material-icons icon-new-version" style="display : none; order: 5"
|
2021-02-14 06:15:51 +00:00
|
|
|
title="<?= __('Updates are available from Git.') ?>">new_releases</i>
|
2018-12-10 07:53:11 +00:00
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<!-- order 10: headlines toolbar -->
|
2021-02-08 13:14:48 +00:00
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<div id="toolbar-headlines" dojoType="fox.Toolbar" style="order : 10"> </div>
|
2018-12-05 07:33:30 +00:00
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<!-- order 20: main toolbar contents (dropdowns) -->
|
2018-12-05 07:33:30 +00:00
|
|
|
|
2021-03-08 07:43:49 +00:00
|
|
|
<form id="toolbar-main" dojoType="dijit.form.Form" action="" style="order : 20" onsubmit="return false">
|
2018-12-05 07:33:30 +00:00
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<select name="view_mode" title="<?= __('Show articles') ?>"
|
|
|
|
onchange="Feeds.onViewModeChanged()"
|
|
|
|
dojoType="fox.form.Select">
|
|
|
|
<option selected="selected" value="adaptive"><?= __('Adaptive') ?></option>
|
|
|
|
<option value="all_articles"><?= __('All Articles') ?></option>
|
|
|
|
<option value="marked"><?= __('Starred') ?></option>
|
|
|
|
<option value="published"><?= __('Published') ?></option>
|
|
|
|
<option value="unread"><?= __('Unread') ?></option>
|
|
|
|
<option value="has_note"><?= __('With Note') ?></option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select title="<?= __('Sort articles') ?>"
|
|
|
|
onchange="Feeds.onViewModeChanged()"
|
|
|
|
dojoType="fox.form.Select" name="order_by">
|
|
|
|
|
|
|
|
<option selected="selected" value="default"><?= __('Default') ?></option>
|
|
|
|
<option value="feed_dates"><?= __('Newest first') ?></option>
|
|
|
|
<option value="date_reverse"><?= __('Oldest first') ?></option>
|
|
|
|
<option value="title"><?= __('Title') ?></option>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
PluginHost::getInstance()->run_hooks_callback(PluginHost::HOOK_HEADLINES_CUSTOM_SORT_MAP, function ($result) {
|
|
|
|
foreach ($result as $sort_value => $sort_title) {
|
|
|
|
print "<option value=\"" . htmlspecialchars($sort_value) . "\">$sort_title</option>";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
2021-12-14 18:53:45 +00:00
|
|
|
<select class="catchup-button" id="main-catchup-dropdown" dojoType="fox.form.Select"
|
|
|
|
data-prevent-value-change="true">
|
|
|
|
<option value=""><?= __('Mark as read') ?></option>
|
|
|
|
<option value="1day"><?= __('Older than one day') ?></option>
|
|
|
|
<option value="1week"><?= __('Older than one week') ?></option>
|
|
|
|
<option value="2week"><?= __('Older than two weeks') ?></option>
|
|
|
|
</select>
|
2018-12-05 07:33:30 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<!-- toolbar actions dropdown: order 30 -->
|
|
|
|
|
2019-07-15 10:43:32 +00:00
|
|
|
<div class="action-chooser" style="order : 30">
|
2018-12-05 07:33:30 +00:00
|
|
|
|
|
|
|
<?php
|
2021-02-08 13:14:48 +00:00
|
|
|
PluginHost::getInstance()->run_hooks_callback(PluginHost::HOOK_TOOLBAR_BUTTON, function ($result) {
|
|
|
|
echo $result;
|
|
|
|
});
|
2018-12-05 07:33:30 +00:00
|
|
|
?>
|
|
|
|
|
2021-06-28 09:16:55 +00:00
|
|
|
<div dojoType="fox.form.DropDownButton" class="action-button" title="<?= __('Actions...') ?>">
|
2019-03-06 06:20:06 +00:00
|
|
|
<span><i class="material-icons">menu</i></span>
|
2018-12-05 07:33:30 +00:00
|
|
|
<div dojoType="dijit.Menu" style="display: none">
|
2022-02-24 18:07:53 +00:00
|
|
|
<script type='dojo/method' event='onOpen' args='evt,a,b,c'>
|
2022-02-25 15:45:00 +00:00
|
|
|
const widescreen = this.getChildren().find((m) => m.id == 'qmcToggleWidescreen');
|
|
|
|
const expanded = this.getChildren().find((m) => m.id == 'qmcToggleExpanded');
|
|
|
|
const combined = this.getChildren().find((m) => m.id == 'qmcToggleCombined');
|
|
|
|
|
|
|
|
if (combined)
|
|
|
|
combined.attr('label',
|
|
|
|
App.isCombinedMode() ? __('Switch to three panel view') : __('Switch to combined view'));
|
|
|
|
|
|
|
|
if (widescreen)
|
|
|
|
widescreen
|
|
|
|
.attr('hidden', !!App.isCombinedMode())
|
|
|
|
.attr('label',
|
|
|
|
App.isWideScreenMode() ? __('Disable widescreen mode') : __('Enable widescreen mode'));
|
|
|
|
|
|
|
|
if (expanded)
|
|
|
|
expanded
|
|
|
|
.attr('hidden', !App.isCombinedMode())
|
|
|
|
.attr('label',
|
|
|
|
App.isExpandedMode() ? __('Expand selected article only') : __('Expand all articles'));
|
2022-02-24 18:07:53 +00:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2021-02-14 06:15:51 +00:00
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcPrefs')"><?= __('Preferences...') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcSearch')"><?= __('Search...') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" disabled="1"><?= __('Feed actions:') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcAddFeed')"><?= __('Subscribe to feed...') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcEditFeed')"><?= __('Edit this feed...') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcRemoveFeed')"><?= __('Unsubscribe') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" disabled="1"><?= __('All feeds:') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcCatchupAll')"><?= __('Mark as read') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcShowOnlyUnread')"><?= __('(Un)hide read feeds') ?></div>
|
2022-02-25 15:45:00 +00:00
|
|
|
<div dojoType="dijit.MenuItem" disabled="1"><?= __('UI layout:') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" id="qmcToggleCombined" onclick="App.onActionSelected('qmcToggleCombined')"><?= __('Toggle combined mode') ?></div>
|
2022-02-24 18:07:53 +00:00
|
|
|
<div dojoType="dijit.MenuItem" id="qmcToggleWidescreen" onclick="App.onActionSelected('qmcToggleWidescreen')">
|
|
|
|
<?= __('Toggle widescreen mode') ?></div>
|
2022-02-25 15:45:00 +00:00
|
|
|
<div dojoType="dijit.MenuItem" id="qmcToggleExpanded" onclick="App.onActionSelected('qmcToggleExpanded')">
|
|
|
|
<?= __('Toggle expand all articles') ?></div>
|
|
|
|
<div dojoType="dijit.MenuItem" disabled="1"><?= __('Other actions:') ?></div>
|
2021-02-14 06:15:51 +00:00
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcHKhelp')"><?= __('Keyboard shortcuts help') ?></div>
|
2018-12-05 07:33:30 +00:00
|
|
|
|
|
|
|
<?php
|
2021-02-08 13:14:48 +00:00
|
|
|
PluginHost::getInstance()->run_hooks_callback(PluginHost::HOOK_ACTION_ITEM, function ($result) {
|
|
|
|
echo $result;
|
|
|
|
});
|
2018-12-05 07:33:30 +00:00
|
|
|
?>
|
|
|
|
|
2021-02-05 20:41:32 +00:00
|
|
|
<?php if (empty($_SESSION["hide_logout"])) { ?>
|
2021-02-14 06:15:51 +00:00
|
|
|
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcLogout')"><?= __('Logout') ?></div>
|
2018-12-05 07:33:30 +00:00
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div> <!-- toolbar -->
|
|
|
|
</div> <!-- toolbar pane -->
|
|
|
|
<div id="headlines-wrap-inner" dojoType="dijit.layout.BorderContainer" region="center">
|
|
|
|
<div id="headlines-frame" dojoType="dijit.layout.ContentPane" tabindex="0"
|
|
|
|
region="center">
|
|
|
|
<div id="headlinesInnerContainer">
|
2021-02-14 06:15:51 +00:00
|
|
|
<div class="whiteBox"><?= __('Loading, please wait...') ?></div>
|
2018-12-05 07:33:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="content-insert" dojoType="dijit.layout.ContentPane" region="bottom"
|
|
|
|
style="height : 50%" splitter="true"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2011-12-11 19:59:25 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|