Revert "Don't escape values in configdata."

This reverts commit cb0d0d1af2.
This commit is contained in:
Florian Bruhin 2014-05-02 13:24:10 +02:00
parent 24939603ea
commit b6b9738c25

View File

@ -421,14 +421,14 @@ DATA = OrderedDict([
('next-regexes',
SettingValue(types.RegexList(flags=re.IGNORECASE),
r'\bnext\b,\bmore\b,\bnewer\b,^>$,^(>>|»|→|≫)$,'
r'^(>|»|→|≫),(>|»|→|≫)$'),
r'\bnext\b,\bmore\b,\bnewer\b,^>$$,^(>>|»|→|≫)$$,'
r'^(>|»|→|≫),(>|»|→|≫)$$'),
"A comma-separated list of regexes to use for 'next' links."),
('prev-regexes',
SettingValue(types.RegexList(flags=re.IGNORECASE),
r'\bprev(ious)\b,\bback\b,\bolder\b,^<$,^(<<|«|←|≪)$,'
r'^(<|«|←|≪),(<|«|←|≪)$'),
r'\bprev(ious)\b,\bback\b,\bolder\b,^<$$,^(<<|«|←|≪)$$,'
r'^(<|«|←|≪),(<|«|←|≪)$$'),
"A comma-separated list of regexes to use for 'prev' links."),
)),