summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-13 14:04:44 +0400
committerAndrew Dolgov <[email protected]>2011-12-13 14:04:44 +0400
commit56770001ddc0b6463f15db39896841b8781be2c6 (patch)
tree65864d015563bbbc4f4aa9dfdd361c127ac2c16f
parent66665fba79c97dc3b96103e60945aedd0b9be676 (diff)
remove old help stuff
-rw-r--r--help/2.php10
-rw-r--r--modules/help.php27
2 files changed, 0 insertions, 37 deletions
diff --git a/help/2.php b/help/2.php
deleted file mode 100644
index 9414ddd38..000000000
--- a/help/2.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<h1><?php echo __("Content filtering") ?></h1>
-
-<p><?php echo __("Tiny Tiny RSS has support for filtering (or processing) articles. Filtering is done once, when new article is imported to the database from the newsfeed, specified field is matched against regular expression and some action is taken. Regular expression matching is case-insensitive.") ?></p>
-
-<p><?php echo __("Supported actions are: filter (do not import) article, mark article as read, set starred, assign tag(s), and set score. Filters can be defined globally and for some specific feed.") ?></p>
-
-<p><?php echo __("Multiple and inverse matching are supported. All matching filters are considered when article is being imported and all actions executed in sequence. Inverse matching reverts matching result, e.g. filter matching XYZZY in title with inverse flag will match all articles, except those containing string XYZZY in title.") ?></p>
-
-<p><?php echo __("See also:")?> <a target="_blank" href="http://tt-rss.org/wiki/ContentFilters">ContentFilters (wiki)</a>
-
diff --git a/modules/help.php b/modules/help.php
deleted file mode 100644
index 716a756dc..000000000
--- a/modules/help.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
- function module_help($link) {
-
- if (!$_REQUEST["noheaders"]) {
- print "<html><head>
- <title>".__('Help')."</title>
- <link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
- <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
- </head><body>";
- }
-
- $tid = sprintf("%d", $_REQUEST["tid"]);
-
- if (file_exists("help/$tid.php")) {
- include("help/$tid.php");
- } else {
- print "<p>".__("Help topic not found.")."</p>";
- }
- print "<div align='center'>
- <button onclick=\"javascript:window.close()\">".
- __('Close this window')."</button></div>";
-
- if (!$_REQUEST["noheaders"]) {
- print "</body></html>";
- }
- }
-?>