duhuilin01 发表于 2013-2-7 16:15:58

wiki配置管理

('url_prefix_action', None,
   "Use 'action' to enable action URL generation to be compatible with robots.txt. It will generate .../action/info/PageName?action=info then. Recommended for internet wikis."),

    ('notification_bot_uri', None, "URI of the Jabber notification bot."),

    ('url_mappings', {},
   "lookup table to remap URL prefixes (dict of {{{'prefix': 'replacement'}}}); especially useful in intranets, when whole trees of externally hosted documents move around"),

)),
# ==========================================================================
'pages': ('Special page names', None, (
    ('page_front_page', u'HelpOnLanguages',
   "Name of the front page. We don't expect you to keep the default. Just read HelpOnLanguages in case you're wondering... "),

    # the following regexes should match the complete name when used in free text
    # the group 'all' shall match all, while the group 'key' shall match the key only
    # e.g. CategoryFoo -> group 'all' ==CategoryFoo, group 'key' == Foo
    # moin's code will add ^ / $ at beginning / end when needed
    ('page_category_regex', ur'(?P<all>Category(?P<key>(?!Template)\S+))',
   'Pagenames exactly matching this regex are regarded as Wiki categories '),
    ('page_dict_regex', ur'(?P<all>(?P<key>\S+)Dict)',
   'Pagenames exactly matching this regex are regarded as pages containing variable dictionary definitions '),
    ('page_group_regex', ur'(?P<all>(?P<key>\S+)Group)',
   'Pagenames exactly matching this regex are regarded as pages containing group definitions '),
    ('page_template_regex', ur'(?P<all>(?P<key>\S+)Template)',
   'Pagenames exactly matching this regex are regarded as pages containing templates for new pages '),

    ('page_local_spelling_words', u'LocalSpellingWords',
   'Name of the page containing user-provided spellchecker words '),
)),
# ==========================================================================
'user': ('User Preferences related', None, (
    ('quicklinks_default', [],
   'List of preset quicklinks for a newly created user accounts. Existing accounts are not affected by this option whereas changes in navi_bar do always affect existing accounts. Preset quicklinks can be removed by the user in the user preferences menu, navi_bar settings not.'),
    ('subscribed_pages_default', [],
   "List of pagenames used for presetting page subscriptions for newly created user accounts."),

    ('email_subscribed_events_default',
   [
      PageChangedEvent.__name__,
      PageRenamedEvent.__name__,
      PageDeletedEvent.__name__,
      PageCopiedEvent.__name__,
      PageRevertedEvent.__name__,
      FileAttachedEvent.__name__,
   ], None),
    ('jabber_subscribed_events_default', [], None),

    ('tz_offset', 0.0,
   "default time zone offset in hours from UTC"),

    ('userprefs_disabled', [],
   "Disable the listed user preferences plugins."),
)),
# ==========================================================================
'various': ('Various', None, (
    ('bang_meta', True, 'if True, enable {{{!NoWikiName}}} markup'),
    ('caching_formats', ['text_html'], "output formats that are cached; set to [] to turn off caching (useful for development)"),

    ('config_check_enabled', False, "if True, check configuration for unknown settings."),

    ('default_markup', 'wiki', 'Default page parser / format (name of module in `MoinMoin.parser`)'),

    ('html_head', '', "Additional <HEAD> tags, see HelpOnThemes."),
    ('html_head_queries', '<meta name="robots" content="noindex,nofollow">\n',
   "Additional <HEAD> tags for requests with query strings, like actions."),
    ('html_head_posts', '<meta name="robots" content="noindex,nofollow">\n',
   "Additional <HEAD> tags for POST requests."),
    ('html_head_index', '<meta name="robots" content="index,follow">\n',
   "Additional <HEAD> tags for some few index pages."),
    ('html_head_normal', '<meta name="robots" content="index,nofollow">\n',
   "Additional <HEAD> tags for most normal pages."),
页: [1]
查看完整版本: wiki配置管理