Sophie

Sophie

distrib > Arklinux > devel > x86_64 > media > main-src > by-pkgid > 0e656dd27a2340567442b6e57d0af70f > files > 4

moin-1.1-1ark.src.rpm

"""
    MoinMoin - Configuration for Ark Linux
    Copyright (c) 2002 Ark Linux

    Based on default configuration:

    Copyright (c) 2000-2002 by Jürgen Hermann <jh@web.de>
    All rights reserved, see COPYING for details.

    Note that there are more config options than you'll find in
    the version of this file that is installed by default; see
    the module MoinMoin.config for a full list of names and their
    default values.

    Also, the URL http://purl.net/wiki/moin/HelpOnConfiguration has
    a list of config options.

    $Id: moin_config.py,v 1.8 2002/11/25 20:23:09 jhermann Exp $
"""
__version__ = "$Revision: 1.8 $"[11:-2]

# Import system wide configuration
#
# To change system wide defaults, edit
# /usr/lib/python*/site-packages/MoinMoin/farm_config.py
#
from MoinMoin.farm_config import *

# basic options (you normally need to change these)
sitename = 'MoinMoin Wiki running on Ark Linux'
interwikiname = None
data_dir = '/usr/share/moin/arkwiki/data/'
url_prefix = '/wiki'
logo_url = url_prefix + '/img/moinmoin.gif'

# values that depend on above configuration settings
logo_string = '<img src="%s" border="0" alt="%s" />' % (logo_url, sitename)
css_url = url_prefix + '/css/moinmoin.css' # stylesheet link, or ''
html_head = """
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=%s">
""" % (charset,)

# security critical actions (deactivated by default)
if 0:
    allowed_actions = ['DeletePage', 'AttachFile']