summaryrefslogtreecommitdiff
path: root/help
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-27 11:56:53 +0100
committerAndrew Dolgov <[email protected]>2005-11-27 11:56:53 +0100
commit01c9c74ab7a1a961d38dfe8201fcb0b17d795ae8 (patch)
tree9260eb79bb2f2e7f57788679007034a2f286beea /help
parent76332f3c90a276f8ffb20a5f55d573542c85700f (diff)
label help uses infoboxes, real help system
Diffstat (limited to 'help')
-rw-r--r--help/1.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/help/1.php b/help/1.php
new file mode 100644
index 000000000..b6174812a
--- /dev/null
+++ b/help/1.php
@@ -0,0 +1,23 @@
+<h1>Help for SQL expressions</h1>
+
+<h2>Description</h2>
+
+<p>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 basic
+ understanding of SQL.</p>
+
+<h2>Examples</h2>
+
+<p>Match all unread articles:</p>
+
+<pre>unread = true</pre>
+
+<p>Matches all articles which mention Linux in the title:</p>
+
+<pre>title like '%Linux%'</pre>
+
+<p>See the database schema included in the distribution package for gruesome
+details.</p>
+