2011-01-21 08:04:29 +00:00
|
|
|
|
|
|
|
# This checks that we can import the right versions of all dependencies.
|
|
|
|
# Import this first to suppress deprecation warnings.
|
|
|
|
import allmydata
|
|
|
|
|
|
|
|
# nevow requires all these for its voodoo module import time adaptor registrations
|
|
|
|
from nevow import accessors, appserver, static, rend, url, util, query, i18n, flat
|
|
|
|
from nevow import guard, stan, testutil, context
|
|
|
|
from nevow.flat import flatmdom, flatstan, twist
|
|
|
|
from formless import webform, processors, annotate, iformless
|
|
|
|
from decimal import Decimal
|
|
|
|
from xml.dom import minidom
|
|
|
|
|
|
|
|
import allmydata.web
|
|
|
|
|
|
|
|
# junk to appease pyflakes's outrage
|
|
|
|
[
|
|
|
|
accessors, appserver, static, rend, url, util, query, i18n, flat, guard, stan, testutil,
|
|
|
|
context, flatmdom, flatstan, twist, webform, processors, annotate, iformless, Decimal,
|
2015-07-17 21:03:53 +00:00
|
|
|
minidom, allmydata,
|
2011-01-21 08:04:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
from allmydata.scripts import runner
|
|
|
|
|
|
|
|
runner.run()
|