~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead

  • Committer: Martin Pool
  • Date: 2009-01-23 22:36:38 UTC
  • mto: This revision was merged to the branch mainline in revision 298.
  • Revision ID: mbp@sourcefrog.net-20090123223638-s57mqtpu4um3stes
Act as a plugin only when loaded by bzr; update docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import sys
24
24
import urlparse
25
25
 
26
 
from bzrlib.plugin import load_plugins
27
26
from bzrlib.util.configobj.configobj import ConfigObj
28
27
 
29
28
from paste import httpserver
116
115
        def app(environ, start_response, orig=app):
117
116
            environ['SCRIPT_NAME'] = path
118
117
            environ['HTTP_HOST'] = netloc
119
 
            environ['wsgi.url_scheme'] = scheme
120
118
            return orig(environ, start_response)
121
119
 
122
 
    load_plugins()
123
 
 
124
120
    try:
125
121
        httpserver.serve(
126
122
            app, host=server_host, port=server_port,