extirpate all references the "queen" and "metatracker"

This is a potentially disruptive and potentially ugly change to the code base,
because I renamed the object that serves in both roles from "Queen" to
"IntroducerAndVdrive", which is a bit of an ugly name.

However, I think that clarity is important enough in this release to make this
change.  All unit tests pass.  I'm now darcs recording this patch in order to
pull it to other machines for more testing.
This commit is contained in:
Zooko O'Whielacronx
2007-04-30 09:57:52 -07:00
parent ced1d8189b
commit d19d1058e0
21 changed files with 127 additions and 136 deletions

View File

@ -110,10 +110,10 @@ c.setServiceParent(application)
introducer_tac = """
# -*- python -*-
from allmydata import queen
from allmydata import introducer_and_vdrive
from twisted.application import service
c = queen.Queen()
c = introducer_and_vdrive.IntroducerAndVdrive()
application = service.Application("allmydata_introducer")
c.setServiceParent(application)