label help tweaks
This commit is contained in:
parent
6a5efb075c
commit
b44d8c5147
|
@ -6,15 +6,15 @@
|
|||
|
||||
<p>Match all unread articles:</p>
|
||||
|
||||
<pre>unread = true</pre>
|
||||
<code>unread = true</code>
|
||||
|
||||
<p>Matches all articles which mention Linux in the title:</p>
|
||||
|
||||
<pre>ttrss_entries.title like '%Linux%'</pre>
|
||||
<code>ttrss_entries.title like '%Linux%'</code>
|
||||
|
||||
<p>Matches all articles for the last week (PostgreSQL):</p>
|
||||
|
||||
<pre>updated > NOW() - INTERVAL '7 days'</pre>
|
||||
<code>updated > NOW() - INTERVAL '7 days'</code>
|
||||
|
||||
<p>See the database schema <a target="_blank" href="http://tt-rss.org/trac/browser/schema/ttrss_schema_pgsql.sql">here</a> or included in the distribution package for gruesome details. The relevant tables are <b>ttrss_entries</b> and <b>ttrss_user_entries</b>.</p>
|
||||
|
||||
|
|
|
@ -236,9 +236,11 @@
|
|||
|
||||
print "<div align='right'>";
|
||||
|
||||
print "<div style='float : left'>";
|
||||
print "<input type=\"submit\"
|
||||
class=\"button\" onclick=\"return displayHelpInfobox(1)\"
|
||||
value=\"".__('Help')."\"> ";
|
||||
print "</div>";
|
||||
|
||||
print "<input type=\"submit\" onclick=\"labelTest()\" value=\"".__('Test')."\">
|
||||
";
|
||||
|
|
|
@ -56,9 +56,11 @@
|
|||
|
||||
print "<div align='right'>";
|
||||
|
||||
print "<div style='float : left'>";
|
||||
print "<input type=\"submit\"
|
||||
class=\"button\" onclick=\"return displayHelpInfobox(1)\"
|
||||
value=\"".__('Help')."\"> ";
|
||||
print "</div>";
|
||||
|
||||
$is_disabled = (strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== FALSE) ? "disabled" : "";
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ p.warning {
|
|||
color : red;
|
||||
}
|
||||
|
||||
p.query {
|
||||
p.query, code {
|
||||
color : green;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue