Mercurial > moin > 1.9
changeset 38:9ab510c272c4
be a bit less restrictive on some pagename matching regexes
imported from: moin--main--1.5--patch-39
author | Thomas Waldmann <tw@waldmann-edv.de> |
---|---|
date | Sun, 25 Sep 2005 19:10:06 +0000 |
parents | cbbf74e430db |
children | 8c5d9587dcae |
files | MoinMoin/multiconfig.py docs/CHANGES |
diffstat | 2 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/multiconfig.py Sun Sep 25 18:29:11 2005 +0000 +++ b/MoinMoin/multiconfig.py Sun Sep 25 19:10:06 2005 +0000 @@ -233,10 +233,10 @@ page_front_page = u'HelpOnLanguages' # this will make people choose a sane config page_local_spelling_words = u'LocalSpellingWords' page_category_regex = u'^Category[A-Z]' - page_dict_regex = u'[a-z]Dict$' - page_form_regex = u'[a-z]Form$' - page_group_regex = u'[a-z]Group$' - page_template_regex = u'[a-z]Template$' + page_dict_regex = u'[a-z0-9]Dict$' + page_form_regex = u'[a-z0-9]Form$' + page_group_regex = u'[a-z0-9]Group$' + page_template_regex = u'[a-z0-9]Template$' page_license_enabled = 0 page_license_page = u'WikiLicense'
--- a/docs/CHANGES Sun Sep 25 18:29:11 2005 +0000 +++ b/docs/CHANGES Sun Sep 25 19:10:06 2005 +0000 @@ -20,6 +20,7 @@ please just read the help page in case you see it :) * bang_meta old: 0 new: 1 * show_section_numbers old: 1 new: 0 + * some regexes that used to be [a-z]Uxxxx$ are now [a-z0-9]Uxxxx$ * removed settings and code [new behaviour]: * acl_enabled [1] * allow_extended_names [1]