Don't escape values in configdata.

This commit is contained in:
Florian Bruhin 2014-05-02 11:28:36 +02:00
parent 554d5d2745
commit cb0d0d1af2

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."),
)),