Go to the source code of this file.
|
| build.level |
|
| build.fmt |
|
| build.datefmt |
|
| build.TOOL_DIR = os.path.dirname(os.path.realpath(__file__)) |
|
| build.SDK_DIR = os.path.relpath(os.path.join(TOOL_DIR, '..', '..', '..', '..')) |
|
| build.WIKI_SOURCE_DIR = os.path.join(SDK_DIR, 'runtime', 'docs') |
|
| build.STYLES_DIR = os.path.relpath(os.path.join(TOOL_DIR, '..', 'styles')) |
|
| build.STYLES_INCLUDES_DIR = os.path.join(STYLES_DIR, 'includes') |
|
| build.TEMPLATES_DIR = os.path.relpath(os.path.join(TOOL_DIR, '..', 'templates')) |
|
| build.TEMPLATES_INCLUDES_DIR = os.path.join(TEMPLATES_DIR, 'includes') |
|
string | build.PAGE_TEMPLATE = 'page.html' |
|
string | build.OUTPUT_DIR = '/tmp/dart-vm-wiki' |
|
| build.OUTPUT_CSS_DIR = os.path.join(OUTPUT_DIR, 'css') |
|
| build.ignore_errors |
|
| build.exist_ok |
|
| build.parser = argparse.ArgumentParser() |
|
| build.dest |
|
| build.action |
|
| build.default |
|
| build.deploy |
|
| build.args = parser.parse_args() |
|
| build.is_dev_mode = not args.deploy |
|
| build.deployment_root = args.deployment_root |
|
| build.jinja2_env |
|
| build.xref_extension = XrefExtension() |
|