Switch to new website

This commit is contained in:
Unrud 2020-03-02 03:04:37 +01:00
parent c1720ee27a
commit 01f8e976e1
88 changed files with 3 additions and 8831 deletions

View file

@ -22,7 +22,6 @@ GIT_CONFIG = {"protocol.version": "2",
"user.name": "Github Actions"}
COMMIT_MESSAGE = "Generate documentation"
DOCUMENTATION_SRC = "DOCUMENTATION.md"
TARGET_DIR = "beta"
SHIFT_HEADING = 1
TOOLS_PATH = os.path.dirname(__file__)
TEMPLATE_INDEX_PATH = os.path.join(TOOLS_PATH, "template-index.html")
@ -150,19 +149,18 @@ def main():
else:
branches.remove(branch)
checkout(target_branch)
os.makedirs(TARGET_DIR, exist_ok=True)
for path in glob.iglob(os.path.join(TARGET_DIR, "*.html")):
for path in glob.iglob("*.html"):
run_git("rm", "--", path)
branches, default_branch = sort_branches(branches)
branches_pretty = [pretty_branch_name(b) for b in branches]
default_branch_pretty = pretty_branch_name(default_branch)
for branch, src_path in branch_docs.items():
branch_pretty = pretty_branch_name(branch)
to_path = os.path.join(TARGET_DIR, "%s.html" % branch_pretty)
to_path = "%s.html" % branch_pretty
convert_doc(src_path, to_path, branch_pretty, branches_pretty)
run_git("add", "--", to_path)
if default_branch_pretty:
index_path = os.path.join(TARGET_DIR, "index.html")
index_path = "index.html"
with open(index_path, "w") as f:
f.write(make_index_html(default_branch_pretty))
run_git("add", "--", index_path)