~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Martin Albisetti
  • Date: 2009-06-03 13:05:20 UTC
  • mfrom: (359.1.2 lh)
  • Revision ID: martin.albisetti@canonical.com-20090603130520-60d328gn7xe7kh3u
Avoid diluting sys.path if loggerhead is installed systemwide, install loggerhead as a plugin (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009, 2010 Canonical Ltd
 
1
# Copyright 2009 Canonical Ltd
2
2
#
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
26
26
 
27
27
"""Loggerhead web viewer for Bazaar branches.
28
28
 
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.
31
31
"""
32
32
 
33
 
version_info = (1, 17, 0)
 
33
version_info = (1, 11, 0)
34
34
 
35
35
if __name__ == 'bzrlib.plugins.loggerhead':
36
36
    import bzrlib
37
37
    from bzrlib.api import require_any_api
38
38
 
39
 
    require_any_api(bzrlib, [
40
 
        (1, 13, 0), (1, 15, 0), (1, 16, 0), (1, 17, 0), (1, 18, 0),
41
 
        (2, 0, 0), (2, 1, 0), (2, 2, 0)])
 
39
    require_any_api(bzrlib, [(1, 11, 0), (1, 13, 0), (1, 15, 0)])
42
40
 
43
41
    # NB: Normally plugins should lazily load almost everything, but this
44
42
    # seems reasonable to have in-line here: bzrlib.commands and options are
58
56
    HELP = ('Loggerhead, a web-based code viewer and server. (default port: %d)' %
59
57
            (DEFAULT_PORT,))
60
58
 
61
 
    def setup_logging(config):
62
 
        import logging
63
 
        import sys
64
 
 
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)
71
 
 
72
59
    def serve_http(transport, host=None, port=None, inet=None):
73
 
        from paste.httpexceptions import HTTPExceptionHandler
74
 
        from paste.httpserver import serve
75
 
 
76
60
        # loggerhead internal code will try to 'import loggerhead', so
77
61
        # let's put it on the path if we can't find it in the existing path
78
62
        try:
79
 
            import loggerhead.apps.transport
 
63
            import loggerhead
80
64
        except ImportError:
81
65
            import os.path, sys
82
66
            sys.path.append(os.path.dirname(__file__))
83
67
 
84
68
        from loggerhead.apps.transport import BranchesFromTransportRoot
85
69
        from loggerhead.config import LoggerheadConfig
86
 
 
 
70
        from paste.httpexceptions import HTTPExceptionHandler
 
71
        from paste.httpserver import serve
87
72
        if host is None:
88
73
            host = DEFAULT_HOST
89
74
        if port is None:
90
75
            port = DEFAULT_PORT
91
 
        argv = ['--host', host, '--port', str(port), '--', transport.base]
92
 
        if not transport.is_readonly():
93
 
            argv.insert(0, '--allow-writes')
 
76
        argv = ['--host', host, '--port', str(port), transport.base]
94
77
        config = LoggerheadConfig(argv)
95
 
        setup_logging(config)
96
 
        app = BranchesFromTransportRoot(transport.base, config)
 
78
        app = BranchesFromTransportRoot(transport, config)
97
79
        app = HTTPExceptionHandler(app)
98
80
        serve(app, host=host, port=port)
99
81
 
115
97
            def run(self, *args, **kw):
116
98
                if 'http' in kw:
117
99
                    from bzrlib.transport import get_transport
118
 
                    allow_writes = kw.get('allow_writes', False)
119
100
                    path = kw.get('directory', '.')
120
101
                    port = kw.get('port', DEFAULT_PORT)
121
102
                    # port might be an int already...
123
104
                        host, port = port.split(':')
124
105
                    else:
125
106
                        host = DEFAULT_HOST
126
 
                    if allow_writes:
127
 
                        transport = get_transport(path)
128
 
                    else:
129
 
                        transport = get_transport('readonly+' + path)
 
107
                    transport = get_transport(path)
130
108
                    serve_http(transport, host, port)
131
109
                else:
132
110
                    super(cmd_serve, self).run(*args, **kw)