summaryrefslogtreecommitdiff
path: root/ContentFilters.md
diff options
context:
space:
mode:
authorfox <[email protected]>2020-12-11 10:33:27 +0000
committerfox <[email protected]>2020-12-11 10:33:27 +0000
commit187cdc5a563aed70c8b5d175e69bd53b537ebe61 (patch)
treebed8f47aad1d87c14ef134d17188c694dd64256b /ContentFilters.md
parent6fe87b0bd19724fce3b6b5c8295b8da77910dd8f (diff)
Update page 'ContentFilters'
Diffstat (limited to 'ContentFilters.md')
-rw-r--r--ContentFilters.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/ContentFilters.md b/ContentFilters.md
index 920a665..74fef8a 100644
--- a/ContentFilters.md
+++ b/ContentFilters.md
@@ -62,41 +62,3 @@ if Delete article action has been found.
Filter test dialog may not give entirely accurate results, especially for complex filters. It is suggested to
test filters using ``Feed debugger`` if you feel that some filter is somehow misfiring on a specific feed.
-
-## (deprecated) Filters in version:1.6.0 up to version:1.7.5
-
-In version:1.6.0 filters have been improved to support multiple
-arbitrary match rules and actions per filter. You can migrate old
-filters to new format using <code>update.php —convert-filters</code>
-after updating the database schema to current version. It is also
-possible to combine filters together.
-
-Also, date filtering and inverse filters have been removed.
-
-Please note that order of filters and rules being loaded is not
-guaranteed, do not make filters depending on the output of previous
-filter. You will run into problems.
-
-## (deprecated) Filters in older versions
-
-One match and one action per filter are supported. Supported actions:
-delete (do not import) article, mark article as read, set starred,
-assign tag(s). Filters can be defined globally and for some specific
-feed.
-
-Exact filtering algorithm is different between versions:
-
-### 1.2.7 and older
-
-First matching filter is used for the article. If two filters match one
-regular expression, only one filter will be applied. Behaviour for
-selecting the filter is undefined, thus creation of overlapping filters
-is strongly not recommended.
-
-### 1.2.8 and newer
-
-Since 1.2.8, 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.