2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2006-03-16 11:57:22 +01: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";
|
2005-11-17 08:25:29 +01:00
|
|
|
require_once "version.php";
|
|
|
|
require_once "config.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
|
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2005-11-17 19:29:13 +01:00
|
|
|
|
2010-11-07 16:14:48 +01:00
|
|
|
init_connection($link);
|
|
|
|
|
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();
|
2008-11-14 13:04:37 +01:00
|
|
|
|
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
|
|
|
2005-11-17 08:25:29 +01:00
|
|
|
?>
|
2006-09-30 08:49:50 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"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) ?>
|
2006-06-06 09:11:03 +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
|
|
|
|
2008-11-19 09:41:11 +01:00
|
|
|
<script type="text/javascript" charset="utf-8" src="functions.js?<?php echo $dt_add ?>"></script>
|
2010-11-12 11:52:53 +01:00
|
|
|
<script type="text/javascript" charset="utf-8" src="deprecated.js?<?php echo $dt_add ?>"></script>
|
|
|
|
|
2008-11-19 09:41:11 +01:00
|
|
|
<script type="text/javascript" charset="utf-8" src="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"/>
|
2009-12-24 10:20:01 +01: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>
|
|
|
|
|
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>
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
<body id="ttrssPrefs" class="claro">
|
2006-02-24 11:15:30 +01:00
|
|
|
|
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>
|
|
|
|
</div>
|
|
|
|
|
2008-05-16 03:38:32 +02:00
|
|
|
<div id="hotkey_help_overlay" style="display : none" onclick="Element.hide(this)">
|
2008-05-16 08:05:12 +02:00
|
|
|
<?php rounded_table_start("hho"); ?>
|
2008-05-16 03:38:32 +02:00
|
|
|
<?php include "help/4.php" ?>
|
2008-05-16 08:05:12 +02:00
|
|
|
<?php rounded_table_end(); ?>
|
2008-05-16 03:38:32 +02:00
|
|
|
</div>
|
|
|
|
|
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="main" dojoType="dijit.layout.BorderContainer">
|
|
|
|
|
|
|
|
<div id="header" dojoType="dijit.layout.ContentPane" region="top">
|
2010-12-03 10:03:44 +01:00
|
|
|
<img style="float : left" src="<?php echo theme_image($link, 'images/logo_wide.png') ?>" title="Tiny Tiny RSS"/>
|
|
|
|
|
|
|
|
<?php if (!SINGLE_USER_MODE) { ?>
|
|
|
|
<?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b> |
|
|
|
|
<?php } ?>
|
|
|
|
<a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a> |
|
|
|
|
<a href='#' onclick="Effect.Appear('hotkey_help_overlay', {duration: 0.3})"><?php echo __("Keyboard shortcuts") ?></a>
|
|
|
|
<?php if (!SINGLE_USER_MODE) { ?>
|
|
|
|
| <a href="logout.php"><?php echo __('Logout') ?></a>
|
|
|
|
<?php } ?>
|
2006-09-30 08:49:50 +02:00
|
|
|
</div>
|
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
|
|
|
|
<div id="genConfigTab" dojoType="dijit.layout.ContentPane"
|
|
|
|
href="backend.php?op=pref-prefs"
|
|
|
|
title="<?php echo __('Preferences') ?>"></div>
|
|
|
|
<div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
|
|
|
|
href="backend.php?op=pref-feeds"
|
|
|
|
title="<?php echo __('Feeds') ?>"></div>
|
|
|
|
<div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
|
|
|
|
href="backend.php?op=pref-filters"
|
|
|
|
title="<?php echo __('Filters') ?>"></div>
|
|
|
|
<div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
|
|
|
|
href="backend.php?op=pref-labels"
|
|
|
|
title="<?php echo __('Labels') ?>"></div>
|
|
|
|
<?php if ($_SESSION["access_level"] >= 10) { ?>
|
2010-11-17 19:39:51 +01: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>
|
|
|
|
<?php } ?>
|
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">
|
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
|
|
|
© 2005–<?php echo date('Y') ?> <a 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>
|