~launchpad-pqm/launchpad/devel

1867 by Canonical.com Patch Queue Manager
Reviewed Claim GPG key, stubed keyserver, minor improves on GpgHandler and pagetest review r=jamesh,stub
1
# Copyright 2004-2005 Canonical Ltd.  All rights reserved.
2
3
# Twisted Application Configuration file.
4
# Use with "twistd2.3 -y <file.tac>", e.g. "twistd -noy server.tac"
5
6
from twisted.application import service, internet, strports
7
from twisted.web import server
8
9
from canonical.config import config
2240 by Canonical.com Patch Queue Manager
My librarian-cleanups branch, held up by baz confusion. r=BjornT
10
from canonical.launchpad.daemons import tachandler
1867 by Canonical.com Patch Queue Manager
Reviewed Claim GPG key, stubed keyserver, minor improves on GpgHandler and pagetest review r=jamesh,stub
11
12
from canonical.zeca import Zeca, KeyServer, LookUp
13
2098 by Canonical.com Patch Queue Manager
[r=mpt,jamesh,stub] New GPG/CoC features, new key validation workflow, encrypt/decrypt support, reviewed UI and GPGKey.revoked renamed to active.
14
root = config.zeca.root
15
1867 by Canonical.com Patch Queue Manager
Reviewed Claim GPG key, stubed keyserver, minor improves on GpgHandler and pagetest review r=jamesh,stub
16
application = service.Application('Zeca')
17
zecaService = service.IServiceCollection(application)
18
2240 by Canonical.com Patch Queue Manager
My librarian-cleanups branch, held up by baz confusion. r=BjornT
19
# Service that announces when the daemon is ready
20
tachandler.ReadyService().setServiceParent(zecaService)
21
1867 by Canonical.com Patch Queue Manager
Reviewed Claim GPG key, stubed keyserver, minor improves on GpgHandler and pagetest review r=jamesh,stub
22
zeca = Zeca()
23
keyserver = KeyServer()
2098 by Canonical.com Patch Queue Manager
[r=mpt,jamesh,stub] New GPG/CoC features, new key validation workflow, encrypt/decrypt support, reviewed UI and GPGKey.revoked renamed to active.
24
keyserver.putChild('lookup', LookUp(root))
1867 by Canonical.com Patch Queue Manager
Reviewed Claim GPG key, stubed keyserver, minor improves on GpgHandler and pagetest review r=jamesh,stub
25
zeca.putChild('pks', keyserver)
26
    
27
site = server.Site(zeca)
28
site.displayTracebacks = False
29
strports.service('11371', site).setServiceParent(zecaService)