~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Matt Nordhoff
  • Date: 2009-10-15 23:12:10 UTC
  • Revision ID: mnordhoff@mattnordhoff.com-20091015231210-rpjxtt6w3qsd6h9z
Avoid using "dict.keys()" and "dict.items()" in a couple places, in favor of "dict.iter*()".

I can't see how this could possibly break anything. Watch the universe prove me wrong!

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
 
38
38
 
39
39
    require_any_api(bzrlib, [
40
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)])
 
41
        (2, 0, 0), (2, 1, 0)])
42
42
 
43
43
    # NB: Normally plugins should lazily load almost everything, but this
44
44
    # seems reasonable to have in-line here: bzrlib.commands and options are
58
58
    HELP = ('Loggerhead, a web-based code viewer and server. (default port: %d)' %
59
59
            (DEFAULT_PORT,))
60
60
 
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
61
    def serve_http(transport, host=None, port=None, inet=None):
73
 
        from paste.httpexceptions import HTTPExceptionHandler
74
 
        from paste.httpserver import serve
75
 
 
76
62
        # loggerhead internal code will try to 'import loggerhead', so
77
63
        # let's put it on the path if we can't find it in the existing path
78
64
        try:
79
 
            import loggerhead.apps.transport
 
65
            import loggerhead
80
66
        except ImportError:
81
67
            import os.path, sys
82
68
            sys.path.append(os.path.dirname(__file__))
83
69
 
84
70
        from loggerhead.apps.transport import BranchesFromTransportRoot
85
71
        from loggerhead.config import LoggerheadConfig
86
 
 
 
72
        from paste.httpexceptions import HTTPExceptionHandler
 
73
        from paste.httpserver import serve
87
74
        if host is None:
88
75
            host = DEFAULT_HOST
89
76
        if port is None:
92
79
        if not transport.is_readonly():
93
80
            argv.insert(0, '--allow-writes')
94
81
        config = LoggerheadConfig(argv)
95
 
        setup_logging(config)
96
82
        app = BranchesFromTransportRoot(transport.base, config)
97
83
        app = HTTPExceptionHandler(app)
98
84
        serve(app, host=host, port=port)