arelle-release 2.37.11__py3-none-any.whl → 2.37.12__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/PackageManager.py +1 -1
- arelle/ValidateFilingText.py +3 -3
- arelle/XmlValidate.py +1 -1
- arelle/_version.py +2 -2
- arelle/plugin/validate/CIPC/__init__.py +2 -2
- arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +4 -4
- arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +4 -4
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +7 -9
- arelle/plugin/validate/ROS/rules/ros.py +2 -2
- {arelle_release-2.37.11.dist-info → arelle_release-2.37.12.dist-info}/METADATA +1 -1
- {arelle_release-2.37.11.dist-info → arelle_release-2.37.12.dist-info}/RECORD +15 -15
- {arelle_release-2.37.11.dist-info → arelle_release-2.37.12.dist-info}/WHEEL +0 -0
- {arelle_release-2.37.11.dist-info → arelle_release-2.37.12.dist-info}/entry_points.txt +0 -0
- {arelle_release-2.37.11.dist-info → arelle_release-2.37.12.dist-info}/licenses/LICENSE.md +0 -0
- {arelle_release-2.37.11.dist-info → arelle_release-2.37.12.dist-info}/top_level.txt +0 -0
arelle/PackageManager.py
CHANGED
|
@@ -130,7 +130,7 @@ def _parsePackageMetadata(
|
|
|
130
130
|
try:
|
|
131
131
|
metadataFileContent = filesource.file(metadataFile)[0] # URL in zip, plain file in file system or web
|
|
132
132
|
tree = _parseFile(cntlr, parser, metadataFile, metadataFileContent, TP_XSD)
|
|
133
|
-
except (etree.XMLSyntaxError, etree.DocumentInvalid) as err:
|
|
133
|
+
except (etree.XMLSyntaxError, etree.DocumentInvalid, etree.XMLSchemaError) as err:
|
|
134
134
|
cntlr.addToLog(_("Taxonomy package file syntax error %(error)s"),
|
|
135
135
|
messageArgs={"error": str(err)},
|
|
136
136
|
messageCode="tpe:invalidMetaDataFile",
|
arelle/ValidateFilingText.py
CHANGED
|
@@ -3,7 +3,7 @@ See COPYRIGHT.md for copyright information.
|
|
|
3
3
|
'''
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
#import xml.sax, xml.sax.handler
|
|
6
|
-
from lxml.etree import XML, DTD, SubElement, _ElementTree, _Comment, _ProcessingInstruction, XMLSyntaxError, XMLParser
|
|
6
|
+
from lxml.etree import XML, DTD, SubElement, _ElementTree, _Comment, _ProcessingInstruction, _Entity, XMLSyntaxError, XMLParser
|
|
7
7
|
from dataclasses import dataclass
|
|
8
8
|
from PIL import Image as pilImage
|
|
9
9
|
import os, io, base64
|
|
@@ -604,7 +604,7 @@ def validateTextBlockFacts(modelXbrl):
|
|
|
604
604
|
eltTag = elt.tag
|
|
605
605
|
if isinstance(elt, ModelObject) and elt.namespaceURI == xhtml:
|
|
606
606
|
eltTag = elt.localName
|
|
607
|
-
elif isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction)):
|
|
607
|
+
elif isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction, _Entity)):
|
|
608
608
|
continue # comment or other non-parsed element
|
|
609
609
|
else:
|
|
610
610
|
eltTag = elt.tag
|
|
@@ -730,7 +730,7 @@ def validateHtmlContent(modelXbrl, referenceElt, htmlEltTree, validatedObjectLab
|
|
|
730
730
|
for elt in htmlEltTree.iter():
|
|
731
731
|
if isinstance(elt, ModelObject) and elt.namespaceURI == xhtml:
|
|
732
732
|
eltTag = elt.localName
|
|
733
|
-
elif isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction)):
|
|
733
|
+
elif isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction, _Entity)):
|
|
734
734
|
continue # comment or other non-parsed element
|
|
735
735
|
else:
|
|
736
736
|
eltTag = elt.tag
|
arelle/XmlValidate.py
CHANGED
|
@@ -777,7 +777,7 @@ def lxmlSchemaValidate(modelDocument: ModelDocument, extraSchema : str | None =
|
|
|
777
777
|
file=modelDocument.basename,
|
|
778
778
|
level=logging.ERROR)
|
|
779
779
|
modelDocument.modelXbrl.errors.append(msgCode)
|
|
780
|
-
except etree.XMLSyntaxError as err:
|
|
780
|
+
except (etree.XMLSyntaxError, etree.XMLSchemaError) as err:
|
|
781
781
|
msgCode = "lxml.schemaError"
|
|
782
782
|
cntlr.addToLog(_("XML file syntax error %(error)s"),
|
|
783
783
|
messageArgs={"error": str(err)},
|
arelle/_version.py
CHANGED
|
@@ -12,7 +12,7 @@ Taxonomy packages:
|
|
|
12
12
|
"""
|
|
13
13
|
import os
|
|
14
14
|
import regex as re
|
|
15
|
-
from lxml.etree import _ElementTree, _Comment, _ProcessingInstruction
|
|
15
|
+
from lxml.etree import _ElementTree, _Comment, _ProcessingInstruction, _Entity
|
|
16
16
|
from arelle import ModelDocument, XbrlConst
|
|
17
17
|
from arelle.ModelDtsObject import ModelResource
|
|
18
18
|
from arelle.ModelInstanceObject import ModelFact, ModelInlineFact, ModelInlineFootnote
|
|
@@ -125,7 +125,7 @@ def validateXbrlFinally(val, *args, **kwargs):
|
|
|
125
125
|
eltTag = elt.tag
|
|
126
126
|
if isinstance(elt, ModelObject) and elt.namespaceURI == xhtml:
|
|
127
127
|
eltTag = elt.localName
|
|
128
|
-
elif isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction)):
|
|
128
|
+
elif isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction, _Entity)):
|
|
129
129
|
continue # comment or other non-parsed element
|
|
130
130
|
else:
|
|
131
131
|
eltTag = elt.tag
|
|
@@ -11,7 +11,7 @@ from math import isnan
|
|
|
11
11
|
from typing import Any, cast
|
|
12
12
|
|
|
13
13
|
import regex as re
|
|
14
|
-
from lxml.etree import
|
|
14
|
+
from lxml.etree import _Comment, _Element, _ElementTree, _Entity, _ProcessingInstruction
|
|
15
15
|
|
|
16
16
|
from arelle import LeiUtil, ModelDocument, XbrlConst
|
|
17
17
|
from arelle.ModelDtsObject import ModelConcept
|
|
@@ -275,7 +275,7 @@ def validateXbrlFinally(val: ValidateXbrl, *args: Any, **kwargs: Any) -> None:
|
|
|
275
275
|
elt = cast(Any, uncast_elt)
|
|
276
276
|
|
|
277
277
|
eltTag = elt.tag
|
|
278
|
-
if isinstance(elt, (_ElementTree,
|
|
278
|
+
if isinstance(elt, (_Comment, _ElementTree, _Entity, _ProcessingInstruction)):
|
|
279
279
|
continue # comment or other non-parsed element
|
|
280
280
|
else:
|
|
281
281
|
eltTag = elt.tag
|
|
@@ -726,12 +726,12 @@ def validateXbrlFinally(val: ValidateXbrl, *args: Any, **kwargs: Any) -> None:
|
|
|
726
726
|
_("The xlink:role attribute of a link:footnote and link:footnoteLink element as well as xlink:arcrole attribute of a link:footnoteArc MUST be defined in the XBRL Specification 2.1."),
|
|
727
727
|
modelObject=footnoteRoleErrors)
|
|
728
728
|
|
|
729
|
-
nonStdFootnoteElts = list()
|
|
729
|
+
nonStdFootnoteElts: list[_Element] = list()
|
|
730
730
|
for modelLink in modelXbrl.baseSets[("XBRL-footnotes",None,None,None)]:
|
|
731
731
|
for uncast_elt in modelLink.iterchildren():
|
|
732
732
|
elt = cast(Any, uncast_elt)
|
|
733
733
|
|
|
734
|
-
if isinstance(elt, (_ElementTree,
|
|
734
|
+
if isinstance(elt, (_Comment, _ElementTree, _Entity, _ProcessingInstruction)):
|
|
735
735
|
continue # comment or other non-parsed element
|
|
736
736
|
if elt.qname not in FOOTNOTE_LINK_CHILDREN:
|
|
737
737
|
nonStdFootnoteElts.append(elt)
|
|
@@ -12,7 +12,7 @@ from typing import Any, cast
|
|
|
12
12
|
|
|
13
13
|
import regex as re
|
|
14
14
|
import tinycss2.ast # type: ignore[import-untyped]
|
|
15
|
-
from lxml.etree import
|
|
15
|
+
from lxml.etree import _Comment, _Element, _ElementTree, _Entity, _ProcessingInstruction
|
|
16
16
|
|
|
17
17
|
from arelle import LeiUtil, ModelDocument, XbrlConst
|
|
18
18
|
from arelle.ModelDtsObject import ModelConcept
|
|
@@ -319,7 +319,7 @@ def validateXbrlFinally(val: ValidateXbrl, *args: Any, **kwargs: Any) -> None:
|
|
|
319
319
|
elt = cast(Any, uncast_elt)
|
|
320
320
|
|
|
321
321
|
eltTag = elt.tag
|
|
322
|
-
if isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction,
|
|
322
|
+
if isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction, _Entity)):
|
|
323
323
|
continue # comment or other non-parsed element
|
|
324
324
|
else:
|
|
325
325
|
eltTag = elt.tag
|
|
@@ -808,12 +808,12 @@ def validateXbrlFinally(val: ValidateXbrl, *args: Any, **kwargs: Any) -> None:
|
|
|
808
808
|
_("The xlink:role attribute of a link:footnote and link:footnoteLink element as well as xlink:arcrole attribute of a link:footnoteArc MUST be defined in the XBRL Specification 2.1."),
|
|
809
809
|
modelObject=footnoteRoleErrors)
|
|
810
810
|
|
|
811
|
-
nonStdFootnoteElts = list()
|
|
811
|
+
nonStdFootnoteElts: list[_Element] = list()
|
|
812
812
|
for modelLink in modelXbrl.baseSets[("XBRL-footnotes",None,None,None)]:
|
|
813
813
|
for uncast_elt in modelLink.iterchildren():
|
|
814
814
|
elt = cast(Any, uncast_elt)
|
|
815
815
|
|
|
816
|
-
if isinstance(elt, (_ElementTree,
|
|
816
|
+
if isinstance(elt, (_Comment, _ElementTree, _Entity, _ProcessingInstruction)):
|
|
817
817
|
continue # comment or other non-parsed element
|
|
818
818
|
if elt.qname not in FOOTNOTE_LINK_CHILDREN:
|
|
819
819
|
nonStdFootnoteElts.append(elt)
|
|
@@ -3,23 +3,22 @@ See COPYRIGHT.md for copyright information.
|
|
|
3
3
|
"""
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
|
|
6
|
-
from typing import cast, Any
|
|
7
|
-
|
|
8
|
-
import regex as re
|
|
9
6
|
from collections import defaultdict
|
|
10
7
|
from dataclasses import dataclass
|
|
11
8
|
from functools import lru_cache
|
|
9
|
+
from typing import Any, cast
|
|
10
|
+
|
|
11
|
+
import regex as re
|
|
12
|
+
from lxml.etree import _Comment, _ElementTree, _Entity, _ProcessingInstruction
|
|
12
13
|
|
|
13
14
|
from arelle.FunctionIxt import ixtNamespaces
|
|
14
|
-
from arelle.ModelInstanceObject import
|
|
15
|
+
from arelle.ModelInstanceObject import ModelContext, ModelFact, ModelInlineFootnote, ModelUnit
|
|
15
16
|
from arelle.ModelValue import QName
|
|
16
17
|
from arelle.ModelXbrl import ModelXbrl
|
|
17
|
-
from arelle.utils.validate.ValidationUtil import etreeIterWithDepth
|
|
18
18
|
from arelle.utils.PluginData import PluginData
|
|
19
|
+
from arelle.utils.validate.ValidationUtil import etreeIterWithDepth
|
|
19
20
|
from arelle.XmlValidate import lexicalPatterns
|
|
20
21
|
|
|
21
|
-
from lxml.etree import EntityBase, _Comment, _ElementTree, _ProcessingInstruction
|
|
22
|
-
|
|
23
22
|
XBRLI_IDENTIFIER_PATTERN = re.compile(r"^(?!00)\d{8}$")
|
|
24
23
|
XBRLI_IDENTIFIER_SCHEMA = 'http://www.kvk.nl/kvk-id'
|
|
25
24
|
|
|
@@ -176,8 +175,7 @@ class PluginValidationDataExtension(PluginData):
|
|
|
176
175
|
for ixdsHtmlRootElt in modelXbrl.ixdsHtmlElements:
|
|
177
176
|
for uncast_elt, depth in etreeIterWithDepth(ixdsHtmlRootElt):
|
|
178
177
|
elt = cast(Any, uncast_elt)
|
|
179
|
-
|
|
180
|
-
if isinstance(elt, (_ElementTree, _Comment, _ProcessingInstruction, EntityBase)):
|
|
178
|
+
if isinstance(elt, (_Comment, _ElementTree, _Entity, _ProcessingInstruction)):
|
|
181
179
|
continue
|
|
182
180
|
if firstIxdsDoc and (not reportXmlLang or depth < firstRootmostXmlLangDepth):
|
|
183
181
|
xmlLang = elt.get("{http://www.w3.org/XML/1998/namespace}lang")
|
|
@@ -13,7 +13,7 @@ from arelle.typing import TypeGetText
|
|
|
13
13
|
from arelle.ValidateXbrl import ValidateXbrl
|
|
14
14
|
from collections import defaultdict
|
|
15
15
|
from math import isnan
|
|
16
|
-
from lxml.etree import _ElementTree,
|
|
16
|
+
from lxml.etree import _Comment, _ElementTree, _Entity, _ProcessingInstruction
|
|
17
17
|
from arelle import ModelDocument
|
|
18
18
|
from arelle.ModelInstanceObject import ModelInlineFact, ModelUnit
|
|
19
19
|
from arelle.ModelValue import qname
|
|
@@ -86,7 +86,7 @@ def rule_main(
|
|
|
86
86
|
ixTargets = set()
|
|
87
87
|
for ixdsHtmlRootElt in modelXbrl.ixdsHtmlElements:
|
|
88
88
|
for elt in ixdsHtmlRootElt.iter():
|
|
89
|
-
if isinstance(elt, (_ElementTree,
|
|
89
|
+
if isinstance(elt, (_Comment, _ElementTree, _Entity, _ProcessingInstruction)):
|
|
90
90
|
continue # comment or other non-parsed element
|
|
91
91
|
if isinstance(elt, ModelInlineFact):
|
|
92
92
|
if elt.format is not None and elt.format.namespaceURI not in TR_NAMESPACES:
|
|
@@ -50,7 +50,7 @@ arelle/ModelValue.py,sha256=6Vko4aytXg2Ajv7rI6houQb-ZX39-tcjQ4N90ZxZvE8,39430
|
|
|
50
50
|
arelle/ModelVersObject.py,sha256=cPD1IzhkCfuV1eMgVFWes88DH_6WkUj5kj7sgGF2M0I,26062
|
|
51
51
|
arelle/ModelVersReport.py,sha256=bXEA9K3qkH57aABn5l-m3CTY0FAcF1yX6O4fo-URjl8,73326
|
|
52
52
|
arelle/ModelXbrl.py,sha256=7rz4rxIGopwRDQTD12P0sdqzvPPoMhGgkg5qkMD6TDQ,72109
|
|
53
|
-
arelle/PackageManager.py,sha256=
|
|
53
|
+
arelle/PackageManager.py,sha256=BvPExMcxh8rHMxogOag-PGbX6vXdhCiXAHcDLA6Ypsc,32592
|
|
54
54
|
arelle/PluginManager.py,sha256=foSgWvRI1Ret-6KVRQMFSv4RtpEf_0UB7468N_NjPGU,42116
|
|
55
55
|
arelle/PluginUtils.py,sha256=0vFQ29wVVpU0cTY3YOBL6FhNQhhCTwShBH4qTJGLnvc,2426
|
|
56
56
|
arelle/PrototypeDtsObject.py,sha256=0lf60VcXR_isx57hBPrc7vEMkFpYkVuK4JVBSmopzkQ,7989
|
|
@@ -67,7 +67,7 @@ arelle/Updater.py,sha256=ho8Z_9GOL39H1jHL3Gaw5uc6av7J8ZBB6dR_X-nF_e0,7124
|
|
|
67
67
|
arelle/UrlUtil.py,sha256=HrxZSG59EUMGMMGmWPuZkPi5-0BGqY3jAMkp7V4IdZo,32400
|
|
68
68
|
arelle/Validate.py,sha256=_7lDoGtUCyHgWK1Ak375D-kuPBZmDCNfSr_wsTLq10k,55328
|
|
69
69
|
arelle/ValidateDuplicateFacts.py,sha256=074y-VWCOBHoi6iV6wDL_IXBtdz9oeI1uPvjEcC1oDs,21717
|
|
70
|
-
arelle/ValidateFilingText.py,sha256=
|
|
70
|
+
arelle/ValidateFilingText.py,sha256=xnXc0xgdNiHQk0eyP7VSSpvw7qr-pRFRwqqoUb569is,54051
|
|
71
71
|
arelle/ValidateInfoset.py,sha256=Rz_XBi5Ha43KpxXYhjLolURcWVx5qmqyjLxw48Yt9Dg,20396
|
|
72
72
|
arelle/ValidateUtr.py,sha256=oxOPrOa1XEzBay4miXvx6eRLTnVFYUIJC9ueWUk4EkI,13633
|
|
73
73
|
arelle/ValidateVersReport.py,sha256=RMe7GlcyZV0HoVFHL0qOGrKm4et-6yPq5dmikkhnvoU,43196
|
|
@@ -118,12 +118,12 @@ arelle/XbrlConst.py,sha256=YDvnf0gQ3IY5v07d8wxAHTxDmvcHIpl2mSMZeTgvKmk,56695
|
|
|
118
118
|
arelle/XbrlUtil.py,sha256=s2Vmrh-sZI5TeuqsziKignOc3ao-uUgnCNoelP4dDj0,9212
|
|
119
119
|
arelle/XhtmlValidate.py,sha256=0gtm7N-kXK0RB5o3c1AQXjfFuRp1w2fKZZAeyruNANw,5727
|
|
120
120
|
arelle/XmlUtil.py,sha256=1VToOOylF8kbEorEdZLThmq35j9bmuF_DS2q9NthnHU,58774
|
|
121
|
-
arelle/XmlValidate.py,sha256=
|
|
121
|
+
arelle/XmlValidate.py,sha256=5tXC60dy3aI1sSoGp7rbB-nix_AB3q_nonbOPwMglNg,45881
|
|
122
122
|
arelle/XmlValidateConst.py,sha256=U_wN0Q-nWKwf6dKJtcu_83FXPn9c6P8JjzGA5b0w7P0,338
|
|
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=cinilF0XSPQghRi3cWKXaBHJTfQDo12BMn5RYEOmz6Q,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
|
|
@@ -345,7 +345,7 @@ arelle/plugin/security/cryptAES_CBC.py,sha256=S94AdMqu4jdLrprl0FLT2w7tG6IgxTGxRf
|
|
|
345
345
|
arelle/plugin/security/cryptAES_EAX.py,sha256=TAL_kpu_2WMMpHOWrxA8Y7UuTAcbbTY6DK0VYQZGWF0,5952
|
|
346
346
|
arelle/plugin/transforms/tester.py,sha256=57relfBci8FttRSxHtdUaxlaQPrBhJglssImDecQPow,12501
|
|
347
347
|
arelle/plugin/validate/CIPC/Const.py,sha256=GSiODyiK8V9P-pV0_DPEKYAhe2wqgcYJP2Qt6xaIyA4,11425
|
|
348
|
-
arelle/plugin/validate/CIPC/__init__.py,sha256=
|
|
348
|
+
arelle/plugin/validate/CIPC/__init__.py,sha256=R6KVETICUpfW--TvVkFNDo-67Kq_KpWz3my2ECkiKxM,14699
|
|
349
349
|
arelle/plugin/validate/CIPC/config.xml,sha256=4pyn40JAvQQeoRC8I046gZ4ZcmUnekX3TNfYpC5yonI,667
|
|
350
350
|
arelle/plugin/validate/DBA/DisclosureSystems.py,sha256=Dp_r-Pa3tahtCfDha2Zc97N0iyrY4Zagb8w2D9ErILg,294
|
|
351
351
|
arelle/plugin/validate/DBA/PluginValidationDataExtension.py,sha256=uDSu-xtKExJvlB5qNU4RXIorb4dbgh_Q8Ss_FbJ1RVg,6832
|
|
@@ -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=k3-7Htx0V8VGlqLnzVVwsR-QoPtNn5VJSgKjCwqRQBs,62900
|
|
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=PjdUCKrUBXkDdOUdzdhT10UhcqE-JeCQnILz2F_zhpE,73186
|
|
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=pbFSndg59-l6SS708c1zXFLgTJ9sVD82XU4YakU0uA0,8690
|
|
382
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
|
|
@@ -395,7 +395,7 @@ arelle/plugin/validate/ROS/__init__.py,sha256=KuWg1MHVzA2S6eaHFptvP3Vu_5gQWf3OUY
|
|
|
395
395
|
arelle/plugin/validate/ROS/config.xml,sha256=ZCpCFgr1ZAjoUuhb1eRpDnmKrae-sXA9yl6SOWnrfm8,654
|
|
396
396
|
arelle/plugin/validate/ROS/resources/config.xml,sha256=HXWume5HlrAqOx5AtiWWqgADbRatA8YSfm_JvZGwdgQ,657
|
|
397
397
|
arelle/plugin/validate/ROS/rules/__init__.py,sha256=wW7BUAIb7sRkOxC1Amc_ZKrz03FM-Qh1TyZe6wxYaAU,1567
|
|
398
|
-
arelle/plugin/validate/ROS/rules/ros.py,sha256=
|
|
398
|
+
arelle/plugin/validate/ROS/rules/ros.py,sha256=se4i-wTVGecXgK6EXrP_FSDau0O4KNsp9lq1h4k5KkM,19941
|
|
399
399
|
arelle/plugin/validate/UK/ValidateUK.py,sha256=0UhSwsY1lrY-EAEBJJR9QY38YXGBZ6PEgmuC5gQfBlI,57813
|
|
400
400
|
arelle/plugin/validate/UK/__init__.py,sha256=WOAbzcogxP2hD3HmNnVIrvUO4w0Cv36447AoPrMa7KU,30548
|
|
401
401
|
arelle/plugin/validate/UK/config.xml,sha256=mUFhWDfBzGTn7v0ZSmf4HaweQTMJh_4ZcJmD9mzCHrA,1547
|
|
@@ -708,7 +708,7 @@ arelle/utils/validate/ValidationUtil.py,sha256=9vmSvShn-EdQy56dfesyV8JjSRVPj7txr
|
|
|
708
708
|
arelle/utils/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
709
709
|
arelle/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
710
710
|
arelle/webserver/bottle.py,sha256=P-JECd9MCTNcxCnKoDUvGcoi03ezYVOgoWgv2_uH-6M,362
|
|
711
|
-
arelle_release-2.37.
|
|
711
|
+
arelle_release-2.37.12.dist-info/licenses/LICENSE.md,sha256=Q0tn6q0VUbr-NM8916513NCIG8MNzo24Ev-sxMUBRZc,3959
|
|
712
712
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
713
713
|
tests/integration_tests/download_cache.py,sha256=jVMIVICsZjcVc9DCPPu3fCjF9_cWSS3tqSynhFs3oAM,4097
|
|
714
714
|
tests/integration_tests/integration_test_util.py,sha256=H7mncbv0T9ZeVyrtk9Hohe3k6jgcYykHkt-LGE-Q9aQ,10270
|
|
@@ -1557,8 +1557,8 @@ tests/unit_tests/arelle/oim/test_load.py,sha256=NxiUauQwJVfWAHbbpsMHGSU2d3Br8Pki
|
|
|
1557
1557
|
tests/unit_tests/arelle/plugin/test_plugin_imports.py,sha256=bdhIs9frAnFsdGU113yBk09_jis-z43dwUItMFYuSYM,1064
|
|
1558
1558
|
tests/unit_tests/arelle/plugin/validate/ESEF/ESEF_Current/test_validate_css_url.py,sha256=XHABmejQt7RlZ0udh7v42f2Xb2STGk_fSaIaJ9i2xo0,878
|
|
1559
1559
|
tests/unit_tests/arelle/utils/validate/test_decorator.py,sha256=ZS8FqIY1g-2FCbjF4UYm609dwViax6qBMRJSi0vfuhY,2482
|
|
1560
|
-
arelle_release-2.37.
|
|
1561
|
-
arelle_release-2.37.
|
|
1562
|
-
arelle_release-2.37.
|
|
1563
|
-
arelle_release-2.37.
|
|
1564
|
-
arelle_release-2.37.
|
|
1560
|
+
arelle_release-2.37.12.dist-info/METADATA,sha256=HRYC-wPK2dvdAehLuqUvqbFGfsljI-F9gHXbwTH5qXA,9065
|
|
1561
|
+
arelle_release-2.37.12.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
1562
|
+
arelle_release-2.37.12.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
|
|
1563
|
+
arelle_release-2.37.12.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
|
|
1564
|
+
arelle_release-2.37.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|