1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00
ttrss/tt-rss.php

232 lines
8.0 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
require_once "functions.php";
2007-03-02 12:05:17 +01:00
require_once "sessions.php";
require_once "sanity_check.php";
2005-11-16 18:09:27 +01:00
require_once "version.php";
require_once "config.php";
require_once "db-prefs.php";
2005-11-16 18:09:27 +01:00
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
2005-11-17 19:29:13 +01:00
init_connection($link);
login_sequence($link);
2005-11-18 06:17:17 +01:00
2010-11-08 09:42:05 +01:00
$dt_add = time();
2006-03-30 08:43:35 +02:00
2007-03-02 12:34:34 +01:00
no_cache_incantation();
2007-03-02 12:05:17 +01:00
header('Content-Type: text/html; charset=utf-8');
2005-11-16 18:09:27 +01:00
?>
2006-09-28 14:00:03 +02:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2005-08-21 12:13:10 +02:00
<html>
<head>
<title>Tiny Tiny RSS</title>
<link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
2010-11-09 18:57:23 +01:00
<link rel="stylesheet" type="text/css" href="cdm.css?<?php echo $dt_add ?>"/>
2005-11-16 10:20:11 +01:00
<link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
2010-11-14 21:46:49 +01:00
<?php print_theme_includes($link) ?>
2006-08-19 09:04:45 +02:00
<?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
<?php if ($user_css_url) { ?>
<link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
2006-08-19 09:04:45 +02:00
<?php } ?>
2005-11-22 07:44:19 +01:00
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
2006-09-11 08:49:46 +02:00
<script type="text/javascript" src="lib/prototype.js"></script>
2010-11-16 11:04:05 +01:00
<script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
<script type="text/javascript" src="lib/dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
<script type="text/javascript" charset="utf-8" src="tt-rss.js?<?php echo $dt_add ?>"></script>
<script type="text/javascript" charset="utf-8" src="functions.js?<?php echo $dt_add ?>"></script>
<script type="text/javascript" charset="utf-8" src="feedlist.js?<?php echo $dt_add ?>"></script>
<script type="text/javascript" charset="utf-8" src="viewfeed.js?<?php echo $dt_add ?>"></script>
2006-09-28 14:00:03 +02:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2006-02-26 08:21:22 +01:00
<script type="text/javascript">
Event.observe(window, 'load', function() {
init();
});
2006-02-26 08:21:22 +01:00
</script>
2005-08-21 12:13:10 +02:00
</head>
<body id="ttrssMain" class="claro">
2006-02-24 11:15:30 +01:00
2008-09-12 08:55:33 +02:00
<div id="overlay" style="display : block">
2006-10-04 15:38:18 +02:00
<div id="overlay_inner">
2008-05-19 09:37:44 +02:00
<?php echo __("Loading, please wait...") ?>
<div id="l_progress_o">
<div id="l_progress_i"></div>
2008-05-19 09:37:44 +02:00
</div>
2006-10-04 15:38:18 +02:00
<noscript>
2009-10-07 12:47:41 +02:00
<p>
<?php print_error(__("Your browser doesn't support Javascript, which is required
2006-10-04 15:38:18 +02:00
for this application to function properly. Please check your
2009-10-07 12:47:41 +02:00
browser settings.")) ?></p>
2006-10-04 15:38:18 +02:00
</noscript>
</div>
</div>
2006-09-28 14:00:03 +02:00
2008-05-16 07:35:13 +02:00
<div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
<?php rounded_table_start("hho"); ?>
2008-05-15 17:57:14 +02:00
<?php include "help/3.php" ?>
<?php rounded_table_end(); ?>
2008-05-15 17:57:14 +02:00
</div>
<div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
2009-10-09 11:13:57 +02:00
<div id="cmdline" style="display : none"></div>
2009-10-14 13:45:47 +02:00
<div id="auxDlg" style="display : none"></div>
2009-10-09 11:13:57 +02:00
<div id="main" dojoType="dijit.layout.BorderContainer">
<div id="header" dojoType="dijit.layout.ContentPane" region="top">
2009-02-04 13:49:34 +01:00
<div class="topLinks" id="topLinks">
2009-01-23 06:53:31 +01:00
2006-09-29 09:50:18 +02:00
<?php if (!SINGLE_USER_MODE) { ?>
<?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
2006-09-29 09:50:18 +02:00
<?php } ?>
<a href="prefs.php"><?php echo __('Preferences') ?></a>
2009-01-19 09:01:49 +01:00
<?php if (defined('FEEDBACK_URL') && FEEDBACK_URL) { ?>
2007-11-19 13:17:31 +01:00
| <a target="_blank" class="feedback" href="<?php echo FEEDBACK_URL ?>">
2007-11-19 13:12:04 +01:00
<?php echo __('Comments?') ?></a>
2007-11-19 13:13:37 +01:00
<?php } ?>
2007-11-19 13:12:04 +01:00
<?php if (!SINGLE_USER_MODE) { ?>
| <a href="logout.php"><?php echo __('Logout') ?></a>
<?php } ?>
2007-08-24 08:59:54 +02:00
<img id="newVersionIcon" style="display:none;" onclick="javascript:explainError(2)"
width="13" height="13"
src="<?php echo theme_image($link, 'images/new_version.png') ?>"
title="<?php echo __('New version of Tiny Tiny RSS is available!') ?>"
alt="new_version_icon"/>
2009-01-23 06:53:31 +01:00
</div>
<img src="<?php echo theme_image($link, 'images/ttrss_logo.png') ?>" alt="Tiny Tiny RSS"/>
2006-09-29 09:50:18 +02:00
</div>
<div id="feeds-holder" dojoType="dijit.layout.ContentPane" region="leading" style="width : 20%" splitter="true">
2010-11-16 10:23:06 +01:00
<div id="feedlistLoading">
<img src='images/indicator_tiny.gif'>
<?php echo __("Loading, please wait..."); ?></div>
<div id="feedTree"></div>
2006-09-28 14:00:03 +02:00
</div>
<div dojoType="dijit.layout.TabContainer" region="center" id="content-tabs">
<div dojoType="dijit.layout.BorderContainer" region="center" id="content-wrap"
title="News">
<div id="toolbar" dojoType="dijit.layout.ContentPane" region="top">
2005-12-20 16:58:39 +01:00
2010-11-17 12:04:22 +01:00
<div id="main-toolbar" dojoType="dijit.Toolbar">
<form id="main_toolbar_form" action="" onsubmit='return false'>
2005-12-20 16:58:39 +01:00
2010-01-12 13:27:04 +01:00
<button id="collapse_feeds_btn" onclick="collapse_feedlist()"
2010-11-15 20:31:41 +01:00
title="<?php echo __('Collapse feedlist') ?>" style="display : inline">
2010-01-12 13:27:04 +01:00
&lt;&lt;</button>
2008-02-20 06:27:16 +01:00
<select name="view_mode" title="<?php echo __('Show articles') ?>"
onchange="viewModeChanged()">
<option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
2007-03-05 09:45:38 +01:00
<option value="all_articles"><?php echo __('All Articles') ?></option>
<option value="marked"><?php echo __('Starred') ?></option>
2010-11-03 22:24:18 +01:00
<option value="published"><?php echo __('Published') ?></option>
2007-03-05 09:45:38 +01:00
<option value="unread"><?php echo __('Unread') ?></option>
<!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
2009-01-19 04:52:33 +01:00
<option value="updated"><?php echo __('Updated') ?></option>
</select>
<select title="<?php echo __('Sort articles') ?>"
name="order_by" onchange="viewModeChanged()">
<option selected="selected" value="default"><?php echo __('Default') ?></option>
<option value="date"><?php echo __('Date') ?></option>
<option value="title"><?php echo __('Title') ?></option>
<option value="score"><?php echo __('Score') ?></option>
</select>
<button name="update" onclick="return scheduleFeedUpdate()">
2010-01-12 12:44:41 +01:00
<?php echo __('Update') ?></button>
2007-02-15 08:03:49 +01:00
2010-01-12 12:44:41 +01:00
<button onclick="return catchupCurrentFeed()">
<?php echo __('Mark as read') ?></button>
2010-01-04 09:40:19 +01:00
</form>
2005-11-27 15:56:10 +01:00
2010-11-15 19:49:00 +01:00
<div class="actionChooser">
<select id="quickMenuChooser" onchange="quickMenuChange()">
<option value="qmcDefault" selected="selected"><?php echo __('Actions...') ?></option>
<option value="qmcSearch"><?php echo __('Search...') ?></option>
<optgroup label="<?php echo __('Feed actions:') ?>">
<option value="qmcAddFeed"><?php echo __('Subscribe to feed...') ?></option>
<option value="qmcEditFeed"><?php echo __('Edit this feed...') ?></option>
<option value="qmcRescoreFeed"><?php echo __('Rescore feed') ?></option>
<option value="qmcRemoveFeed"><?php echo __('Unsubscribe') ?></option>
</optgroup>
<optgroup label="<?php echo __('All feeds:') ?>">
<option value="qmcCatchupAll"><?php echo __('Mark as read') ?></option>
<option value="qmcShowOnlyUnread"><?php echo __('(Un)hide read feeds') ?></option>
</optgroup>
<optgroup label="<?php echo __('Other actions:') ?>">
2010-11-16 10:23:06 +01:00
<option value="qmcTagCloud"><?php echo __('Show tag cloud...') ?></option>
2010-11-15 19:49:00 +01:00
<option value="qmcAddLabel"><?php echo __('Create label...') ?></option>
<option value="qmcAddFilter"><?php echo __('Create filter...') ?></option>
<option value="qmcHKhelp"><?php echo __('Keyboard shortcuts help') ?></option>
</optgroup>
</select>
</div>
2010-11-17 12:04:22 +01:00
</div>
2006-09-28 14:00:03 +02:00
</div>
<div id="headlines-wrap-inner" dojoType="dijit.layout.BorderContainer" region="center">
2006-09-28 14:00:03 +02:00
<div id="headlines-toolbar" dojoType="dijit.layout.ContentPane" region="top">
</div>
2010-11-17 09:34:55 +01:00
<div id="headlines-frame" dojoType="dijit.layout.ContentPane"
onscroll="headlines_scroll_handler(this)" region="center">
<div id="headlinesInnerContainer">
<div class="whiteBox"><?php echo __('Loading, please wait...') ?></div>
</div>
</div>
<?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
<div id="content-insert" dojoType="dijit.layout.ContentPane" region="bottom"
style="height : 50%" splitter="true"></div>
<?php } ?>
</div>
</div>
</div>
2010-11-15 19:49:00 +01:00
<!-- <div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
2008-08-08 07:08:38 +02:00
<a href="http://tt-rss.org/">Tiny Tiny RSS</a>
<?php if (!defined('HIDE_VERSION')) { ?>
v<?php echo VERSION ?>
<?php } ?>
2010-06-30 11:15:24 +02:00
&copy; 2005&ndash;<?php echo date('Y') ?> <a href="http://fakecake.org/">Andrew Dolgov</a>
2010-11-15 19:49:00 +01:00
</div> -->
2005-08-21 12:13:10 +02:00
</div>
2006-08-19 09:04:45 +02:00
<?php db_close($link); ?>
2005-08-21 12:13:10 +02:00
</body>
</html>