mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Add optionals support to extract dependencies tool, Add more checks if folders are present (#4394)
This commit is contained in:
parent
87b3308b0f
commit
fda10f0e7b
@ -30,10 +30,12 @@ def main():
|
|||||||
script_path = os.path.realpath(__file__)
|
script_path = os.path.realpath(__file__)
|
||||||
project_path = os.path.dirname(os.path.dirname(script_path))
|
project_path = os.path.dirname(os.path.dirname(script_path))
|
||||||
addons_path = os.path.join(project_path, "addons")
|
addons_path = os.path.join(project_path, "addons")
|
||||||
|
optionals_path = os.path.join(project_path, "optionals")
|
||||||
|
|
||||||
if "--acex" in sys.argv:
|
if "--acex" in sys.argv:
|
||||||
projectx_path = sys.argv[sys.argv.index("--acex") + 1]
|
projectx_path = sys.argv[sys.argv.index("--acex") + 1]
|
||||||
addonsx_path = os.path.join(projectx_path, "addons")
|
addonsx_path = os.path.join(projectx_path, "addons")
|
||||||
|
optionalsx_path = os.path.join(projectx_path, "optionals")
|
||||||
|
|
||||||
# Documentation paths
|
# Documentation paths
|
||||||
include_path = os.path.join(project_path, "docs", "_includes")
|
include_path = os.path.join(project_path, "docs", "_includes")
|
||||||
@ -47,14 +49,20 @@ def main():
|
|||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
open(dependencies_path, "w", newline="\n").close()
|
open(dependencies_path, "w", newline="\n").close()
|
||||||
addons = next(os.walk(addons_path))[1]
|
if os.path.exists(addons_path):
|
||||||
|
addons = next(os.walk(addons_path))[1]
|
||||||
|
if os.path.exists(optionals_path):
|
||||||
|
addons += ["."] + next(os.walk(optionals_path))[1]
|
||||||
|
|
||||||
dependencies_path_current = dependencies_path
|
dependencies_path_current = dependencies_path
|
||||||
addons_path_current = addons_path
|
addons_path_current = addons_path
|
||||||
|
|
||||||
if "--acex" in sys.argv:
|
if "--acex" in sys.argv:
|
||||||
open(dependenciesx_path, "w", newline="\n").close()
|
open(dependenciesx_path, "w", newline="\n").close()
|
||||||
addons.append(".")
|
if os.path.exists(addonsx_path):
|
||||||
addons += next(os.walk(addonsx_path))[1]
|
addons += [".."] + next(os.walk(addonsx_path))[1]
|
||||||
|
if os.path.exists(optionalsx_path):
|
||||||
|
addons += ["."] + next(os.walk(optionalsx_path))[1]
|
||||||
|
|
||||||
# Iterate through folders in the addons directories
|
# Iterate through folders in the addons directories
|
||||||
for folder in addons:
|
for folder in addons:
|
||||||
@ -62,8 +70,16 @@ def main():
|
|||||||
if folder == "main":
|
if folder == "main":
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Change to ACEX list on "." separator
|
# Change to optionals list on "." separator
|
||||||
if folder == ".":
|
if folder == ".":
|
||||||
|
if addons_path_current == addons_path:
|
||||||
|
addons_path_current = optionals_path
|
||||||
|
else:
|
||||||
|
addons_path_current = optionalsx_path
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Change to ACEX list on ".." separator
|
||||||
|
if folder == "..":
|
||||||
dependencies_path_current = dependenciesx_path
|
dependencies_path_current = dependenciesx_path
|
||||||
addons_path_current = addonsx_path
|
addons_path_current = addonsx_path
|
||||||
continue
|
continue
|
||||||
@ -97,22 +113,22 @@ def main():
|
|||||||
data += get_dependencies(line)
|
data += get_dependencies(line)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
data = "`, `".join(data)
|
data = "`, `".join(data)
|
||||||
data = "`{}`".format(data)
|
data = "`{}`".format(data)
|
||||||
|
|
||||||
jekyll_statement = "".join([
|
jekyll_statement = "".join([
|
||||||
"{% if include.component == \"" + folder + "\" %}\n",
|
"{% if include.component == \"" + folder + "\" %}\n",
|
||||||
"{}\n".format(data),
|
"{}\n".format(data),
|
||||||
"{% endif %}\n"
|
"{% endif %}\n"
|
||||||
])
|
])
|
||||||
|
|
||||||
with open(dependencies_path_current, "a", newline="\n") as file:
|
with open(dependencies_path_current, "a", newline="\n") as file:
|
||||||
file.writelines([jekyll_statement, "\n"])
|
file.writelines([jekyll_statement, "\n"])
|
||||||
|
|
||||||
if "--markdown" not in sys.argv:
|
if "--markdown" not in sys.argv:
|
||||||
print("{}: {}".format(folder,data))
|
print("{}: {}".format(folder,data))
|
||||||
else:
|
else:
|
||||||
print(jekyll_statement)
|
print(jekyll_statement)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
Reference in New Issue
Block a user