# -*- coding: utf-8 -*- wikis = [ ("one", r"127.0.0.1/one/.*"), ("one", r"localhost/one/.*"), ("two", r"127.1.0.1/two/.*"), ("two", r"localhost/two/.*"), ("three", r"127.0.0.1/three/.*"), ("three", r"localhost/three/.*"), ("byebye", r"127.0.0.1/byebye/.*"), ("byebye", r"localhost/byebye/.*"), ] from MoinMoin.config.multiconfig import DefaultConfig class FarmConfig(DefaultConfig): language_default = "en" logo_string = u"" page_category_regex = u"^Category[A-Z]" page_dict_regex = u"[a-z]Dict$" page_group_regex = u"[a-z]Group$" page_template_regex = u"[a-z]Template$" show_hosts = 1 show_interwiki = 1 theme_default = "modern" url_prefix_static = "/moinstatic"