ttrss/prefs.php

76 lines
1.9 KiB
PHP
Raw Normal View History

2005-08-22 03:17:12 +02:00
<html>
<head>
<title>Tiny Tiny RSS</title>
<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>
<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-08-22 03:17:12 +02:00
<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
<tr>
2005-08-22 05:20:00 +02:00
<td class="header" valign="middle" colspan="2">
2005-08-22 03:17:12 +02:00
Preferences
</td>
</tr>
<tr>
2005-08-22 05:20:00 +02:00
<td class="toolbar" valign="middle">
2005-09-05 17:49:39 +02:00
<table id="notify"><tr><td width="100%" id="notify_body">&nbsp;</td>
<td><img onclick="javascript:notify('')" alt="Close"
src="images/close.png"></td></table>
2005-08-22 05:20:00 +02:00
</td>
<td class="toolbar" valign="middle" colspan="2" align="right">
<a href="tt-rss.php" class="button">Return to main</a>
2005-08-22 03:17:12 +02:00
</td>
</tr>
</tr>
2005-08-25 17:26:33 +02:00
<td id="prefContent" class="prefContent" valign="top" colspan="2">
<h2>Feed Configuration</h2><div id="piggie">&nbsp;</div>
2005-08-26 08:56:00 +02:00
2005-08-22 03:17:12 +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-08-22 03:17:12 +02:00
</td>
</tr>
<tr>
2005-08-22 05:20:00 +02:00
<td colspan="2" class="notify">
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>
</table>
</body>
</html>