1
# Copyright 2009 Canonical Ltd
1
# Copyright 2009, 2010 Canonical Ltd
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
27
27
"""Loggerhead web viewer for Bazaar branches.
29
This provides a new option "--http" to the "bzr serve" command, that
29
This provides a new option "--http" to the "bzr serve" command, that
30
30
starts a web server to browse the contents of a branch.
58
58
HELP = ('Loggerhead, a web-based code viewer and server. (default port: %d)' %
61
def serve_http(transport, host=None, port=None, inet=None):
62
from paste.httpexceptions import HTTPExceptionHandler
63
from paste.httpserver import serve
61
def setup_logging(config):
65
logger = logging.getLogger('loggerhead')
66
handler = logging.StreamHandler(sys.stderr)
67
handler.setLevel(logging.DEBUG)
68
logger.addHandler(handler)
69
logging.getLogger('simpleTAL').addHandler(handler)
70
logging.getLogger('simpleTALES').addHandler(handler)
73
def _ensure_loggerhead_path():
74
"""Ensure that you can 'import loggerhead' and get the root."""
65
75
# loggerhead internal code will try to 'import loggerhead', so
66
76
# let's put it on the path if we can't find it in the existing path
78
import loggerhead.apps.transport
69
79
except ImportError:
70
80
import os.path, sys
71
81
sys.path.append(os.path.dirname(__file__))
83
def serve_http(transport, host=None, port=None, inet=None):
84
from paste.httpexceptions import HTTPExceptionHandler
85
from paste.httpserver import serve
87
_ensure_loggerhead_path()
73
89
from loggerhead.apps.transport import BranchesFromTransportRoot
74
90
from loggerhead.config import LoggerheadConfig
81
97
if not transport.is_readonly():
82
98
argv.insert(0, '--allow-writes')
83
99
config = LoggerheadConfig(argv)
100
setup_logging(config)
84
101
app = BranchesFromTransportRoot(transport.base, config)
85
102
app = HTTPExceptionHandler(app)
86
103
serve(app, host=host, port=port)
120
137
super(cmd_serve, self).run(*args, **kw)
122
139
register_command(cmd_serve)
141
def load_tests(standard_tests, module, loader):
142
_ensure_loggerhead_path()
143
standard_tests.addTests(loader.loadTestsFromModuleNames(
144
['bzrlib.plugins.loggerhead.loggerhead.tests']))
145
return standard_tests