From a9443bf2fae20d8baa55298df85f37e6de434343 Mon Sep 17 00:00:00 2001 From: Per-Kristian Nordnes Date: Fri, 31 May 2024 08:16:15 +0200 Subject: [PATCH 1/2] Add support for XII Transformation Registry 5 Name: XII Transformation Registry 5 Prefix: ixt Namespace: http://www.xbrl.org/inlineXBRL/transformation/2022-02-16 --- xbrl/transformations/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xbrl/transformations/__init__.py b/xbrl/transformations/__init__.py index 8c035b4..098af82 100644 --- a/xbrl/transformations/__init__.py +++ b/xbrl/transformations/__init__.py @@ -18,6 +18,10 @@ Prefix: ixt Namespace: http://www.xbrl.org/inlineXBRL/transformation/2020-02-12 +Name: XII Transformation Registry 5 +Prefix: ixt +Namespace: http://www.xbrl.org/inlineXBRL/transformation/2022-02-16 + Name: SEC Specific Transformation Registry Prefix: ixt-sec Namespace: http://www.sec.gov/inlineXBRL/transformation/2015-08-31 @@ -591,6 +595,8 @@ def normalize(namespace: str, formatCode: str, value: str) -> str: return ixt4[formatCode](value) elif namespace == 'http://www.sec.gov/inlineXBRL/transformation/2015-08-31': return ixt_sec[formatCode](value) + elif namespace == 'http://www.xbrl.org/inlineXBRL/transformation/2022-02-16': + return ixt4[formatCode](value) else: raise RegistryNotSupported(namespace) except KeyError: From f5b2a245af82d176b35e63d998d48ddaa1987b89 Mon Sep 17 00:00:00 2001 From: Manuel Schmidt Date: Sat, 6 Jul 2024 11:16:19 +0200 Subject: [PATCH 2/2] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..c136d39 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,14 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**XBRL document** +Please provide a link to the XBRL document(s) with which you have encountered the issue + +**Describe the bug** +A clear and concise description of what the bug is.