ttrss/prefs.php

94 lines
2.3 KiB
PHP
Raw Normal View History

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">
<? if (DISPLAY_HEADER) { ?>
2005-08-22 03:17:12 +02:00
<tr>
2005-09-07 09:19:14 +02:00
<td class="header" valign="middle">
<img src="images/ttrss_logo.png" alt="logo">
2005-08-22 03:17:12 +02:00
</td>
</tr>
<? } ?>
2005-08-22 03:17:12 +02:00
<tr>
2005-09-07 12:55:09 +02:00
<td class="prefsToolbar" valign="middle">
2005-09-07 09:19:14 +02:00
<table width='100%' cellspacing='0' cellpadding='0'>
<td><span id="notify"><span id="notify_body"></span></td>
<td align='right'>
<input type="submit" onclick="gotoMain()"
class="button" value="Return to main"></td>
</table>
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">
<h2>Feed Configuration</h2><div id="piggie">&nbsp;</div>
2005-08-26 08:56:00 +02:00
<div class="expPane" id="feedConfPane">
<a class="button"
href="javascript:expandPane('feedConfPane')">Expand section &gt;</a>
</div>
2005-09-02 13:49:47 +02:00
<h2>OPML Import</h2>
2005-09-02 13:49:47 +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">&nbsp;
<input class="button" name="op" onclick="return validateOpmlImport();"
type="submit" value="Import">
</form>
</div>
<h2>Content Filtering</h2>
<div class="expPane" id="filterConfPane">
<a class="button"
href="javascript:expandPane('filterConfPane')">Expand section &gt;</a>
</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 &gt;</a>
</div>
<? } ?>
2005-08-22 03:17:12 +02:00
</td>
</tr>
<? 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 ?> &copy; 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-08-22 03:17:12 +02:00
</table>
</body>
</html>