summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.js4
-rw-r--r--functions.php14
-rw-r--r--help/1.php10
-rw-r--r--help/2.php10
-rw-r--r--images/sign_excl.pngbin0 -> 1006 bytes
-rw-r--r--images/sign_info.pngbin0 -> 1129 bytes
-rw-r--r--images/sign_quest.pngbin0 -> 1188 bytes
-rw-r--r--modules/pref-feeds.php26
-rw-r--r--modules/pref-filters.php6
-rw-r--r--modules/pref-labels.php4
-rw-r--r--modules/pref-prefs.php20
-rw-r--r--tt-rss.css29
-rw-r--r--tt-rss.js2
13 files changed, 72 insertions, 53 deletions
diff --git a/functions.js b/functions.js
index 991c0715d..da12a3c36 100644
--- a/functions.js
+++ b/functions.js
@@ -155,11 +155,13 @@ function notify_real(msg, doc, no_hide, is_err) {
// n.style.backgroundColor = "#ffcccc";
// n.style.color = "black";
// n.style.borderColor = "#ff0000";
+ msg = "<img src='images/sign_excl.png'> " + msg;
} else {
n.className = "notify";
// n.style.backgroundColor = "#fff7d5";
// n.style.borderColor = "#d7c47a";
// n.style.color = "black";
+ msg = "<img src='images/sign_info.png'> " + msg;
}
// msg = "<img src='images/live_com_loading.gif'> " + msg;
@@ -1396,7 +1398,7 @@ function toggleSubmitNotEmpty(e, submit_id) {
}
function isValidURL(s) {
- return s.match("http://") != null || s.match("https://") != null;
+ return s.match("http://") != null || s.match("https://") != null || s.match("feed://") != null;
}
function qafAdd() {
diff --git a/functions.php b/functions.php
index 10b45d299..973374701 100644
--- a/functions.php
+++ b/functions.php
@@ -2619,9 +2619,9 @@
if (version_compare(VERSION, $latest_version) == -1) {
if ($brief_fmt) {
- return "<div class=\"notice\"><a href=\"javascript:showBlockElement('milestoneDetails')\">
+ return format_notice("<a href=\"javascript:showBlockElement('milestoneDetails')\">
New version of Tiny-Tiny RSS ($latest_version) is available (click for details)</a>
- <div id=\"milestoneDetails\">$content</div></div>";
+ <div id=\"milestoneDetails\">$content</div>");
} else {
return "New version of Tiny-Tiny RSS ($latest_version) is available:
<div class='milestoneDetails'>$content</div>
@@ -3174,4 +3174,14 @@
header("Pragma: no-cache"); // HTTP/1.0
}
+ function format_warning($msg) {
+ return "<div class=\"warning\">
+ <img src=\"images/sign_excl.png\">$msg</div>";
+ }
+
+ function format_notice($msg) {
+ return "<div class=\"notice\">
+ <img src=\"images/sign_info.png\">$msg</div>";
+ }
+
?>
diff --git a/help/1.php b/help/1.php
index 309783f43..fc7c2003d 100644
--- a/help/1.php
+++ b/help/1.php
@@ -1,12 +1,6 @@
-<h1>Help for SQL expressions</h1>
+<h1>Labels and 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>
+<p>Labels are generated by 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>Examples</h2>
diff --git a/help/2.php b/help/2.php
new file mode 100644
index 000000000..83cf5d4df
--- /dev/null
+++ b/help/2.php
@@ -0,0 +1,10 @@
+<h1>Content filters</h1>
+
+<p>TT-RSS has support for filtering (or processing) articles. Filtering is done once, when new article is imported to the database from the newsfeed, specified field is matched against regular expression and some action is taken. Regular expression matching is case-insensitive.</p>
+
+<p>Supported actions: filter (do not import) article, mark article as read, set starred, assign tag(s). Filters can be defined globally and for some specific feed.</p>
+
+<p>Multiple and inverse matching are supported. All matching filters are considered when article is being imported and all actions executed in sequence. Inverse matching reverts matching result, e.g. filter matching XYZZY in title with inverse flag will match all articles, except those containing string XYZZY in title.</p>
+
+<p>See <a target="_new" href="http://tt-rss.spb.ru/trac/wiki/ContentFilters">this page</a> for additional information on filtering.</p>
+
diff --git a/images/sign_excl.png b/images/sign_excl.png
new file mode 100644
index 000000000..c20b0cb3e
--- /dev/null
+++ b/images/sign_excl.png
Binary files differ
diff --git a/images/sign_info.png b/images/sign_info.png
new file mode 100644
index 000000000..bfd27595b
--- /dev/null
+++ b/images/sign_info.png
Binary files differ
diff --git a/images/sign_quest.png b/images/sign_quest.png
new file mode 100644
index 000000000..d26e577eb
--- /dev/null
+++ b/images/sign_quest.png
Binary files differ
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 3b5ed89d4..d1ef0eae0 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -35,14 +35,15 @@
}
if (count($subscribed) > 0) {
- print "<div class=\"notice\">";
- print "<b>Subscribed to feeds:</b>";
- print "<ul class=\"nomarks\">";
+ $msg = "<b>Subscribed to feeds:</b>".
+ "<ul class=\"nomarks\">";
+
foreach ($subscribed as $title) {
- print "<li>$title</li>";
+ $msg .= "<li>$title</li>";
}
- print "</ul>";
- print "</div>";
+ $msg .= "</ul>";
+
+ print format_notice($msg);
}
}
@@ -442,11 +443,9 @@
}
if (subscribe_to_feed($link, $feed_url, $cat_id)) {
- print "Subscribed to <b>$feed_url</b>.";
+ print format_notice("Subscribed to <b>$feed_url</b>.");
} else {
- print "<div class=\"warning\">
- Already subscribed to <b>$feed_url</b>.
- </div>";
+ print format_warning("Already subscribed to <b>$feed_url</b>.");
}
if ($p_from != 'tt-rss') {
@@ -548,9 +547,7 @@
} else {
- print "<div class=\"warning\">
- Category <b>$feed_cat</b> already exists in the database.
- </div>";
+ print format_warning("Category <b>$feed_cat</b> already exists in the database.");
}
}
@@ -577,8 +574,7 @@
WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
} else {
- print "<div class=\"warning\">
- Unable to delete non empty feed categories.</div>";
+ print format_warning("Unable to delete non empty feed categories.");
}
diff --git a/modules/pref-filters.php b/modules/pref-filters.php
index 052c5d44a..e348fe69c 100644
--- a/modules/pref-filters.php
+++ b/modules/pref-filters.php
@@ -213,6 +213,9 @@
$filter_types[$line["id"]] = $line["description"];
}
+ print "<a class='helpLinkPic' href=\"javascript:displayHelpInfobox(2)\">
+ <img src='images/sign_quest.png'></a>";
+
print "<input type=\"submit\"
class=\"button\"
onclick=\"return displayDlg('quickAddFilter', false)\"
@@ -336,9 +339,6 @@
print "</p>";
- print "<div class=\"insensitive\" style=\"float : right\">See
- <a target=\"_new\" href=\"http://tt-rss.spb.ru/trac/wiki/ContentFilters\">this page</a>
- for additional information on filtering</div>";
/* print "<div class=\"insensitive\" style=\"float : right\">
First matching filter is used, filtering is performed
diff --git a/modules/pref-labels.php b/modules/pref-labels.php
index 94e306a21..3b7d7f79f 100644
--- a/modules/pref-labels.php
+++ b/modules/pref-labels.php
@@ -190,6 +190,9 @@
$sort = "description";
}
+ print "<a class='helpLinkPic' href=\"javascript:displayHelpInfobox(1)\">
+ <img src='images/sign_quest.png'></a>";
+
print "<div class=\"prefGenericAddBox\">";
print"<input type=\"submit\" class=\"button\"
@@ -222,7 +225,6 @@
<td width=\"5%\">&nbsp;</td>
<td width=\"30%\"><a href=\"javascript:updateLabelList('description')\">Caption</a></td>
<td width=\"50%\"><a href=\"javascript:updateLabelList('sql_exp')\">SQL Expression</a>
- <a class=\"helpLink\" href=\"javascript:displayHelpInfobox(1)\">(?)</a>
</td>
</tr>";
diff --git a/modules/pref-prefs.php b/modules/pref-prefs.php
index 524ab5a6b..fd796bcc1 100644
--- a/modules/pref-prefs.php
+++ b/modules/pref-prefs.php
@@ -164,35 +164,25 @@
pwd_hash = 'SHA1:".sha1("password")."')");
if (db_num_rows($result) != 0) {
- print "<div class=\"warning\">
- Your password is at default value, please change it.
- </div>";
+ print format_warning("Your password is at default value, please change it.");
}
if ($_SESSION["pwd_change_result"] == "failed") {
- print "<div class=\"warning\">
- There was an error while changing your password.
- </div>";
+ print format_warning("Could not change the password.");
}
if ($_SESSION["pwd_change_result"] == "ok") {
- print "<div class=\"notice\">
- Password changed successfully.
- </div>";
+ print format_notice("Password was changed.");
}
$_SESSION["pwd_change_result"] = "";
if ($_SESSION["prefs_op_result"] == "reset-to-defaults") {
- print "<div class=\"notice\">
- Your configuration was reset to defaults.
- </div>";
+ print format_notice("The configuration was reset to defaults.");
}
if ($_SESSION["prefs_op_result"] == "save-config") {
- print "<div class=\"notice\">
- Your configuration was saved successfully.
- </div>";
+ print format_notice("The configuration was saved.");
}
$_SESSION["prefs_op_result"] = "";
diff --git a/tt-rss.css b/tt-rss.css
index 37c222810..73c475988 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -229,12 +229,15 @@ input.editbox {
display : none;
float : right;
font-size : 9pt;
- text-align : center;
z-index : 999;
-moz-border-radius : 2px;
padding : 5px 5px 5px 5px;
}
+#notify img {
+ vertical-align : middle;
+}
+
.notify {
border-color : #d7c47a;
background-color : #fff7d5;
@@ -566,20 +569,28 @@ div.prefsTabSelected {
text-align : center;
}
+div.notice {
+ background : #ffffff;
+ border : 1px solid #88b0f0;
+ width : 50%;
+ padding : 5px;
+ margin : 0px 0px 5px 0px;
+ font-size : 9pt;
+}
+
div.warning {
background : #fff7d5;
border : 1px solid #d7c47a;
+ font-size : 9pt;
+ width : 50%;
padding : 5px;
margin : 0px 0px 5px 0px;
- font-size : 9pt;
}
-div.notice {
- background : #ffffff;
- border : 1px solid #88b0f0;
+
+div.warning img, div.notice img {
+ vertical-align : middle;
padding : 5px;
- margin : 0px 0px 5px 0px;
- font-size : 9pt;
}
div.error {
@@ -1468,3 +1479,7 @@ ul.headlineDropdownMenu ul li:hover {
cursor : pointer;
display : none;
}
+
+a.helpLinkPic {
+ float : right;
+}
diff --git a/tt-rss.js b/tt-rss.js
index 32c8c7665..b9f3af113 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -552,7 +552,7 @@ function parse_runtime_info(elem) {
}
if (k == "daemon_is_running" && v != 1) {
- notify("<span onclick=\"javascript:explainError(1)\">Warning: Update daemon is not runing.</span>", true, true);
+ notify("<span onclick=\"javascript:explainError(1)\">Update daemon is not runing.</span>", true, true);
}
/* var w = document.getElementById("noDaemonWarning");