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-08-22 06:56:40 +02:00
|
|
|
<script type="text/javascript" src="functions.js"></script>
|
2005-08-22 03:17:12 +02:00
|
|
|
<script type="text/javascript" src="prefs.js"></script>
|
2005-09-08 07:02:49 +02:00
|
|
|
<!--[if gte IE 5.5000]>
|
|
|
|
<script type="text/javascript" src="pngfix.js"></script>
|
|
|
|
<![endif]-->
|
2005-08-22 03:17:12 +02:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="init()">
|
|
|
|
|
2005-08-25 15:35:59 +02:00
|
|
|
<? require_once "version.php" ?>
|
2005-08-23 16:47:46 +02:00
|
|
|
<? require_once "config.php" ?>
|
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
|
2005-10-16 06:51:09 +02:00
|
|
|
<? if (DISPLAY_HEADER) { ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
<tr>
|
2005-10-16 16:10:14 +02:00
|
|
|
<td colspan="2">
|
|
|
|
<table cellspacing="0" cellpadding="0" width="100%"><tr>
|
|
|
|
<td class="header" valign="middle">
|
|
|
|
<img src="images/ttrss_logo.png" alt="logo">
|
|
|
|
</td>
|
|
|
|
<td align="right" valign="top">
|
|
|
|
<div id="notify"><span id="notify_body"></div>
|
|
|
|
</td>
|
|
|
|
</tr></table>
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2005-10-16 06:51:09 +02:00
|
|
|
<? } ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
<tr>
|
2005-10-16 16:10:14 +02:00
|
|
|
<td class="prefsToolbar" valign="middle" align="right">
|
|
|
|
<input type="submit" onclick="gotoMain()" class="button" value="Return to main">
|
|
|
|
</td>
|
2005-08-22 03:17:12 +02:00
|
|
|
</tr>
|
|
|
|
</tr>
|
2005-09-07 09:19:14 +02:00
|
|
|
<td id="prefContent" class="prefContent" valign="top">
|
2005-09-03 10:03:06 +02:00
|
|
|
<h2>Feed Configuration</h2><div id="piggie"> </div>
|
2005-08-26 08:56:00 +02:00
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
<div class="expPane" id="feedConfPane">
|
2005-09-03 10:03:06 +02:00
|
|
|
<a class="button"
|
|
|
|
href="javascript:expandPane('feedConfPane')">Expand section ></a>
|
2005-09-03 09:22:29 +02:00
|
|
|
</div>
|
2005-09-02 13:49:47 +02:00
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
<h2>OPML Import</h2>
|
2005-09-02 13:49:47 +02:00
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
<div class="expPane">
|
|
|
|
|
2005-09-02 13:49:47 +02:00
|
|
|
<form enctype="multipart/form-data" method="POST" action="opml.php">
|
|
|
|
File: <input id="opml_file" name="opml_file" type="file">
|
|
|
|
<input class="button" name="op" onclick="return validateOpmlImport();"
|
|
|
|
type="submit" value="Import">
|
|
|
|
</form>
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2005-09-03 10:03:06 +02:00
|
|
|
<h2>Content Filtering</h2>
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
<div class="expPane" id="filterConfPane">
|
2005-09-03 10:03:06 +02:00
|
|
|
<a class="button"
|
|
|
|
href="javascript:expandPane('filterConfPane')">Expand section ></a>
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
</div>
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
<? if (ENABLE_LABELS) { ?>
|
|
|
|
|
|
|
|
<h2>Label Editor</h2>
|
|
|
|
|
|
|
|
<div class="expPane" id="labelConfPane">
|
|
|
|
<a class="button"
|
|
|
|
href="javascript:expandPane('labelConfPane')">Expand section ></a>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<? } ?>
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2005-10-16 06:51:09 +02:00
|
|
|
<? if (DISPLAY_FOOTER) { ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
<tr>
|
2005-09-07 09:19:14 +02:00
|
|
|
<td class="footer">
|
2005-08-25 18:08:32 +02:00
|
|
|
<a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> © 2005 Andrew Dolgov
|
|
|
|
<? if (WEB_DEMO_MODE) { ?>
|
|
|
|
<br>Running in demo mode, some functionality is disabled.
|
|
|
|
<? } ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
</td>
|
|
|
|
</td>
|
2005-10-16 06:51:09 +02:00
|
|
|
<? } ?>
|
2005-08-22 03:17:12 +02:00
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|