arelle-release 2.37.9__py3-none-any.whl → 2.37.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of arelle-release might be problematic. Click here for more details.
- arelle/_version.py +2 -2
- arelle/oim/Load.py +15 -1
- arelle/plugin/validate/NL/ValidationPluginExtension.py +12 -6
- {arelle_release-2.37.9.dist-info → arelle_release-2.37.10.dist-info}/METADATA +1 -1
- {arelle_release-2.37.9.dist-info → arelle_release-2.37.10.dist-info}/RECORD +9 -9
- {arelle_release-2.37.9.dist-info → arelle_release-2.37.10.dist-info}/WHEEL +1 -1
- {arelle_release-2.37.9.dist-info → arelle_release-2.37.10.dist-info}/entry_points.txt +0 -0
- {arelle_release-2.37.9.dist-info → arelle_release-2.37.10.dist-info}/licenses/LICENSE.md +0 -0
- {arelle_release-2.37.9.dist-info → arelle_release-2.37.10.dist-info}/top_level.txt +0 -0
arelle/_version.py
CHANGED
arelle/oim/Load.py
CHANGED
|
@@ -839,7 +839,21 @@ def _loadFromOIM(cntlr, error, warning, modelXbrl, oimFile, mappedUri):
|
|
|
839
839
|
filepath = modelXbrl.modelManager.cntlr.webCache.getfilename(mappedUrl) # , reload=reloadCache, checkModifiedTime=kwargs.get("checkModifiedTime",False))
|
|
840
840
|
if filepath:
|
|
841
841
|
url = modelXbrl.modelManager.cntlr.webCache.normalizeUrl(filepath)
|
|
842
|
-
if filepath
|
|
842
|
+
if filepath is None:
|
|
843
|
+
if extendingFile is None:
|
|
844
|
+
raise OIMException(
|
|
845
|
+
"oime:unresolvableFile",
|
|
846
|
+
_("Unable to resolve file %(oimFile)s. A taxonomy package may be required to load this report."),
|
|
847
|
+
oimFile=oimFile,
|
|
848
|
+
)
|
|
849
|
+
else:
|
|
850
|
+
raise OIMException(
|
|
851
|
+
"xbrlce:unresolvableBaseMetadataFile",
|
|
852
|
+
_("Unable to resolve extended metadata file %(extendingFile)s, referenced from %(oimFile)s. A taxonomy package may be required to load this report."),
|
|
853
|
+
extendingFile=extendingFile,
|
|
854
|
+
oimFile=oimFile,
|
|
855
|
+
)
|
|
856
|
+
if filepath.endswith(".csv") or ("metadata" in filepath and filepath.endswith(".json")):
|
|
843
857
|
errPrefix = "xbrlce"
|
|
844
858
|
else:
|
|
845
859
|
errPrefix = "xbrlje"
|
|
@@ -23,7 +23,6 @@ class ValidationPluginExtension(ValidationPlugin):
|
|
|
23
23
|
jenvNamespace = 'http://www.nltaxonomie.nl/nt16/jenv/20211208/dictionary/jenv-bw2-data'
|
|
24
24
|
kvkINamespace = 'http://www.nltaxonomie.nl/nt16/kvk/20211208/dictionary/kvk-data'
|
|
25
25
|
nlTypesNamespace = 'http://www.nltaxonomie.nl/nt16/sbr/20210301/dictionary/nl-types'
|
|
26
|
-
titel9Namespace = ''
|
|
27
26
|
entrypointRoot = 'http://www.nltaxonomie.nl/nt16/kvk/20211208/entrypoints/'
|
|
28
27
|
entrypoints = {entrypointRoot + e for e in [
|
|
29
28
|
'kvk-rpt-jaarverantwoording-2021-ifrs-full.xsd',
|
|
@@ -60,7 +59,6 @@ class ValidationPluginExtension(ValidationPlugin):
|
|
|
60
59
|
jenvNamespace = 'http://www.nltaxonomie.nl/nt17/jenv/20221214/dictionary/jenv-bw2-data'
|
|
61
60
|
kvkINamespace = 'http://www.nltaxonomie.nl/nt17/kvk/20221214/dictionary/kvk-data'
|
|
62
61
|
nlTypesNamespace = 'http://www.nltaxonomie.nl/nt17/sbr/20220301/dictionary/nl-types'
|
|
63
|
-
titel9Namespace = ''
|
|
64
62
|
entrypointRoot = 'http://www.nltaxonomie.nl/nt17/kvk/20221214/entrypoints/'
|
|
65
63
|
entrypoints = {entrypointRoot + e for e in [
|
|
66
64
|
'kvk-rpt-jaarverantwoording-2022-ifrs-full.xsd',
|
|
@@ -98,7 +96,6 @@ class ValidationPluginExtension(ValidationPlugin):
|
|
|
98
96
|
jenvNamespace = 'http://www.nltaxonomie.nl/nt18/jenv/20231213/dictionary/jenv-bw2-data'
|
|
99
97
|
kvkINamespace = 'http://www.nltaxonomie.nl/nt18/kvk/20231213/dictionary/kvk-data'
|
|
100
98
|
nlTypesNamespace = 'http://www.nltaxonomie.nl/nt18/sbr/20230301/dictionary/nl-types'
|
|
101
|
-
titel9Namespace = ''
|
|
102
99
|
entrypointRoot = 'http://www.nltaxonomie.nl/nt18/kvk/20231213/entrypoints/'
|
|
103
100
|
entrypoints = {entrypointRoot + e for e in [
|
|
104
101
|
'kvk-rpt-jaarverantwoording-2023-ifrs-full.xsd',
|
|
@@ -132,11 +129,10 @@ class ValidationPluginExtension(ValidationPlugin):
|
|
|
132
129
|
'kvk-rpt-jaarverantwoording-2023-nlgaap-verzekeringsmaatschappijen.xsd',
|
|
133
130
|
'kvk-rpt-jaarverantwoording-2023-nlgaap-zorginstellingen.xsd',
|
|
134
131
|
]}
|
|
135
|
-
elif disclosureSystem == DISCLOSURE_SYSTEM_NT19
|
|
132
|
+
elif disclosureSystem == DISCLOSURE_SYSTEM_NT19:
|
|
136
133
|
jenvNamespace = 'http://www.nltaxonomie.nl/nt19/jenv/20241211/dictionary/jenv-bw2-data'
|
|
137
134
|
kvkINamespace = 'http://www.nltaxonomie.nl/nt19/kvk/20241211/dictionary/kvk-data'
|
|
138
135
|
nlTypesNamespace = 'http://www.nltaxonomie.nl/nt19/sbr/20240301/dictionary/nl-types'
|
|
139
|
-
titel9Namespace = 'https://www.nltaxonomie.nl/bw2-titel9/2024-12-31/bw2-titel9-cor' if disclosureSystem == DISCLOSURE_SYSTEM_NL_INLINE_2024 else ''
|
|
140
136
|
entrypointRoot = 'http://www.nltaxonomie.nl/nt19/kvk/20241211/entrypoints/'
|
|
141
137
|
entrypoints = {entrypointRoot + e for e in [
|
|
142
138
|
'kvk-rpt-jaarverantwoording-2024-ifrs-full.xsd',
|
|
@@ -170,11 +166,21 @@ class ValidationPluginExtension(ValidationPlugin):
|
|
|
170
166
|
'kvk-rpt-jaarverantwoording-2024-nlgaap-verzekeringsmaatschappijen.xsd',
|
|
171
167
|
'kvk-rpt-jaarverantwoording-2024-nlgaap-zorginstellingen.xsd',
|
|
172
168
|
]}
|
|
169
|
+
elif disclosureSystem == DISCLOSURE_SYSTEM_NL_INLINE_2024:
|
|
170
|
+
jenvNamespace = 'https://www.nltaxonomie.nl/bw2-titel9/2024-12-31/bw2-titel9-cor'
|
|
171
|
+
kvkINamespace = None
|
|
172
|
+
nlTypesNamespace = None
|
|
173
|
+
entrypointRoot = 'http://www.nltaxonomie.nl/kvk/2024-12-31/'
|
|
174
|
+
entrypoints = {entrypointRoot + e for e in [
|
|
175
|
+
'kvk-annual-report-ifrs-ext.xsd',
|
|
176
|
+
'kvk-annual-report-nlgaap-ext.xsd',
|
|
177
|
+
'kvk-annual-report-other-gaap.xsd',
|
|
178
|
+
]}
|
|
173
179
|
else:
|
|
174
180
|
raise ValueError(f'Invalid NL disclosure system: {disclosureSystem}')
|
|
175
181
|
return PluginValidationDataExtension(
|
|
176
182
|
self.name,
|
|
177
|
-
chamberOfCommerceRegistrationNumberQn=qname(f'{{{
|
|
183
|
+
chamberOfCommerceRegistrationNumberQn=qname(f'{{{jenvNamespace}}}ChamberOfCommerceRegistrationNumber'),
|
|
178
184
|
documentAdoptionDateQn=qname(f'{{{jenvNamespace}}}DocumentAdoptionDate'),
|
|
179
185
|
documentAdoptionStatusQn=qname(f'{{{jenvNamespace}}}DocumentAdoptionStatus'),
|
|
180
186
|
documentResubmissionUnsurmountableInaccuraciesQn=qname(f'{{{kvkINamespace}}}DocumentResubmissionDueToUnsurmountableInaccuracies'),
|
|
@@ -123,7 +123,7 @@ arelle/XmlValidateConst.py,sha256=U_wN0Q-nWKwf6dKJtcu_83FXPn9c6P8JjzGA5b0w7P0,33
|
|
|
123
123
|
arelle/XmlValidateParticles.py,sha256=Mn6vhFl0ZKC_vag1mBwn1rH_x2jmlusJYqOOuxFPO2k,9231
|
|
124
124
|
arelle/XmlValidateSchema.py,sha256=6frtZOc1Yrx_5yYF6V6oHbScnglWrVbWr6xW4EHtLQI,7428
|
|
125
125
|
arelle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
|
-
arelle/_version.py,sha256=
|
|
126
|
+
arelle/_version.py,sha256=iV7pCtMGFdowMnJ9Enx0EMr8MXyKfpbuw_YEjFfm9Rc,515
|
|
127
127
|
arelle/typing.py,sha256=Ct5lrNKRow_o9CraMEXNza8nFsJ_iGIKoUeGfPs2dxI,1084
|
|
128
128
|
arelle/api/Session.py,sha256=O8zpg7MJys9uxwwHf8OsSlZxpPdq7A3ONyY39Q4A3Kc,6218
|
|
129
129
|
arelle/archive/CustomLogger.py,sha256=v_JXOCQLDZcfaFWzxC9FRcEf9tQi4rCI4Sx7jCuAVQI,1231
|
|
@@ -294,7 +294,7 @@ arelle/model/CommentBase.py,sha256=NtC2lFd9Mt1y7kzWwrpvexwqBdfSe1nvGFiIJeio3rU,1
|
|
|
294
294
|
arelle/model/ElementBase.py,sha256=pZX836d4-s-OvzPMUusvEDezI9D_6YKO7_j6iDcUXm4,404
|
|
295
295
|
arelle/model/PIBase.py,sha256=easZ3pKXJ5wq3NFB2pDtBeXNDcjwMAXylpXz6mnumOg,257
|
|
296
296
|
arelle/model/__init__.py,sha256=RLmC1rTus3T_2Vvnu3yHtdw1r0wrZCHZoqxe8BLg_wE,595
|
|
297
|
-
arelle/oim/Load.py,sha256=
|
|
297
|
+
arelle/oim/Load.py,sha256=kqKvs3q6VE6fKxCv9X0kxnyTywKMyC_qGGAB__v51TU,182910
|
|
298
298
|
arelle/oim/Validate.py,sha256=IaBClr2KYMiVC_GKYy4_A9gF7hcnm-lxXpQrDCqIWGs,9012
|
|
299
299
|
arelle/oim/xml/Save.py,sha256=MdaJiGcEo4nbQCX9sRgWfVIoxp6fd2N-wuLiDAS9D-I,607
|
|
300
300
|
arelle/packages/PackageConst.py,sha256=iIIF-Ic8zlMPiiCq3PcV57aWci6ispBtilSG4W7ZW4U,121
|
|
@@ -379,7 +379,7 @@ arelle/plugin/validate/FERC/config.xml,sha256=bn9b8eCqJA1J62rYq1Nz85wJrMGAahVmmn
|
|
|
379
379
|
arelle/plugin/validate/FERC/resources/ferc-utr.xml,sha256=OCRj9IUpdXATCBXKbB71apYx9kxcNtZW-Hq4s-avsRY,2663
|
|
380
380
|
arelle/plugin/validate/NL/DisclosureSystems.py,sha256=kTjpxkgwn58wHCbaLRBInirOy-2cpK9MLWEFJ_193y4,180
|
|
381
381
|
arelle/plugin/validate/NL/PluginValidationDataExtension.py,sha256=dJjfHb3QMK2LlGKTwSz_IxFLYXejFPgLZlVgTPxgFPI,7074
|
|
382
|
-
arelle/plugin/validate/NL/ValidationPluginExtension.py,sha256=
|
|
382
|
+
arelle/plugin/validate/NL/ValidationPluginExtension.py,sha256=2qvvOqBkgk2LwERTHDuxtrRupYz3yRyhH71XQLbl9F4,15507
|
|
383
383
|
arelle/plugin/validate/NL/__init__.py,sha256=99uMv4ESHwyJqA-Xq_hBvHygm0BQ3NxcmAJnVYUkSgg,3104
|
|
384
384
|
arelle/plugin/validate/NL/resources/config.xml,sha256=i_ns2wHmQYjhkRItevRR8tzfkl31ASfbWlc5t6pDB-w,1117
|
|
385
385
|
arelle/plugin/validate/NL/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -707,7 +707,7 @@ arelle/utils/validate/ValidationPlugin.py,sha256=_WeRPXZUTCcSN3FLbFwiAe_2pAUTxZZ
|
|
|
707
707
|
arelle/utils/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
708
708
|
arelle/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
709
709
|
arelle/webserver/bottle.py,sha256=P-JECd9MCTNcxCnKoDUvGcoi03ezYVOgoWgv2_uH-6M,362
|
|
710
|
-
arelle_release-2.37.
|
|
710
|
+
arelle_release-2.37.10.dist-info/licenses/LICENSE.md,sha256=Q0tn6q0VUbr-NM8916513NCIG8MNzo24Ev-sxMUBRZc,3959
|
|
711
711
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
712
712
|
tests/integration_tests/download_cache.py,sha256=jVMIVICsZjcVc9DCPPu3fCjF9_cWSS3tqSynhFs3oAM,4097
|
|
713
713
|
tests/integration_tests/integration_test_util.py,sha256=H7mncbv0T9ZeVyrtk9Hohe3k6jgcYykHkt-LGE-Q9aQ,10270
|
|
@@ -1556,8 +1556,8 @@ tests/unit_tests/arelle/oim/test_load.py,sha256=NxiUauQwJVfWAHbbpsMHGSU2d3Br8Pki
|
|
|
1556
1556
|
tests/unit_tests/arelle/plugin/test_plugin_imports.py,sha256=bdhIs9frAnFsdGU113yBk09_jis-z43dwUItMFYuSYM,1064
|
|
1557
1557
|
tests/unit_tests/arelle/plugin/validate/ESEF/ESEF_Current/test_validate_css_url.py,sha256=XHABmejQt7RlZ0udh7v42f2Xb2STGk_fSaIaJ9i2xo0,878
|
|
1558
1558
|
tests/unit_tests/arelle/utils/validate/test_decorator.py,sha256=ZS8FqIY1g-2FCbjF4UYm609dwViax6qBMRJSi0vfuhY,2482
|
|
1559
|
-
arelle_release-2.37.
|
|
1560
|
-
arelle_release-2.37.
|
|
1561
|
-
arelle_release-2.37.
|
|
1562
|
-
arelle_release-2.37.
|
|
1563
|
-
arelle_release-2.37.
|
|
1559
|
+
arelle_release-2.37.10.dist-info/METADATA,sha256=DFJI_rtWLKg0WZcg8-DGlJjNJStGQ6md6klHzFXc3Vw,9065
|
|
1560
|
+
arelle_release-2.37.10.dist-info/WHEEL,sha256=A8Eltl-h0W-qZDVezsLjjslosEH_pdYC2lQ0JcbgCzs,91
|
|
1561
|
+
arelle_release-2.37.10.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
|
|
1562
|
+
arelle_release-2.37.10.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
|
|
1563
|
+
arelle_release-2.37.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|