summaryrefslogtreecommitdiff
path: root/help
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-18 10:30:01 +0100
committerAndrew Dolgov <[email protected]>2009-01-18 10:30:01 +0100
commitbb81a1f367d189f6dcc6f05ccb9971a7600f0054 (patch)
tree6632b25152c54d41100ecaa0bfabdeb44069b25b /help
parent4264f0b5ab8910fd963152a2636a47e61bd88707 (diff)
remove old-style labels help
Diffstat (limited to 'help')
-rw-r--r--help/1.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/help/1.php b/help/1.php
deleted file mode 100644
index a2b4566f1..000000000
--- a/help/1.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<h1><?php echo __("Labels and SQL Expressions") ?></h1>
-
-<p><?php echo __("Label content is generated using SQL expressions. The &laquo;SQL expression&raquo; is added to WHERE clause of view feed query. You can match on ttrss_entries table fields and even use subselect to query additional information. This functionality is considered to be advanced and requires some understanding of SQL.") ?></p>
-
-<h2><?php echo __("Examples") ?></h2>
-
-<p><?php echo __("Match all unread articles:") ?></p>
-
-<code>unread = true</code>
-
-<p><?php echo __("Matches all articles which mention Linux in the title:") ?></p>
-
-<code>ttrss_entries.title like '%Linux%'</code>
-
-<p><?php echo __("Matches all articles for the last week (PostgreSQL):") ?></p>
-
-<code>updated &gt; NOW() - INTERVAL '7 days'</code>
-
-<p><?php echo __("Matches all articles with scores between 100 and 500:") ?></p>
-
-<code>score &gt; 100 and score &lt; 500</code>
-
-<p>