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