diff --git a/manage.py b/manage.py index 4aaeaca..a81243d 100644 --- a/manage.py +++ b/manage.py @@ -12,8 +12,15 @@ from ocdskit.mapping_sheet import mapping_sheet from xlsxwriter.utility import xl_col_to_name -RDLS_SCHEMA_URL = "https://docs.riskdatalibrary.org/en/0__2__0/rdls_schema.json" -RDLS_DOCS_URL = "https://docs.riskdatalibrary.org/" +RDLS_BASE_URL = "https://docs.riskdatalibrary.org" +RDLS_LANGUAGE = "en" + +RDLS_DOCS_VERSION = "latest" +RDLS_DOCS_URL = f"{RDLS_BASE_URL}/{RDLS_LANGUAGE}/{RDLS_DOCS_VERSION}" + +RDLS_SCHEMA_VERSION = "0__2__0" +RDLS_SCHEMA_URL = f"{RDLS_BASE_URL}/{RDLS_LANGUAGE}/{RDLS_SCHEMA_VERSION}/rdls_schema.json" + # https://flatten-tool.readthedocs.io/en/latest/create-template/#all-create-template-options TRUNCATION_LENGTH = 10 diff --git a/templates/rdls_template.xlsx b/templates/rdls_template.xlsx index ab802d0..3936807 100644 Binary files a/templates/rdls_template.xlsx and b/templates/rdls_template.xlsx differ diff --git a/templates/rdls_template_exposure.xlsx b/templates/rdls_template_exposure.xlsx index 8a14a9f..1ebd09b 100644 Binary files a/templates/rdls_template_exposure.xlsx and b/templates/rdls_template_exposure.xlsx differ diff --git a/templates/rdls_template_hazard.xlsx b/templates/rdls_template_hazard.xlsx index 4e3488a..e0bbe66 100644 Binary files a/templates/rdls_template_hazard.xlsx and b/templates/rdls_template_hazard.xlsx differ diff --git a/templates/rdls_template_loss.xlsx b/templates/rdls_template_loss.xlsx index d5ace13..1c433c2 100644 Binary files a/templates/rdls_template_loss.xlsx and b/templates/rdls_template_loss.xlsx differ diff --git a/templates/rdls_template_vulnerability.xlsx b/templates/rdls_template_vulnerability.xlsx index aec7e24..8c82fab 100644 Binary files a/templates/rdls_template_vulnerability.xlsx and b/templates/rdls_template_vulnerability.xlsx differ