|
|
@ -33,55 +33,65 @@ class Pref_Filters extends Protected_Handler {
|
|
|
|
else
|
|
|
|
else
|
|
|
|
$feed = -4;
|
|
|
|
$feed = -4;
|
|
|
|
|
|
|
|
|
|
|
|
$feed_title = getFeedTitle($this->link, $feed);
|
|
|
|
$regexp_valid = preg_match('/' . $filter['reg_exp'] . '/',
|
|
|
|
|
|
|
|
$filter['reg_exp']) !== FALSE;
|
|
|
|
$qfh_ret = queryFeedHeadlines($this->link, $cat_filter ? $cat_id : $feed,
|
|
|
|
|
|
|
|
30, "", $cat_filter, false, false,
|
|
|
|
|
|
|
|
false, "date_entered DESC", 0, $_SESSION["uid"], $filter);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$result = $qfh_ret[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$articles = array();
|
|
|
|
|
|
|
|
$found = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print __("Articles matching this filter:");
|
|
|
|
print __("Articles matching this filter:");
|
|
|
|
|
|
|
|
|
|
|
|
print "<div class=\"inactiveFeedHolder\">";
|
|
|
|
print "<div class=\"inactiveFeedHolder\">";
|
|
|
|
print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
|
|
|
|
print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
|
|
|
|
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
if ($regexp_valid) {
|
|
|
|
|
|
|
|
|
|
|
|
$entry_timestamp = strtotime($line["updated"]);
|
|
|
|
$feed_title = getFeedTitle($this->link, $feed);
|
|
|
|
$entry_tags = get_article_tags($this->link, $line["id"], $_SESSION["uid"]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$content_preview = truncate_string(
|
|
|
|
$qfh_ret = queryFeedHeadlines($this->link, $cat_filter ? $cat_id : $feed,
|
|
|
|
strip_tags($line["content_preview"]), 100, '...');
|
|
|
|
30, "", $cat_filter, false, false,
|
|
|
|
|
|
|
|
false, "date_entered DESC", 0, $_SESSION["uid"], $filter);
|
|
|
|
|
|
|
|
|
|
|
|
if ($line["feed_title"])
|
|
|
|
$result = $qfh_ret[0];
|
|
|
|
$feed_title = $line["feed_title"];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "<tr>";
|
|
|
|
$articles = array();
|
|
|
|
|
|
|
|
$found = 0;
|
|
|
|
|
|
|
|
|
|
|
|
print "<td width='5%' align='center'><input
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
dojoType=\"dijit.form.CheckBox\" checked=\"1\"
|
|
|
|
|
|
|
|
disabled=\"1\" type=\"checkbox\"></td>";
|
|
|
|
|
|
|
|
print "<td>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print $line["title"];
|
|
|
|
$entry_timestamp = strtotime($line["updated"]);
|
|
|
|
print " (";
|
|
|
|
$entry_tags = get_article_tags($this->link, $line["id"], $_SESSION["uid"]);
|
|
|
|
print "<b>" . $feed_title . "</b>";
|
|
|
|
|
|
|
|
print "): ";
|
|
|
|
|
|
|
|
print "<span class=\"insensitive\">" . $content_preview . "</span>";
|
|
|
|
|
|
|
|
print " " . mb_substr($line["date_entered"], 0, 16);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "</td></tr>";
|
|
|
|
$content_preview = truncate_string(
|
|
|
|
|
|
|
|
strip_tags($line["content_preview"]), 100, '...');
|
|
|
|
|
|
|
|
|
|
|
|
$found++;
|
|
|
|
if ($line["feed_title"])
|
|
|
|
}
|
|
|
|
$feed_title = $line["feed_title"];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "<tr>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "<td width='5%' align='center'><input
|
|
|
|
|
|
|
|
dojoType=\"dijit.form.CheckBox\" checked=\"1\"
|
|
|
|
|
|
|
|
disabled=\"1\" type=\"checkbox\"></td>";
|
|
|
|
|
|
|
|
print "<td>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print $line["title"];
|
|
|
|
|
|
|
|
print " (";
|
|
|
|
|
|
|
|
print "<b>" . $feed_title . "</b>";
|
|
|
|
|
|
|
|
print "): ";
|
|
|
|
|
|
|
|
print "<span class=\"insensitive\">" . $content_preview . "</span>";
|
|
|
|
|
|
|
|
print " " . mb_substr($line["date_entered"], 0, 16);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print "</td></tr>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$found++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($found == 0) {
|
|
|
|
|
|
|
|
print "<tr><td align='center'>" .
|
|
|
|
|
|
|
|
__("No articles matching this filter has been found.") . "</td></tr>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
print "<tr><td align='center' class='error'>" .
|
|
|
|
|
|
|
|
__("Invalid regular expression.") . "</td></tr>";
|
|
|
|
|
|
|
|
|
|
|
|
if ($found == 0) {
|
|
|
|
|
|
|
|
print "<tr><td align='center'>" .
|
|
|
|
|
|
|
|
__("No articles matching this filter has been found.") . "</td></tr>";
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
print "</table>";
|
|
|
|