2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2011-12-15 15:19:10 +01:00
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR .
|
|
|
|
dirname(__FILE__) . "/include");
|
2011-12-11 20:59:25 +01:00
|
|
|
|
2011-04-18 14:29:10 +02:00
|
|
|
require_once "functions.php";
|
2007-03-02 12:05:17 +01:00
|
|
|
require_once "sessions.php";
|
2005-11-23 18:20:17 +01:00
|
|
|
require_once "sanity_check.php";
|
2011-04-18 14:29:10 +02:00
|
|
|
require_once "version.php";
|
2005-11-17 08:25:29 +01:00
|
|
|
require_once "config.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
|
2011-04-18 14:29:10 +02:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2005-11-17 19:29:13 +01:00
|
|
|
|
2011-12-13 11:49:11 +01:00
|
|
|
if (!init_connection($link)) return;
|
2010-11-07 16:14:48 +01:00
|
|
|
|
2005-11-20 12:19:20 +01:00
|
|
|
login_sequence($link);
|
2006-03-30 08:43:35 +02: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();
|
2011-04-18 14:29:10 +02:00
|
|
|
|
2008-11-14 13:04:37 +01:00
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
2011-04-18 14:29:10 +02:00
|
|
|
|
2005-11-17 08:25:29 +01:00
|
|
|
?>
|
2011-04-18 14:29:10 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2006-09-30 08:49:50 +02:00
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2005-08-22 03:17:12 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2005-09-07 09:19:14 +02:00
|
|
|
<title>Tiny Tiny RSS : Preferences</title>
|
2010-11-15 19:49:00 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
|
2010-11-25 12:39:06 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
|
2005-11-17 08:25:29 +01:00
|
|
|
|
2010-11-17 11:39:30 +01:00
|
|
|
<?php print_theme_includes($link) ?>
|
2010-11-24 17:23:24 +01:00
|
|
|
<?php print_user_stylesheet($link) ?>
|
2011-04-18 14:29:10 +02:00
|
|
|
|
2008-09-21 15:39:02 +02:00
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
|
2006-09-11 08:49:46 +02:00
|
|
|
|
2009-01-22 14:41:34 +01:00
|
|
|
<script type="text/javascript" src="lib/prototype.js"></script>
|
2010-11-08 12:24:34 +01:00
|
|
|
<script type="text/javascript" src="lib/position.js"></script>
|
2009-01-22 14:36:04 +01:00
|
|
|
<script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
|
2011-03-04 17:02:28 +01:00
|
|
|
<script type="text/javascript" src="lib/dojo/dojo.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/dijit/dijit.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
|
2007-09-05 10:02:02 +02:00
|
|
|
|
2008-11-19 09:41:11 +01:00
|
|
|
<script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
|
2006-05-20 13:16:16 +02:00
|
|
|
|
2011-12-11 20:59:25 +01:00
|
|
|
<script type="text/javascript" charset="utf-8" src="js/functions.js?<?php echo $dt_add ?>"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8" src="js/deprecated.js?<?php echo $dt_add ?>"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8" src="js/prefs.js?<?php echo $dt_add ?>"></script>
|
2005-11-17 08:10:31 +01:00
|
|
|
|
2008-09-21 15:39:02 +02:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
2011-04-18 14:29:10 +02:00
|
|
|
|
2006-02-26 08:21:22 +01:00
|
|
|
<script type="text/javascript">
|
2009-12-24 10:20:01 +01:00
|
|
|
Event.observe(window, 'load', function() {
|
|
|
|
init();
|
|
|
|
});
|
2006-02-26 08:21:22 +01:00
|
|
|
</script>
|
2009-12-24 10:20:01 +01:00
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
</head>
|
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
<body id="ttrssPrefs" class="claro">
|
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div id="notify" class="notify"><span id="notify_body"> </span></div>
|
|
|
|
<div id="cmdline" style="display : none"></div>
|
|
|
|
|
2008-05-19 14:00:35 +02:00
|
|
|
<div id="overlay">
|
|
|
|
<div id="overlay_inner">
|
2010-11-19 14:08:02 +01:00
|
|
|
<div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
|
|
|
|
<div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
|
|
|
|
progress="0" maximum="100">
|
2008-05-19 14:00:35 +02:00
|
|
|
</div>
|
2010-11-29 10:18:56 +01:00
|
|
|
<noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
|
2008-05-19 14:00:35 +02:00
|
|
|
</div>
|
2011-04-18 14:29:10 +02:00
|
|
|
</div>
|
2008-05-19 14:00:35 +02:00
|
|
|
|
2011-12-14 12:51:27 +01:00
|
|
|
<div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)"></div>
|
2008-05-16 03:38:32 +02:00
|
|
|
|
2008-09-21 15:39:02 +02:00
|
|
|
<img id="piggie" src="images/piggie.png" style="display : none" alt="piggie"/>
|
2008-05-16 08:05:12 +02:00
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div id="header" dojoType="dijit.layout.ContentPane" region="top">
|
2011-12-14 12:51:27 +01:00
|
|
|
<a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> |
|
2011-04-18 14:29:10 +02:00
|
|
|
<a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
|
2006-09-30 08:49:50 +02:00
|
|
|
</div>
|
|
|
|
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="main" dojoType="dijit.layout.BorderContainer">
|
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="genConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-prefs"
|
|
|
|
title="<?php echo __('Preferences') ?>"></div>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-feeds"
|
|
|
|
title="<?php echo __('Feeds') ?>"></div>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-filters"
|
|
|
|
title="<?php echo __('Filters') ?>"></div>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-labels"
|
|
|
|
title="<?php echo __('Labels') ?>"></div>
|
|
|
|
<?php if ($_SESSION["access_level"] >= 10) { ?>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="userConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-users"
|
|
|
|
title="<?php echo __('Users') ?>"></div>
|
2011-04-21 13:39:27 +02:00
|
|
|
<?php } ?>
|
|
|
|
<?php if ($_SESSION["access_level"] >= 10 || SINGLE_USER_MODE) { ?>
|
2011-04-20 10:11:24 +02:00
|
|
|
<div id="instanceConfigTab" dojoType="dijit.layout.ContentPane"
|
|
|
|
href="backend.php?op=pref-instances"
|
|
|
|
title="<?php echo __('Linked') ?>"></div>
|
2010-11-16 13:56:48 +01:00
|
|
|
<?php } ?>
|
2011-04-20 10:11:24 +02:00
|
|
|
|
2007-05-17 08:33:52 +02:00
|
|
|
</div>
|
2006-09-30 08:49:50 +02:00
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
|
2011-04-18 14:29:10 +02:00
|
|
|
<a class="insensitive" target="_blank" href="http://tt-rss.org/">
|
|
|
|
Tiny Tiny RSS</a> © 2005-<?php echo date('Y') ?>
|
|
|
|
<a class="insensitive" target="_blank"
|
|
|
|
href="http://fakecake.org/">Andrew Dolgov</a>
|
2010-11-16 13:56:48 +01:00
|
|
|
</div> <!-- footer -->
|
|
|
|
|
2006-10-01 06:40:40 +02:00
|
|
|
</div>
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php db_close($link); ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|