contrib/deploy/wsgi.py @ b3dba8dbf9f6

contrib/deploy: fix the username setting in the wsgi script
author Steve Losh <steve@stevelosh.com>
date Mon, 05 Jul 2010 21:56:07 -0400
parents f61b33b27999
children c0afa545124b
# An example WSGI script for serving hg-review's web UI.
# Edit as necessary.

# If hg-review is not on your webserver's PYTHONPATH, uncomment the lines
# below and point it at the hg-review directory.
import sys
sys.path.insert(0, "/path/to/hg-review")

REPO = '/path/to/your/repo'
READ_ONLY = True
ALLOW_ANON_COMMENTS = False
ANON_USER = 'Anonymous <anonymous@example.com>'
SITE_ROOT = 'http://yoursite.com/optional/path'
TITLE = 'Your Project'

from mercurial import hg, ui
from review.web import app

_ui = ui.ui()
_ui.setconfig('ui', 'username', ANON_USER)
repo = hg.repository(_ui, REPO)

app.read_only = READ_ONLY
app.allow_anon = ALLOW_ANON_COMMENTS
app.site_root = SITE_ROOT.rstrip('/')
app.title = TITLE
app.debug = False
app.ui = _ui
app.repo = repo

application = app