mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-24 07:31:28 +00:00
label help uses infoboxes, real help system
This commit is contained in:
63
backend.php
63
backend.php
@@ -1939,7 +1939,7 @@
|
||||
|
||||
print "<tr class=\"title\">
|
||||
<td width=\"5%\">Select</td><td width=\"40%\">SQL expression
|
||||
<a class=\"helpLink\" href=\"javascript:popupHelp(1)\">(?)</a>
|
||||
<a class=\"helpLink\" href=\"javascript:displayHelpInfobox(1)\">(?)</a>
|
||||
</td>
|
||||
<td width=\"40%\">Caption</td></tr>";
|
||||
|
||||
@@ -2044,53 +2044,34 @@
|
||||
}
|
||||
|
||||
if ($op == "help") {
|
||||
print "<html><head>
|
||||
<title>Tiny Tiny RSS : Help</title>
|
||||
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
|
||||
<script type=\"text/javascript\" src=\"functions.js\"></script>
|
||||
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
|
||||
</head><body>";
|
||||
if (!$_GET["noheaders"]) {
|
||||
print "<html><head>
|
||||
<title>Tiny Tiny RSS : Help</title>
|
||||
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
|
||||
<script type=\"text/javascript\" src=\"functions.js\"></script>
|
||||
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
|
||||
</head><body>";
|
||||
}
|
||||
|
||||
$tid = sprintf("%d", $_GET["tid"]);
|
||||
|
||||
/* FIXME this badly needs real implementation */
|
||||
print "<div class='infoBoxContents'>";
|
||||
|
||||
print "<div class='helpResponse'>";
|
||||
|
||||
?>
|
||||
|
||||
<h1>Help for SQL expressions</h1>
|
||||
|
||||
<h2>Description</h2>
|
||||
|
||||
<p>The «SQL expression» 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>
|
||||
|
||||
<pre>unread = true</pre>
|
||||
|
||||
Matches all unread articles
|
||||
|
||||
<pre>title like '%Linux%'</pre>
|
||||
|
||||
Matches all articles which mention Linux in the title. You get the idea.
|
||||
|
||||
<p>See the database schema included in the distribution package for gruesome
|
||||
details.</p>
|
||||
|
||||
<?
|
||||
|
||||
print "<div align='center'>
|
||||
<a class=\"helpLink\"
|
||||
href=\"javascript:window.close()\">(Close this window)</a></div>";
|
||||
if (file_exists("help/$tid.php")) {
|
||||
include("help/$tid.php");
|
||||
} else {
|
||||
print "<p>Help topic not found.</p>";
|
||||
}
|
||||
|
||||
print "</div>";
|
||||
|
||||
print "</body></html>";
|
||||
print "<div align='center'>
|
||||
<input type='submit' class='button'
|
||||
onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
|
||||
|
||||
if (!$_GET["noheaders"]) {
|
||||
print "</body></html>";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user