1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-07 06:49:15 +00:00

label help uses infoboxes, real help system

This commit is contained in:
Andrew Dolgov
2005-11-27 11:56:53 +01:00
parent 76332f3c90
commit 01c9c74ab7
4 changed files with 56 additions and 41 deletions

23
help/1.php Normal file
View File

@@ -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>