sanity checking in filter editor, updated NEWS, changed prefs UI a bit more
This commit is contained in:
parent
0afbd85193
commit
ea6774cf1d
4
NEWS
4
NEWS
|
@ -1,6 +1,8 @@
|
|||
v1.0.3 (Sep xx, 2005)
|
||||
|
||||
- OPML export/import.
|
||||
- OPML export/import
|
||||
- Support for simple content filtering (expression should be valid regexp)
|
||||
- Reworked preferences dialog
|
||||
|
||||
v1.0.2 (Sep 02, 2005)
|
||||
|
||||
|
|
|
@ -646,7 +646,7 @@
|
|||
}
|
||||
|
||||
print "<table class=\"prefAddFeed\"><tr>
|
||||
<td>Expr: <input id=\"fadd_regexp\"></td>
|
||||
<td><input id=\"fadd_regexp\"></td>
|
||||
<td>";
|
||||
print_select("fadd_match", "", $filter_types);
|
||||
|
||||
|
@ -661,7 +661,7 @@
|
|||
(SELECT description FROM ttrss_filter_types
|
||||
WHERE id = filter_type) as filter_type_descr
|
||||
FROM
|
||||
ttrss_filters ORDER by id");
|
||||
ttrss_filters ORDER by regexp");
|
||||
|
||||
print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
|
||||
|
||||
|
@ -684,6 +684,9 @@
|
|||
|
||||
print "<tr class=\"$class\" id=\"FILRR-$filter_id\">";
|
||||
|
||||
$line["regexp"] = htmlspecialchars($line["regexp"]);
|
||||
$line["description"] = htmlspecialchars($line["description"]);
|
||||
|
||||
if (!$edit_filter_id || $subop != "edit") {
|
||||
|
||||
if (!$line["description"]) $line["description"] = "[No description]";
|
||||
|
|
11
prefs.php
11
prefs.php
|
@ -28,11 +28,12 @@
|
|||
</tr>
|
||||
</tr>
|
||||
<td id="prefContent" class="prefContent" valign="top" colspan="2">
|
||||
<h2>Feed Configuration</h2> <div id="piggie"> </div>
|
||||
<h2>Feed Configuration</h2><div id="piggie"> </div>
|
||||
|
||||
|
||||
<div class="expPane" id="feedConfPane">
|
||||
<a href="javascript:expandPane('feedConfPane')">Click to expand >></a>
|
||||
<a class="button"
|
||||
href="javascript:expandPane('feedConfPane')">Expand section ></a>
|
||||
</div>
|
||||
|
||||
<h2>OPML Import</h2>
|
||||
|
@ -48,10 +49,12 @@
|
|||
|
||||
</div>
|
||||
|
||||
<h2>Content filtering</h2>
|
||||
<h2>Content Filtering</h2>
|
||||
|
||||
<div class="expPane" id="filterConfPane">
|
||||
<a href="javascript:expandPane('filterConfPane')">Click to expand >></a>
|
||||
<a class="button"
|
||||
href="javascript:expandPane('filterConfPane')">Expand section ></a>
|
||||
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
|
Loading…
Reference in New Issue