BLACKLISTED_TAGS: use textarea for editing; normalize value when saving
This commit is contained in:
parent
f59c567831
commit
6da576dbe4
|
@ -66,9 +66,13 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
|
$this->pref_help_bottom = [
|
||||||
|
"BLACKLISTED_TAGS" => __("Never apply these tags automatically (comma-separated list)."),
|
||||||
|
];
|
||||||
|
|
||||||
$this->pref_help = [
|
$this->pref_help = [
|
||||||
"ALLOW_DUPLICATE_POSTS" => array(__("Allow duplicate articles"), ""),
|
"ALLOW_DUPLICATE_POSTS" => array(__("Allow duplicate articles"), ""),
|
||||||
"BLACKLISTED_TAGS" => array(__("Blacklisted tags"), __("Never apply these tags automatically (comma-separated list).")),
|
"BLACKLISTED_TAGS" => array(__("Blacklisted tags"), ""),
|
||||||
"DEFAULT_SEARCH_LANGUAGE" => array(__("Default language"), __("Used for full-text search")),
|
"DEFAULT_SEARCH_LANGUAGE" => array(__("Default language"), __("Used for full-text search")),
|
||||||
"CDM_AUTO_CATCHUP" => array(__("Mark read on scroll"), __("Mark articles as read as you scroll past them")),
|
"CDM_AUTO_CATCHUP" => array(__("Mark read on scroll"), __("Mark articles as read as you scroll past them")),
|
||||||
"CDM_EXPANDED" => array(__("Always expand articles")),
|
"CDM_EXPANDED" => array(__("Always expand articles")),
|
||||||
|
@ -192,6 +196,12 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
case 'USER_CSS_THEME':
|
case 'USER_CSS_THEME':
|
||||||
if (!$need_reload) $need_reload = get_pref($pref_name) != $value;
|
if (!$need_reload) $need_reload = get_pref($pref_name) != $value;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'BLACKLISTED_TAGS':
|
||||||
|
$cats = FeedItem_Common::normalize_categories(explode(",", $value));
|
||||||
|
asort($cats);
|
||||||
|
$value = implode(", ", $cats);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
set_pref($pref_name, $value);
|
set_pref($pref_name, $value);
|
||||||
|
@ -671,6 +681,19 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
$timezones = explode("\n", file_get_contents("lib/timezones.txt"));
|
$timezones = explode("\n", file_get_contents("lib/timezones.txt"));
|
||||||
|
|
||||||
print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"');
|
print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"');
|
||||||
|
|
||||||
|
} else if ($pref_name == "BLACKLISTED_TAGS") { # TODO: other possible <textarea> prefs go here
|
||||||
|
|
||||||
|
print "<div>";
|
||||||
|
|
||||||
|
print "<textarea dojoType='dijit.form.SimpleTextarea' rows='4'
|
||||||
|
style='width: 500px; font-size : 12px;'
|
||||||
|
name='$pref_name'>$value</textarea><br/>";
|
||||||
|
|
||||||
|
print "<div class='help-text-bottom text-muted'>" . $this->pref_help_bottom[$pref_name] . "</div>";
|
||||||
|
|
||||||
|
print "</div>";
|
||||||
|
|
||||||
} else if ($pref_name == "USER_CSS_THEME") {
|
} else if ($pref_name == "USER_CSS_THEME") {
|
||||||
|
|
||||||
$themes = array_merge(glob("themes/*.php"), glob("themes/*.css"), glob("themes.local/*.css"));
|
$themes = array_merge(glob("themes/*.php"), glob("themes/*.css"), glob("themes.local/*.css"));
|
||||||
|
@ -725,8 +748,8 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
print "<input type='checkbox' name='$pref_name' $checked $disabled
|
print "<input type='checkbox' name='$pref_name' $checked $disabled
|
||||||
dojoType='dijit.form.CheckBox' id='CB_$pref_name' value='1'>";
|
dojoType='dijit.form.CheckBox' id='CB_$pref_name' value='1'>";
|
||||||
|
|
||||||
} else if (array_search($pref_name, array('FRESH_ARTICLE_MAX_AGE',
|
} else if (in_array($pref_name, ['FRESH_ARTICLE_MAX_AGE',
|
||||||
'PURGE_OLD_DAYS', 'LONG_DATE_FORMAT', 'SHORT_DATE_FORMAT')) !== false) {
|
'PURGE_OLD_DAYS', 'LONG_DATE_FORMAT', 'SHORT_DATE_FORMAT'])) {
|
||||||
|
|
||||||
$regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
|
$regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
|
||||||
|
|
||||||
|
|
|
@ -1472,6 +1472,9 @@ body.ttrss_prefs .user-css-editor {
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs {
|
body.ttrss_prefs fieldset.prefs {
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
@ -1480,6 +1483,9 @@ body.ttrss_prefs fieldset.prefs .help-text {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs fieldset.prefs .help-text-bottom {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
body.ttrss_prefs fieldset.plugin label.description {
|
body.ttrss_prefs fieldset.plugin label.description {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
margin-right: 150px;
|
margin-right: 150px;
|
||||||
|
|
|
@ -1472,6 +1472,9 @@ body.ttrss_prefs .user-css-editor {
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs {
|
body.ttrss_prefs fieldset.prefs {
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
@ -1480,6 +1483,9 @@ body.ttrss_prefs fieldset.prefs .help-text {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs fieldset.prefs .help-text-bottom {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
body.ttrss_prefs fieldset.plugin label.description {
|
body.ttrss_prefs fieldset.plugin label.description {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
margin-right: 150px;
|
margin-right: 150px;
|
||||||
|
|
|
@ -1472,6 +1472,9 @@ body.ttrss_prefs .user-css-editor {
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs {
|
body.ttrss_prefs fieldset.prefs {
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
@ -1480,6 +1483,9 @@ body.ttrss_prefs fieldset.prefs .help-text {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs fieldset.prefs .help-text-bottom {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
body.ttrss_prefs fieldset.plugin label.description {
|
body.ttrss_prefs fieldset.plugin label.description {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
margin-right: 150px;
|
margin-right: 150px;
|
||||||
|
|
|
@ -82,6 +82,9 @@ body.ttrss_prefs {
|
||||||
|
|
||||||
fieldset.prefs {
|
fieldset.prefs {
|
||||||
min-height : 30px;
|
min-height : 30px;
|
||||||
|
display : flex;
|
||||||
|
flex-direction : row;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
label:first-of-type {
|
label:first-of-type {
|
||||||
min-width : 300px;
|
min-width : 300px;
|
||||||
|
@ -91,6 +94,10 @@ body.ttrss_prefs {
|
||||||
display : inline-block;
|
display : inline-block;
|
||||||
margin-left : 10px;
|
margin-left : 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.help-text-bottom {
|
||||||
|
margin-top : 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset.plugin {
|
fieldset.plugin {
|
||||||
|
|
|
@ -1473,6 +1473,9 @@ body.ttrss_prefs .user-css-editor {
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs {
|
body.ttrss_prefs fieldset.prefs {
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
@ -1481,6 +1484,9 @@ body.ttrss_prefs fieldset.prefs .help-text {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs fieldset.prefs .help-text-bottom {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
body.ttrss_prefs fieldset.plugin label.description {
|
body.ttrss_prefs fieldset.plugin label.description {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
margin-right: 150px;
|
margin-right: 150px;
|
||||||
|
|
|
@ -1473,6 +1473,9 @@ body.ttrss_prefs .user-css-editor {
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs {
|
body.ttrss_prefs fieldset.prefs {
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
body.ttrss_prefs fieldset.prefs label:first-of-type {
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
@ -1481,6 +1484,9 @@ body.ttrss_prefs fieldset.prefs .help-text {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs fieldset.prefs .help-text-bottom {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
body.ttrss_prefs fieldset.plugin label.description {
|
body.ttrss_prefs fieldset.plugin label.description {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
margin-right: 150px;
|
margin-right: 150px;
|
||||||
|
|
Loading…
Reference in New Issue