arelle-release 2.37.16__py3-none-any.whl → 2.37.18__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/ModelFormulaObject.py +1 -1
- arelle/_version.py +2 -2
- arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +18 -2
- arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +18 -2
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +1 -1
- {arelle_release-2.37.16.dist-info → arelle_release-2.37.18.dist-info}/METADATA +1 -1
- {arelle_release-2.37.16.dist-info → arelle_release-2.37.18.dist-info}/RECORD +12 -12
- tests/resources/conformance_suites/dba/tm/tm30-invalid.xhtml +0 -1
- {arelle_release-2.37.16.dist-info → arelle_release-2.37.18.dist-info}/WHEEL +0 -0
- {arelle_release-2.37.16.dist-info → arelle_release-2.37.18.dist-info}/entry_points.txt +0 -0
- {arelle_release-2.37.16.dist-info → arelle_release-2.37.18.dist-info}/licenses/LICENSE.md +0 -0
- {arelle_release-2.37.16.dist-info → arelle_release-2.37.18.dist-info}/top_level.txt +0 -0
arelle/ModelFormulaObject.py
CHANGED
|
@@ -1240,7 +1240,7 @@ class ModelConceptDataType(ModelConceptFilterWithQnameExpression):
|
|
|
1240
1240
|
return set(fact for fact in facts
|
|
1241
1241
|
for qn in (self.evalQname(xpCtx,fact),)
|
|
1242
1242
|
for c in (fact.concept,)
|
|
1243
|
-
if c is not None and cmplmt ^ (c.typeQname == qn or (notStrict and c.type.isDerivedFrom(qn))))
|
|
1243
|
+
if c is not None and cmplmt ^ (c.typeQname == qn or (notStrict and c.type is not None and c.type.isDerivedFrom(qn))))
|
|
1244
1244
|
|
|
1245
1245
|
@property
|
|
1246
1246
|
def propertyView(self):
|
arelle/_version.py
CHANGED
|
@@ -790,9 +790,25 @@ def validateXbrlFinally(val: ValidateXbrl, *args: Any, **kwargs: Any) -> None:
|
|
|
790
790
|
unreportedLbElts.add(to)
|
|
791
791
|
elif arcrole in (hc_all, domainMember, dimensionDomain):
|
|
792
792
|
# all primary items
|
|
793
|
-
if
|
|
793
|
+
if (
|
|
794
|
+
fr is not None
|
|
795
|
+
and fr.type is not None
|
|
796
|
+
and not fr.isAbstract
|
|
797
|
+
and rel.isUsable
|
|
798
|
+
and fr not in conceptsUsed
|
|
799
|
+
and isExtension(val, rel)
|
|
800
|
+
and not fr.type.isDomainItemType
|
|
801
|
+
):
|
|
794
802
|
unreportedLbElts.add(fr)
|
|
795
|
-
if
|
|
803
|
+
if (
|
|
804
|
+
to is not None
|
|
805
|
+
and to.type is not None
|
|
806
|
+
and not to.isAbstract
|
|
807
|
+
and rel.isUsable
|
|
808
|
+
and to not in conceptsUsed
|
|
809
|
+
and isExtension(val, rel)
|
|
810
|
+
and not to.type.isDomainItemType
|
|
811
|
+
):
|
|
796
812
|
unreportedLbElts.add(to)
|
|
797
813
|
reportedEltsNotInLb.discard(fr)
|
|
798
814
|
reportedEltsNotInLb.discard(to)
|
|
@@ -871,9 +871,25 @@ def validateXbrlFinally(val: ValidateXbrl, *args: Any, **kwargs: Any) -> None:
|
|
|
871
871
|
unreportedLbLocs.add(rel.toLocator)
|
|
872
872
|
elif arcrole in (hc_all, domainMember, dimensionDomain):
|
|
873
873
|
# all primary items
|
|
874
|
-
if
|
|
874
|
+
if (
|
|
875
|
+
fr is not None
|
|
876
|
+
and fr.type is not None
|
|
877
|
+
and not fr.isAbstract
|
|
878
|
+
and rel.isUsable
|
|
879
|
+
and fr not in conceptsUsed
|
|
880
|
+
and isExtension(val, rel)
|
|
881
|
+
and not fr.type.isDomainItemType
|
|
882
|
+
):
|
|
875
883
|
unreportedLbLocs.add(rel.fromLocator)
|
|
876
|
-
if
|
|
884
|
+
if (
|
|
885
|
+
to is not None
|
|
886
|
+
and to.type is not None
|
|
887
|
+
and not to.isAbstract
|
|
888
|
+
and rel.isUsable
|
|
889
|
+
and to not in conceptsUsed
|
|
890
|
+
and isExtension(val, rel)
|
|
891
|
+
and not to.type.isDomainItemType
|
|
892
|
+
):
|
|
877
893
|
unreportedLbLocs.add(rel.toLocator)
|
|
878
894
|
reportedEltsNotInLb.discard(fr)
|
|
879
895
|
reportedEltsNotInLb.discard(to)
|
|
@@ -306,7 +306,7 @@ class PluginValidationDataExtension(PluginData):
|
|
|
306
306
|
|
|
307
307
|
@lru_cache(1)
|
|
308
308
|
def getIxdsDocBasenames(self, modelXbrl: ModelXbrl) -> set[str]:
|
|
309
|
-
return set(Path(url).name for url in modelXbrl
|
|
309
|
+
return set(Path(url).name for url in getattr(modelXbrl, "ixdsDocUrls", []))
|
|
310
310
|
|
|
311
311
|
def getNoMatchLangFootnotes(self, modelXbrl: ModelXbrl) -> set[ModelInlineFootnote]:
|
|
312
312
|
return self.checkInlineHTMLElements(modelXbrl).noMatchLangFootnotes
|
|
@@ -36,7 +36,7 @@ arelle/LocalViewer.py,sha256=WVrfek_bLeFFxgWITi1EQb6xCQN8O9Ks-ZL16vRncSk,3080
|
|
|
36
36
|
arelle/Locale.py,sha256=aKC1Uaen_dbPGb92kZa_yUoo7On_QtWlvr5H_F9BNXg,33008
|
|
37
37
|
arelle/ModelDocument.py,sha256=Sq6umEdn-aNHjxIpEsXTT7A4V25nGY0JiylSnhr9zSI,130749
|
|
38
38
|
arelle/ModelDtsObject.py,sha256=nvHQs4BDmPxY6mqLiBuqIGRJXyA1EqOEGB2f3S6A6w4,88656
|
|
39
|
-
arelle/ModelFormulaObject.py,sha256
|
|
39
|
+
arelle/ModelFormulaObject.py,sha256=-eb0lBYciEeAvvGduIs3AHGNGrxge9_0g1cVT6UUgvc,122560
|
|
40
40
|
arelle/ModelInstanceObject.py,sha256=JqULoUliBscwWJa7NskIhNVxBqax2ImOSIh0tH6_7q0,74201
|
|
41
41
|
arelle/ModelManager.py,sha256=QUNcD2LC_YyyGFU8bFTSuzIGI1qpOK55KBlQ697Ep1I,11075
|
|
42
42
|
arelle/ModelObject.py,sha256=Rttkhv-PtfneZyDYsG5FDh98BzT97ameTmwNdqFaOv0,18657
|
|
@@ -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=-3_r4ZUS1xK7cB9HCvvE6oT1XuNDXspJhS2A0xIRgvA,515
|
|
127
127
|
arelle/typing.py,sha256=PRe-Fxwr2SBqYYUVPCJ3E7ddDX0_oOISNdT5Q97EbRM,1246
|
|
128
128
|
arelle/api/Session.py,sha256=O8zpg7MJys9uxwwHf8OsSlZxpPdq7A3ONyY39Q4A3Kc,6218
|
|
129
129
|
arelle/archive/CustomLogger.py,sha256=v_JXOCQLDZcfaFWzxC9FRcEf9tQi4rCI4Sx7jCuAVQI,1231
|
|
@@ -366,11 +366,11 @@ arelle/plugin/validate/ESEF/Util.py,sha256=QH3btcGqBpr42M7WSKZLSdNXygZaZLfEiEjlx
|
|
|
366
366
|
arelle/plugin/validate/ESEF/__init__.py,sha256=LL7uYOcGPHgjwTlcfW2oWMqWiqrZ5yABzcKkJZFrZis,20391
|
|
367
367
|
arelle/plugin/validate/ESEF/ESEF_2021/DTS.py,sha256=6Za7BANwwc_egxLCgbgWzwUGOXZv9IF1I7JCkDNt2Tw,26277
|
|
368
368
|
arelle/plugin/validate/ESEF/ESEF_2021/Image.py,sha256=4bnhuy5viBU0viPjb4FhcRRjVVKlNdnKLFdSGg3sZvs,4871
|
|
369
|
-
arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py,sha256=
|
|
369
|
+
arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py,sha256=l4Nl-QuYJlM4WDpg87YjTwMUh05VP7tNq86gLFhWHyE,63380
|
|
370
370
|
arelle/plugin/validate/ESEF/ESEF_2021/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
371
|
arelle/plugin/validate/ESEF/ESEF_Current/DTS.py,sha256=epp-PBh1NJzQqgxUE6C468HmoDc2w3j54rMwfiOAry4,29334
|
|
372
372
|
arelle/plugin/validate/ESEF/ESEF_Current/Image.py,sha256=w36sCTy8QbsuKABjkK6PTWce2A4zFN_rMnEM2wi5WEc,11364
|
|
373
|
-
arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py,sha256=
|
|
373
|
+
arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py,sha256=RDWfo8a36v2Hw6bYij1ZIh0HXuw_rNKa6WwDnkLDPZ8,73642
|
|
374
374
|
arelle/plugin/validate/ESEF/ESEF_Current/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
375
|
arelle/plugin/validate/ESEF/resources/authority-validations.json,sha256=JriLZ45KmUYlQiPbXJCAahobqdrst64Ay77bofZhB5Q,14940
|
|
376
376
|
arelle/plugin/validate/ESEF/resources/config.xml,sha256=t3STU_-QYM7Ay8YwZRPapnohiWVWhjfr4L2Rjx9xN9U,3902
|
|
@@ -378,7 +378,7 @@ arelle/plugin/validate/FERC/__init__.py,sha256=V4fXcFKBsjFFPs9_1NhvDjWpEQCoQM0tR
|
|
|
378
378
|
arelle/plugin/validate/FERC/config.xml,sha256=bn9b8eCqJA1J62rYq1Nz85wJrMGAahVmmnIUQZyerjo,1919
|
|
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
|
-
arelle/plugin/validate/NL/PluginValidationDataExtension.py,sha256=
|
|
381
|
+
arelle/plugin/validate/NL/PluginValidationDataExtension.py,sha256=Jkrri2b_t-bHPGafvppz47eC5fRDNmhztWfKKB0pojI,15960
|
|
382
382
|
arelle/plugin/validate/NL/ValidationPluginExtension.py,sha256=2qvvOqBkgk2LwERTHDuxtrRupYz3yRyhH71XQLbl9F4,15507
|
|
383
383
|
arelle/plugin/validate/NL/__init__.py,sha256=GFM77Mv7OJkLKrZUEB_LmF5x3h4U5J9NsD1lven0N9o,2708
|
|
384
384
|
arelle/plugin/validate/NL/resources/config.xml,sha256=i_ns2wHmQYjhkRItevRR8tzfkl31ASfbWlc5t6pDB-w,1117
|
|
@@ -709,7 +709,7 @@ arelle/utils/validate/ValidationUtil.py,sha256=9vmSvShn-EdQy56dfesyV8JjSRVPj7txr
|
|
|
709
709
|
arelle/utils/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
710
710
|
arelle/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
711
711
|
arelle/webserver/bottle.py,sha256=P-JECd9MCTNcxCnKoDUvGcoi03ezYVOgoWgv2_uH-6M,362
|
|
712
|
-
arelle_release-2.37.
|
|
712
|
+
arelle_release-2.37.18.dist-info/licenses/LICENSE.md,sha256=Q0tn6q0VUbr-NM8916513NCIG8MNzo24Ev-sxMUBRZc,3959
|
|
713
713
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
714
714
|
tests/integration_tests/download_cache.py,sha256=jVMIVICsZjcVc9DCPPu3fCjF9_cWSS3tqSynhFs3oAM,4097
|
|
715
715
|
tests/integration_tests/integration_test_util.py,sha256=H7mncbv0T9ZeVyrtk9Hohe3k6jgcYykHkt-LGE-Q9aQ,10270
|
|
@@ -1071,7 +1071,7 @@ tests/resources/conformance_suites/dba/tm/tm28-invalid.xhtml,sha256=TuR4isQJCQvJ
|
|
|
1071
1071
|
tests/resources/conformance_suites/dba/tm/tm28-testcase.xml,sha256=oFIhUCSk58S8XSHdtf6bCedSr7oDIxpqwBJFOqsdszo,894
|
|
1072
1072
|
tests/resources/conformance_suites/dba/tm/tm29-invalid.xhtml,sha256=1z4WbxWGNaNhZ9aNoTMxiXMwAfKtdzt4-hb_hGJk-HQ,1651782
|
|
1073
1073
|
tests/resources/conformance_suites/dba/tm/tm29-testcase.xml,sha256=j5ou77s-4lkdLlWVSvMH3OKQueI2NjEepagPDzKjRug,890
|
|
1074
|
-
tests/resources/conformance_suites/dba/tm/tm30-invalid.xhtml,sha256=
|
|
1074
|
+
tests/resources/conformance_suites/dba/tm/tm30-invalid.xhtml,sha256=BqP40-cZGjD83wLrKEmIT11cNMUDr322HJ2l7RZBcdk,1652036
|
|
1075
1075
|
tests/resources/conformance_suites/dba/tm/tm30-testcase.xml,sha256=LdJCDmafDCfIAPqQeD-T4RSQDFnlRylLZnPod0BLMvY,846
|
|
1076
1076
|
tests/resources/conformance_suites/dba/tm/tm31-invalid.xhtml,sha256=ils05IvT5LtipWZMuIkkvgXchQHvi_o2PLYWL9ea10M,1652761
|
|
1077
1077
|
tests/resources/conformance_suites/dba/tm/tm31-testcase.xml,sha256=0RheuzXTLFI6M7mxE8cZg7O2G0cni4scDwfvz1uT_mQ,850
|
|
@@ -1559,8 +1559,8 @@ tests/unit_tests/arelle/oim/test_load.py,sha256=NxiUauQwJVfWAHbbpsMHGSU2d3Br8Pki
|
|
|
1559
1559
|
tests/unit_tests/arelle/plugin/test_plugin_imports.py,sha256=bdhIs9frAnFsdGU113yBk09_jis-z43dwUItMFYuSYM,1064
|
|
1560
1560
|
tests/unit_tests/arelle/plugin/validate/ESEF/ESEF_Current/test_validate_css_url.py,sha256=XHABmejQt7RlZ0udh7v42f2Xb2STGk_fSaIaJ9i2xo0,878
|
|
1561
1561
|
tests/unit_tests/arelle/utils/validate/test_decorator.py,sha256=ZS8FqIY1g-2FCbjF4UYm609dwViax6qBMRJSi0vfuhY,2482
|
|
1562
|
-
arelle_release-2.37.
|
|
1563
|
-
arelle_release-2.37.
|
|
1564
|
-
arelle_release-2.37.
|
|
1565
|
-
arelle_release-2.37.
|
|
1566
|
-
arelle_release-2.37.
|
|
1562
|
+
arelle_release-2.37.18.dist-info/METADATA,sha256=VR8B9dKSD5XRj8ZAzRjozLUWFp9VwkePlxRax3CfW74,9065
|
|
1563
|
+
arelle_release-2.37.18.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1564
|
+
arelle_release-2.37.18.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
|
|
1565
|
+
arelle_release-2.37.18.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
|
|
1566
|
+
arelle_release-2.37.18.dist-info/RECORD,,
|
|
@@ -6516,7 +6516,6 @@
|
|
|
6516
6516
|
<ix:nonNumeric name="gsd:DateOfGeneralMeeting" contextRef="ctx-1" xml:lang="en">2024-03-27</ix:nonNumeric>
|
|
6517
6517
|
<ix:nonNumeric name="gsd:DateOfGeneralMeeting" contextRef="ctx-1" xml:lang="da">2024-06-27</ix:nonNumeric>
|
|
6518
6518
|
<ix:nonNumeric name="fsa:ClassOfReportingEntity" contextRef="ctx-1">Reporting class C, medium-size enterprise</ix:nonNumeric>
|
|
6519
|
-
<ix:nonNumeric name="sob:DateOfApprovalOfAnnualReport" contextRef="ctx-1">2024-03-27</ix:nonNumeric>
|
|
6520
6519
|
<ix:nonNumeric name="gsd:IdentificationNumberCvrOfSubmittingEnterprise" contextRef="ctx-1">32570119</ix:nonNumeric>
|
|
6521
6520
|
<ix:nonNumeric name="gsd:NameOfSubmittingEnterprise" contextRef="ctx-1" xml:lang="en">Maersk Training A/S</ix:nonNumeric>
|
|
6522
6521
|
<ix:nonNumeric name="gsd:AddressOfSubmittingEnterpriseStreetAndNumber" contextRef="ctx-1" xml:lang="en">Dyrekredsen 4</ix:nonNumeric>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|