~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Matt Nordhoff
  • Date: 2009-06-02 13:26:49 UTC
  • Revision ID: mnordhoff@mattnordhoff.com-20090602132649-p5s5hcahgr3v9w4p
Update --memory-profile's help message to mention Dozer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
45
43
    # normally loaded, and the rest of loggerhead won't be loaded until serve
46
44
    # --http is run.
47
 
 
 
45
        
48
46
    # transport_server_registry was added in bzr 1.16. When we drop support for
49
47
    # older releases, we can remove the code to override cmd_serve.
50
48
 
55
53
 
56
54
    DEFAULT_HOST = '0.0.0.0'
57
55
    DEFAULT_PORT = 8080
58
 
    HELP = ('Loggerhead, a web-based code viewer and server. (default port: %d)' %
 
56
    HELP = ('Loggerhead web-based code viewer and server. (default port: %d)' %
59
57
            (DEFAULT_PORT,))
60
58
 
61
59
    def serve_http(transport, host=None, port=None, inet=None):
62
 
        from paste.httpexceptions import HTTPExceptionHandler
63
 
        from paste.httpserver import serve
64
 
 
65
60
        # loggerhead internal code will try to 'import loggerhead', so
66
 
        # let's put it on the path if we can't find it in the existing path
67
 
        try:
68
 
            import loggerhead
69
 
        except ImportError:
70
 
            import os.path, sys
71
 
            sys.path.append(os.path.dirname(__file__))
 
61
        # let's put it on the path
 
62
        import os.path, sys
 
63
        sys.path.append(os.path.dirname(__file__))
72
64
 
73
65
        from loggerhead.apps.transport import BranchesFromTransportRoot
74
66
        from loggerhead.config import LoggerheadConfig
75
 
 
 
67
        from paste.httpexceptions import HTTPExceptionHandler
 
68
        from paste.httpserver import serve
76
69
        if host is None:
77
70
            host = DEFAULT_HOST
78
71
        if port is None:
79
72
            port = DEFAULT_PORT
80
 
        argv = ['--host', host, '--port', str(port), '--', transport.base]
81
 
        if not transport.is_readonly():
82
 
            argv.insert(0, '--allow-writes')
 
73
        argv = ['--host', host, '--port', str(port), transport.base]
83
74
        config = LoggerheadConfig(argv)
84
 
        app = BranchesFromTransportRoot(transport.base, config)
 
75
        app = BranchesFromTransportRoot(transport, config)
85
76
        app = HTTPExceptionHandler(app)
86
77
        serve(app, host=host, port=port)
87
78
 
103
94
            def run(self, *args, **kw):
104
95
                if 'http' in kw:
105
96
                    from bzrlib.transport import get_transport
106
 
                    allow_writes = kw.get('allow_writes', False)
107
97
                    path = kw.get('directory', '.')
108
98
                    port = kw.get('port', DEFAULT_PORT)
109
99
                    # port might be an int already...
111
101
                        host, port = port.split(':')
112
102
                    else:
113
103
                        host = DEFAULT_HOST
114
 
                    if allow_writes:
115
 
                        transport = get_transport(path)
116
 
                    else:
117
 
                        transport = get_transport('readonly+' + path)
 
104
                    transport = get_transport(path)
118
105
                    serve_http(transport, host, port)
119
106
                else:
120
107
                    super(cmd_serve, self).run(*args, **kw)