find
logo_string = u'[img src="/wiki/common/moinmoin_.png" alt="MoinMoin Logo" /]'
to
logo_string = u'Logo string here'
where, [ and ] should be replaced by ( and )
...
logo_string = u'[img src="/wiki/common/moinmoin_.png" alt="MoinMoin Logo" /]'
logo_string = u'Logo string here'
# -*- coding: iso-8859-1 -*-where, "LoginUser" is an ID.
"MoinMoin - Configuration"
from MoinMoin.multiconfig import DefaultConfig
class Config(DefaultConfig):
sitename = "Jun-Seok Choi local notebook"
acl_rights_before = u"LoginUser:read,write,delete,revert,admin All:"
acl_rights_after = acl_rights_default = u"LoginUser:read,write,delete,revert,admin All:"
port = 8080
from __main__ import DefaultConfig
class Config(DefaultConfig):
port = 8080
interface = ""
# changes the interface where the webserver is bound.
#use "" for every interface
# Run browser
iface = 'localhost'
url = "http://" + iface + ":" + str(Config.port)
webbrowser.open(url)