2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2006-03-16 11:57:22 +01:00
|
|
|
require_once "functions.php";
|
|
|
|
|
|
|
|
basic_nosid_redirect_check();
|
|
|
|
|
2006-03-02 09:10:43 +01:00
|
|
|
require_once "sessions.php";
|
2005-11-17 19:06:48 +01:00
|
|
|
|
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
|
|
|
|
2005-11-20 12:19:20 +01:00
|
|
|
login_sequence($link);
|
2006-03-30 08:43:35 +02:00
|
|
|
|
2006-03-30 08:57:29 +02:00
|
|
|
$dt_add = get_script_dt_add();
|
2006-03-30 08:43:35 +02:00
|
|
|
|
2005-11-17 08:25:29 +01:00
|
|
|
?>
|
2005-08-22 03:17:12 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2005-09-07 09:19:14 +02:00
|
|
|
<title>Tiny Tiny RSS : Preferences</title>
|
2005-08-22 03:17:12 +02:00
|
|
|
<link rel="stylesheet" href="tt-rss.css" type="text/css">
|
2005-11-17 08:25:29 +01:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php $user_theme = $_SESSION["theme"];
|
2005-11-26 07:48:37 +01:00
|
|
|
if ($user_theme) { ?>
|
2006-08-19 09:04:45 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
|
|
|
|
<?php } ?>
|
2005-11-26 07:48:37 +01:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
|
2006-06-06 09:11:03 +02:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
|
|
|
|
<?php if ($user_css_url) { ?>
|
|
|
|
<link type="text/css" href="<?php echo $user_css_url ?>"/>
|
|
|
|
<?php } ?>
|
2005-11-22 07:44:19 +01:00
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
|
2005-11-17 08:25:29 +01:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } else { ?>
|
2005-11-17 08:25:29 +01:00
|
|
|
|
|
|
|
<link title="Compact Stylesheet" rel="alternate stylesheet"
|
|
|
|
type="text/css" href="tt-rss_compact.css"/>
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-11-17 08:25:29 +01:00
|
|
|
|
2006-05-20 13:16:16 +02:00
|
|
|
<script type="text/javascript" src="prototype.js"></script>
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
|
|
|
|
<script type="text/javascript" src="prefs.js?<?php echo $dt_add ?>"></script>
|
2005-11-17 08:10:31 +01:00
|
|
|
|
2006-05-20 18:00:41 +02:00
|
|
|
<div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
|
|
|
|
|
2005-09-08 07:02:49 +02:00
|
|
|
<!--[if gte IE 5.5000]>
|
|
|
|
<script type="text/javascript" src="pngfix.js"></script>
|
2006-05-18 08:02:18 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
|
2005-09-08 07:02:49 +02:00
|
|
|
<![endif]-->
|
2005-08-22 03:17:12 +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">
|
|
|
|
if (navigator.userAgent.match("Opera")) {
|
|
|
|
document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
|
|
|
|
}
|
2006-05-19 05:52:19 +02:00
|
|
|
if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
|
|
|
|
document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
|
|
|
|
}
|
2006-02-26 08:21:22 +01:00
|
|
|
</script>
|
2005-08-22 03:17:12 +02:00
|
|
|
</head>
|
|
|
|
|
2006-02-24 11:15:30 +01:00
|
|
|
<body>
|
|
|
|
|
2006-08-12 16:57:13 +02:00
|
|
|
<div id="piggie"> </div>
|
2006-02-25 06:54:53 +01:00
|
|
|
|
2006-07-25 12:32:58 +02:00
|
|
|
<iframe id="backReqBox"></iframe>
|
|
|
|
|
2006-02-24 11:15:30 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
if (document.addEventListener) {
|
|
|
|
document.addEventListener("DOMContentLoaded", init, null);
|
|
|
|
}
|
|
|
|
window.onload = init;
|
|
|
|
</script>
|
2005-08-22 03:17:12 +02:00
|
|
|
|
2006-05-23 09:15:48 +02:00
|
|
|
<ul id="debug_output"></ul>
|
|
|
|
|
|
|
|
<div id="fatal_error"><div id="fatal_error_inner">
|
|
|
|
<h1>Fatal Error</h1>
|
|
|
|
<div id="fatal_error_msg">Unknown Error</div>
|
|
|
|
</div></div>
|
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (get_pref($link, 'DISPLAY_HEADER')) { ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
<tr>
|
2005-11-17 12:00:52 +01:00
|
|
|
<td colspan="2">
|
2005-10-16 16:10:14 +02:00
|
|
|
<table cellspacing="0" cellpadding="0" width="100%"><tr>
|
2005-11-17 19:29:13 +01:00
|
|
|
<td rowspan="2" class="header" valign="middle">
|
2006-08-19 09:04:45 +02:00
|
|
|
<img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">
|
2005-10-16 16:10:14 +02:00
|
|
|
</td>
|
2005-12-19 19:19:35 +01:00
|
|
|
<td valign="top" class="notifyBox">
|
2006-07-31 09:18:58 +02:00
|
|
|
<div id="notify" class="notify"><span id="notify_body"> </span></div>
|
2005-10-16 16:10:14 +02:00
|
|
|
</td>
|
2005-11-17 19:29:13 +01:00
|
|
|
</tr><tr><td class="welcomePrompt">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (!SINGLE_USER_MODE) { ?>
|
|
|
|
Hello, <b><?php echo $_SESSION["name"] ?></b>
|
2005-11-20 11:18:53 +01:00
|
|
|
(<a href="logout.php">Logout</a>)
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-11-20 12:27:11 +01:00
|
|
|
</td>
|
2005-10-16 16:10:14 +02:00
|
|
|
</tr></table>
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } else { ?>
|
2005-12-19 19:19:35 +01:00
|
|
|
<tr>
|
|
|
|
<td class="small">
|
2006-07-31 09:18:58 +02:00
|
|
|
<div id="notify" class="notify_sm"><span id="notify_body"> </span></div>
|
2005-12-19 19:19:35 +01:00
|
|
|
<div id="userDlgShadow"><div id="userDlg"> </div></div>
|
|
|
|
</td><td class="welcomePrompt">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (!SINGLE_USER_MODE) { ?>
|
|
|
|
Hello, <b><?php echo $_SESSION["name"] ?></b>
|
2005-12-19 19:19:35 +01:00
|
|
|
(<a href="logout.php">Logout</a>)
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-11-27 14:14:51 +01:00
|
|
|
</td></tr>
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
<tr>
|
2005-10-28 19:58:20 +02:00
|
|
|
<td class="prefsTabs" align="left" valign="bottom">
|
2005-11-18 10:00:18 +01:00
|
|
|
<input id="genConfigTab" class="prefsTab" type="submit" value="Preferences"
|
2005-11-17 06:28:45 +01:00
|
|
|
onclick="selectTab('genConfig')">
|
2006-05-17 06:59:33 +02:00
|
|
|
<input id="feedConfigTab" class="prefsTab" type="submit" value="My Feeds"
|
2005-10-28 19:58:20 +02:00
|
|
|
onclick="selectTab('feedConfig')">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
|
2006-05-17 06:59:33 +02:00
|
|
|
<input id="feedBrowserTab" class="prefsTab" type="submit" value="Other Feeds"
|
2005-12-30 06:17:23 +01:00
|
|
|
onclick="selectTab('feedBrowser')">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-10-28 19:58:20 +02:00
|
|
|
<input id="filterConfigTab" class="prefsTab" type="submit" value="Content Filtering"
|
|
|
|
onclick="selectTab('filterConfig')">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
|
2005-10-28 19:58:20 +02:00
|
|
|
<input id="labelConfigTab" class="prefsTab" type="submit" value="Label Editor"
|
|
|
|
onclick="selectTab('labelConfig')">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
|
|
|
<?php if ($_SESSION["access_level"] >= 10) { ?>
|
2005-11-18 10:00:18 +01:00
|
|
|
<input id="userConfigTab" class="prefsTab" type="submit" value="User Manager"
|
|
|
|
onclick="selectTab('userConfig')">
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-10-28 19:58:20 +02:00
|
|
|
</td>
|
|
|
|
<td class="prefsToolbar" valign="middle" align="right">
|
2005-10-16 16:10:14 +02:00
|
|
|
<input type="submit" onclick="gotoMain()" class="button" value="Return to main">
|
|
|
|
</td>
|
2005-10-28 19:58:20 +02:00
|
|
|
</tr>
|
2005-08-22 03:17:12 +02:00
|
|
|
</tr>
|
2005-10-28 19:58:20 +02:00
|
|
|
<td id="prefContent" class="prefContent" valign="top" colspan="2">
|
2005-09-03 09:22:29 +02:00
|
|
|
|
2005-10-28 19:58:20 +02:00
|
|
|
<p>Loading, please wait...</p>
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
<tr>
|
2006-05-18 07:39:33 +02:00
|
|
|
<td class="footer" colspan="2">
|
2006-08-20 16:32:16 +02:00
|
|
|
<a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> © 2005-2006 Andrew Dolgov
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php if (WEB_DEMO_MODE) { ?>
|
2005-08-25 18:08:32 +02:00
|
|
|
<br>Running in demo mode, some functionality is disabled.
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</td>
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php } ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
</table>
|
|
|
|
|
2006-08-19 09:04:45 +02:00
|
|
|
<?php db_close($link); ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
|
2006-02-24 11:15:30 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
/* for IE */
|
|
|
|
function statechange() {
|
|
|
|
if (document.readyState == "interactive") init();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.readyState) {
|
|
|
|
if (document.readyState == "interactive" || document.readyState == "complete") {
|
|
|
|
init();
|
|
|
|
} else {
|
|
|
|
document.onreadystatechange = statechange;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
</body>
|
|
|
|
</html>
|