arelle-release 2.37.13__py3-none-any.whl → 2.37.15__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/CntlrCmdLine.py +1 -1
- arelle/ModelTestcaseObject.py +7 -0
- arelle/Validate.py +14 -2
- arelle/ValidateDuplicateFacts.py +4 -10
- arelle/_version.py +2 -2
- arelle/plugin/validate/DBA/PluginValidationDataExtension.py +9 -1
- arelle/plugin/validate/DBA/ValidationPluginExtension.py +4 -2
- arelle/plugin/validate/DBA/rules/fr.py +30 -32
- arelle/plugin/validate/DBA/rules/tm.py +22 -12
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +154 -26
- arelle/plugin/validate/NL/rules/nl_kvk.py +265 -15
- {arelle_release-2.37.13.dist-info → arelle_release-2.37.15.dist-info}/METADATA +1 -1
- {arelle_release-2.37.13.dist-info → arelle_release-2.37.15.dist-info}/RECORD +26 -25
- {arelle_release-2.37.13.dist-info → arelle_release-2.37.15.dist-info}/WHEEL +1 -1
- tests/integration_tests/validation/conformance_suite_configurations/nl_inline_2024.py +11 -15
- tests/resources/conformance_suites/dba/fr/fr7-invalid.xhtml +1 -1
- tests/resources/conformance_suites/dba/fr/fr83-invalid.xbrl +1 -1
- tests/resources/conformance_suites/dba/fr/fr89-testcase.xml +10 -0
- tests/resources/conformance_suites/dba/fr/fr89-valid.xhtml +6816 -0
- tests/resources/conformance_suites/dba/fr/fr91-invalid.xhtml +1 -2
- tests/resources/conformance_suites/dba/tm/tm29-invalid.xhtml +0 -1
- tests/resources/conformance_suites/dba/tm/tm31-invalid.xhtml +10 -1
- tests/resources/conformance_suites/dba/tr/tr06-invalid.xhtml +1 -1
- {arelle_release-2.37.13.dist-info → arelle_release-2.37.15.dist-info}/entry_points.txt +0 -0
- {arelle_release-2.37.13.dist-info → arelle_release-2.37.15.dist-info}/licenses/LICENSE.md +0 -0
- {arelle_release-2.37.13.dist-info → arelle_release-2.37.15.dist-info}/top_level.txt +0 -0
|
@@ -9,7 +9,7 @@ from arelle.ModelInstanceObject import ModelInlineFact
|
|
|
9
9
|
from arelle.ValidateDuplicateFacts import getDuplicateFactSets
|
|
10
10
|
from arelle.XmlValidateConst import VALID
|
|
11
11
|
from collections.abc import Iterable
|
|
12
|
-
from typing import Any, TYPE_CHECKING
|
|
12
|
+
from typing import Any, cast, TYPE_CHECKING
|
|
13
13
|
|
|
14
14
|
from arelle import XmlUtil
|
|
15
15
|
from arelle.ValidateXbrl import ValidateXbrl
|
|
@@ -17,8 +17,11 @@ from arelle.typing import TypeGetText
|
|
|
17
17
|
from arelle.utils.PluginHooks import ValidationHook
|
|
18
18
|
from arelle.utils.validate.Decorator import validation
|
|
19
19
|
from arelle.utils.validate.Validation import Validation
|
|
20
|
+
from arelle.ValidateDuplicateFacts import getHashEquivalentFactGroups, getAspectEqualFacts
|
|
21
|
+
from arelle.utils.validate.ValidationUtil import etreeIterWithDepth
|
|
20
22
|
from ..DisclosureSystems import DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
21
|
-
from ..PluginValidationDataExtension import PluginValidationDataExtension, XBRLI_IDENTIFIER_PATTERN,
|
|
23
|
+
from ..PluginValidationDataExtension import (PluginValidationDataExtension, XBRLI_IDENTIFIER_PATTERN,
|
|
24
|
+
XBRLI_IDENTIFIER_SCHEMA, DISALLOWED_IXT_NAMESPACES, ALLOWABLE_LANGUAGES)
|
|
22
25
|
|
|
23
26
|
if TYPE_CHECKING:
|
|
24
27
|
from arelle.ModelXbrl import ModelXbrl
|
|
@@ -458,6 +461,128 @@ def rule_nl_kvk_3_3_1_3 (
|
|
|
458
461
|
)
|
|
459
462
|
|
|
460
463
|
|
|
464
|
+
@validation(
|
|
465
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
466
|
+
disclosureSystems=[
|
|
467
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
468
|
+
],
|
|
469
|
+
)
|
|
470
|
+
def rule_nl_kvk_3_4_1_1 (
|
|
471
|
+
pluginData: PluginValidationDataExtension,
|
|
472
|
+
val: ValidateXbrl,
|
|
473
|
+
*args: Any,
|
|
474
|
+
**kwargs: Any,
|
|
475
|
+
) -> Iterable[Validation]:
|
|
476
|
+
"""
|
|
477
|
+
NL-KVK.3.4.1.1: ix:tuple element should not be used in the Inline XBRL document.
|
|
478
|
+
"""
|
|
479
|
+
tuples = pluginData.getTupleElements(val.modelXbrl)
|
|
480
|
+
if len(tuples) > 0:
|
|
481
|
+
yield Validation.error(
|
|
482
|
+
codes='NL.NL-KVK.3.4.1.1.tupleElementUsed',
|
|
483
|
+
msg=_('ix:tuple element should not be used in the Inline XBRL document.'),
|
|
484
|
+
modelObject=tuples
|
|
485
|
+
)
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
@validation(
|
|
489
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
490
|
+
disclosureSystems=[
|
|
491
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
492
|
+
],
|
|
493
|
+
)
|
|
494
|
+
def rule_nl_kvk_3_4_1_2 (
|
|
495
|
+
pluginData: PluginValidationDataExtension,
|
|
496
|
+
val: ValidateXbrl,
|
|
497
|
+
*args: Any,
|
|
498
|
+
**kwargs: Any,
|
|
499
|
+
) -> Iterable[Validation]:
|
|
500
|
+
"""
|
|
501
|
+
NL-KVK.3.4.1.2: ix:fraction element should not be used in the Inline XBRL document.
|
|
502
|
+
"""
|
|
503
|
+
fractions = pluginData.getFractionElements(val.modelXbrl)
|
|
504
|
+
if len(fractions) > 0:
|
|
505
|
+
yield Validation.error(
|
|
506
|
+
codes='NL.NL-KVK.3.4.1.2.fractionElementUsed',
|
|
507
|
+
msg=_('ix:fraction element should not be used in the Inline XBRL document.'),
|
|
508
|
+
modelObject=fractions
|
|
509
|
+
)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
@validation(
|
|
513
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
514
|
+
disclosureSystems=[
|
|
515
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
516
|
+
],
|
|
517
|
+
)
|
|
518
|
+
def rule_nl_kvk_3_4_1_3 (
|
|
519
|
+
pluginData: PluginValidationDataExtension,
|
|
520
|
+
val: ValidateXbrl,
|
|
521
|
+
*args: Any,
|
|
522
|
+
**kwargs: Any,
|
|
523
|
+
) -> Iterable[Validation]:
|
|
524
|
+
"""
|
|
525
|
+
NL-KVK.3.4.1.3: The ix:hidden section should not include elements that are eligible for transformation
|
|
526
|
+
according to the latest recommended Transformation Rules Registry.
|
|
527
|
+
"""
|
|
528
|
+
facts = pluginData.getEligibleForTransformHiddenFacts(val.modelXbrl)
|
|
529
|
+
if len(facts) > 0:
|
|
530
|
+
yield Validation.error(
|
|
531
|
+
codes='NL.NL-KVK.3.4.1.3.transformableElementIncludedInHiddenSection',
|
|
532
|
+
msg=_('The ix:hidden section should not include elements that are eligible for transformation'
|
|
533
|
+
'according to the latest recommended Transformation Rules Registry.'),
|
|
534
|
+
modelObject=facts
|
|
535
|
+
)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
@validation(
|
|
539
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
540
|
+
disclosureSystems=[
|
|
541
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
542
|
+
],
|
|
543
|
+
)
|
|
544
|
+
def rule_nl_kvk_3_4_1_4 (
|
|
545
|
+
pluginData: PluginValidationDataExtension,
|
|
546
|
+
val: ValidateXbrl,
|
|
547
|
+
*args: Any,
|
|
548
|
+
**kwargs: Any,
|
|
549
|
+
) -> Iterable[Validation]:
|
|
550
|
+
"""
|
|
551
|
+
NL-KVK.3.4.1.4: ix:hidden section should not contain a fact whose @id attribute is not applied on any ix-hidden style.
|
|
552
|
+
"""
|
|
553
|
+
facts = pluginData.getRequiredToDisplayFacts(val.modelXbrl)
|
|
554
|
+
if len(facts) > 0:
|
|
555
|
+
yield Validation.error(
|
|
556
|
+
codes='NL.NL-KVK.3.4.1.4.factInHiddenSectionNotInReport',
|
|
557
|
+
msg=_('ix:hidden section should not contain a fact whose @id attribute is not applied on any -ix-hidden style.'),
|
|
558
|
+
modelObject=facts
|
|
559
|
+
)
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
@validation(
|
|
563
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
564
|
+
disclosureSystems=[
|
|
565
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
566
|
+
],
|
|
567
|
+
)
|
|
568
|
+
def rule_nl_kvk_3_4_1_5 (
|
|
569
|
+
pluginData: PluginValidationDataExtension,
|
|
570
|
+
val: ValidateXbrl,
|
|
571
|
+
*args: Any,
|
|
572
|
+
**kwargs: Any,
|
|
573
|
+
) -> Iterable[Validation]:
|
|
574
|
+
"""
|
|
575
|
+
NL-KVK.3.4.1.5: ix:hidden section should not contain a fact whose @id attribute is not applied on any ix-hidden style.
|
|
576
|
+
"""
|
|
577
|
+
facts = pluginData.getHiddenFactsOutsideHiddenSection(val.modelXbrl)
|
|
578
|
+
if len(facts) > 0:
|
|
579
|
+
yield Validation.error(
|
|
580
|
+
codes='NL.NL-KVK.3.4.1.5.kvkIxHiddenStyleNotLinkingFactInHiddenSection',
|
|
581
|
+
msg=_('Review for -ix-hidden style identifies @id attribute of a fact that is not in ix:hidden section'),
|
|
582
|
+
modelObject=facts
|
|
583
|
+
)
|
|
584
|
+
|
|
585
|
+
|
|
461
586
|
@validation(
|
|
462
587
|
hook=ValidationHook.XBRL_FINALLY,
|
|
463
588
|
disclosureSystems=[
|
|
@@ -505,17 +630,142 @@ def rule_nl_kvk_3_5_2_2(
|
|
|
505
630
|
NL-KVK.3.5.2.2: All tagged text facts MUST be provided in at least the language of the report.
|
|
506
631
|
"""
|
|
507
632
|
reportXmlLang = pluginData.getReportXmlLang(val.modelXbrl)
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
633
|
+
filtered_facts = [f for f in val.modelXbrl.facts if f.concept is not None and
|
|
634
|
+
f.concept.type is not None and
|
|
635
|
+
f.concept.type.isOimTextFactType and
|
|
636
|
+
f.context is not None]
|
|
637
|
+
factGroups = getHashEquivalentFactGroups(filtered_facts)
|
|
638
|
+
for fgroup in factGroups:
|
|
639
|
+
for flist in getAspectEqualFacts(fgroup, includeSingles=True, useLang=False):
|
|
640
|
+
if not any(f.xmlLang == reportXmlLang for f in flist):
|
|
641
|
+
yield Validation.error(
|
|
642
|
+
codes='NL.NL-KVK.3.5.2.2.taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport',
|
|
643
|
+
msg=_('Tagged text facts MUST be provided in the language of the report.'),
|
|
644
|
+
modelObject=fgroup
|
|
645
|
+
)
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
@validation(
|
|
649
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
650
|
+
disclosureSystems=[
|
|
651
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
652
|
+
],
|
|
653
|
+
)
|
|
654
|
+
def rule_nl_kvk_3_5_2_3(
|
|
655
|
+
pluginData: PluginValidationDataExtension,
|
|
656
|
+
val: ValidateXbrl,
|
|
657
|
+
*args: Any,
|
|
658
|
+
**kwargs: Any,
|
|
659
|
+
) -> Iterable[Validation]:
|
|
660
|
+
"""
|
|
661
|
+
NL-KVK.3.5.2.3: The value of the @xml:lang attribute SHOULD be 'nl' or 'en' or 'de' or 'fr'.
|
|
662
|
+
"""
|
|
663
|
+
badLangsUsed = set()
|
|
664
|
+
for ixdsHtmlRootElt in val.modelXbrl.ixdsHtmlElements:
|
|
665
|
+
for uncast_elt, depth in etreeIterWithDepth(ixdsHtmlRootElt):
|
|
666
|
+
elt = cast(Any, uncast_elt)
|
|
667
|
+
xmlLang = elt.get("{http://www.w3.org/XML/1998/namespace}lang")
|
|
668
|
+
if xmlLang and xmlLang not in ALLOWABLE_LANGUAGES:
|
|
669
|
+
badLangsUsed.add(xmlLang)
|
|
670
|
+
if len(badLangsUsed) > 0:
|
|
671
|
+
yield Validation.warning(
|
|
672
|
+
codes='NL.NL-KVK.3.5.2.3.invalidLanguageAttribute',
|
|
673
|
+
badLangsUsed=', '.join(badLangsUsed),
|
|
674
|
+
msg=_('The lang attribute should use one of the following: \'nl\' or \'en\' or \'de\' or \'fr\'. '
|
|
675
|
+
'The following languages are used incorrectly: %(badLangsUsed)s'),
|
|
521
676
|
)
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
@validation(
|
|
680
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
681
|
+
disclosureSystems=[
|
|
682
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
683
|
+
],
|
|
684
|
+
)
|
|
685
|
+
def rule_nl_kvk_3_6_3_1(
|
|
686
|
+
pluginData: PluginValidationDataExtension,
|
|
687
|
+
val: ValidateXbrl,
|
|
688
|
+
*args: Any,
|
|
689
|
+
**kwargs: Any,
|
|
690
|
+
) -> Iterable[Validation]:
|
|
691
|
+
"""
|
|
692
|
+
NL-KVK.3.6.3.1: The report filename will have the form `{base}-{date}-{lang}.{extension}`.
|
|
693
|
+
The `{base}` component of the filename SHOULD not exceed twenty characters.
|
|
694
|
+
"""
|
|
695
|
+
invalidBasenames = []
|
|
696
|
+
for basename in pluginData.getIxdsDocBasenames(val.modelXbrl):
|
|
697
|
+
filenameParts = pluginData.getFilenameParts(basename)
|
|
698
|
+
if not filenameParts:
|
|
699
|
+
continue # Filename is not formatted correctly enough to determine {base}
|
|
700
|
+
if len(filenameParts.get('base', '')) > 20:
|
|
701
|
+
invalidBasenames.append(basename)
|
|
702
|
+
if len(invalidBasenames) > 0:
|
|
703
|
+
yield Validation.warning(
|
|
704
|
+
codes='NL.NL-KVK.3.6.3.1.baseComponentInDocumentNameExceedsTwentyCharacters',
|
|
705
|
+
invalidBasenames=', '.join(invalidBasenames),
|
|
706
|
+
msg=_('The {base} component of the filename is greater than twenty characters. '
|
|
707
|
+
'The {base} component can either be the KVK number or the legal entity\'s name. '
|
|
708
|
+
'If the legal entity\'s name has been utilized, review to shorten the name to twenty characters or less. '
|
|
709
|
+
'Invalid filenames: %(invalidBasenames)s'))
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
@validation(
|
|
713
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
714
|
+
disclosureSystems=[
|
|
715
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
716
|
+
],
|
|
717
|
+
)
|
|
718
|
+
def rule_nl_kvk_3_6_3_2(
|
|
719
|
+
pluginData: PluginValidationDataExtension,
|
|
720
|
+
val: ValidateXbrl,
|
|
721
|
+
*args: Any,
|
|
722
|
+
**kwargs: Any,
|
|
723
|
+
) -> Iterable[Validation]:
|
|
724
|
+
"""
|
|
725
|
+
NL-KVK.3.6.3.2: Report filename SHOULD match the {base}-{date}-{lang}.{extension} pattern.
|
|
726
|
+
{extension} MUST be one of the following: html, htm, xhtml.
|
|
727
|
+
"""
|
|
728
|
+
invalidBasenames = []
|
|
729
|
+
for basename in pluginData.getIxdsDocBasenames(val.modelXbrl):
|
|
730
|
+
filenameParts = pluginData.getFilenameParts(basename)
|
|
731
|
+
if not filenameParts:
|
|
732
|
+
invalidBasenames.append(basename)
|
|
733
|
+
if len(invalidBasenames) > 0:
|
|
734
|
+
yield Validation.warning(
|
|
735
|
+
codes='NL.NL-KVK.3.6.3.2.documentNameDoesNotFollowNamingConvention',
|
|
736
|
+
invalidBasenames=', '.join(invalidBasenames),
|
|
737
|
+
msg=_('The filename does not match the naming convention outlined by the KVK. '
|
|
738
|
+
'It is recommended to be in the {base}-{date}-{lang}.{extension} format. '
|
|
739
|
+
'{extension} must be one of the following: html, htm, xhtml. '
|
|
740
|
+
'Review formatting and update as appropriate. '
|
|
741
|
+
'Invalid filenames: %(invalidBasenames)s'))
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
@validation(
|
|
745
|
+
hook=ValidationHook.XBRL_FINALLY,
|
|
746
|
+
disclosureSystems=[
|
|
747
|
+
DISCLOSURE_SYSTEM_NL_INLINE_2024
|
|
748
|
+
],
|
|
749
|
+
)
|
|
750
|
+
def rule_nl_kvk_3_6_3_3(
|
|
751
|
+
pluginData: PluginValidationDataExtension,
|
|
752
|
+
val: ValidateXbrl,
|
|
753
|
+
*args: Any,
|
|
754
|
+
**kwargs: Any,
|
|
755
|
+
) -> Iterable[Validation]:
|
|
756
|
+
"""
|
|
757
|
+
NL-KVK.3.6.3.3: Report filename MUST only contain allowed characters.
|
|
758
|
+
Filenames can include the following characters: A-Z, a-z, 0-9, underscore ( _ ), period ( . ), hyphen ( - ).
|
|
759
|
+
"""
|
|
760
|
+
invalidBasenames = []
|
|
761
|
+
for basename in pluginData.getIxdsDocBasenames(val.modelXbrl):
|
|
762
|
+
if not pluginData.isFilenameValidCharacters(basename):
|
|
763
|
+
invalidBasenames.append(basename)
|
|
764
|
+
if len(invalidBasenames) > 0:
|
|
765
|
+
yield Validation.error(
|
|
766
|
+
codes='NL.NL-KVK.3.6.3.3.documentFileNameIncludesCharactersNotAllowed',
|
|
767
|
+
invalidBasenames=', '.join(invalidBasenames),
|
|
768
|
+
msg=_('The file name includes characters that are now allowed. '
|
|
769
|
+
'Allowed characters include: A-Z, a-z, 0-9, underscore ( _ ), period ( . ), and hyphen ( - ). '
|
|
770
|
+
'Update filing naming to review unallowed characters. '
|
|
771
|
+
'Invalid filenames: %(invalidBasenames)s'))
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
arelle/Aspect.py,sha256=Pn9I91D1os1RTVj6htuxTfRzVMhmVDtrbKvV_zy9xMI,5470
|
|
2
2
|
arelle/BetaFeatures.py,sha256=T_tPac-FiozHyYLCemt0RoHJ1JahUE71L-0tHmIRKpE,858
|
|
3
3
|
arelle/Cntlr.py,sha256=sf5Xe19t5E0wKzhdlXl1p5r6gMtCmPhYAi8RVY0jz7Y,30449
|
|
4
|
-
arelle/CntlrCmdLine.py,sha256=
|
|
4
|
+
arelle/CntlrCmdLine.py,sha256=nRcCAzLpfeKnK5WFDTUs5GWRZosXaFHha7rUgrrQ4kY,89994
|
|
5
5
|
arelle/CntlrComServer.py,sha256=h1KPf31uMbErpxTZn_iklDqUMGFgQnjZkFkFjd8gtLQ,1888
|
|
6
6
|
arelle/CntlrProfiler.py,sha256=2VQJudiUhxryVypxjODx2ccP1-n60icTiWs5lSEokhQ,972
|
|
7
7
|
arelle/CntlrQuickBooks.py,sha256=BMqd5nkNQOZyNFPefkTeWUUDCYNS6BQavaG8k1Lepu4,31543
|
|
@@ -45,7 +45,7 @@ arelle/ModelRelationshipSet.py,sha256=_1T3NAS0IRgK8IWFe7nh-qxXZ7htA80i_dueyU8JYa
|
|
|
45
45
|
arelle/ModelRenderingObject.py,sha256=iPhSUlSBG-FLzAfIdUW06UZDgTCaZJ4K2mxvAtSe2BU,76021
|
|
46
46
|
arelle/ModelRssItem.py,sha256=GzFkmluOlFsVcrxn9HAyOAcuE7rcHUOGkp4Q6F2IlT8,7713
|
|
47
47
|
arelle/ModelRssObject.py,sha256=xjuwyJ8pU5sQmNPJFQakDEEnujZg2bMCTaj3zVezHL8,992
|
|
48
|
-
arelle/ModelTestcaseObject.py,sha256=
|
|
48
|
+
arelle/ModelTestcaseObject.py,sha256=sOyIktwv23BWOGyokzcwlJALp7UENsMAKKJmVfAZh6c,22163
|
|
49
49
|
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
|
|
@@ -65,8 +65,8 @@ arelle/UITkTable.py,sha256=N83cXi5c0lLZLsDbwSKcPrlYoUoGsNavGN5YRx6d9XY,39810
|
|
|
65
65
|
arelle/UiUtil.py,sha256=3G0xPclZI8xW_XQDbiFrmylB7Nd5muqi5n2x2oMkMZU,34218
|
|
66
66
|
arelle/Updater.py,sha256=ho8Z_9GOL39H1jHL3Gaw5uc6av7J8ZBB6dR_X-nF_e0,7124
|
|
67
67
|
arelle/UrlUtil.py,sha256=HrxZSG59EUMGMMGmWPuZkPi5-0BGqY3jAMkp7V4IdZo,32400
|
|
68
|
-
arelle/Validate.py,sha256=
|
|
69
|
-
arelle/ValidateDuplicateFacts.py,sha256=
|
|
68
|
+
arelle/Validate.py,sha256=XBrKQHsSC7Qz5Fp-M3gODfxwW8a-PWyBzZkCekYrMZM,56920
|
|
69
|
+
arelle/ValidateDuplicateFacts.py,sha256=iF8BpBRBqPxlnXUa11cQJ3LEAstysl3r_J4280OQGJo,21705
|
|
70
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
|
|
@@ -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=TSA1bIs_NxXgkhR7DPUaXrR47QdWwhNS1Nj7iXFPVPw,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
|
|
@@ -348,15 +348,15 @@ arelle/plugin/validate/CIPC/Const.py,sha256=GSiODyiK8V9P-pV0_DPEKYAhe2wqgcYJP2Qt
|
|
|
348
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
|
-
arelle/plugin/validate/DBA/PluginValidationDataExtension.py,sha256=
|
|
352
|
-
arelle/plugin/validate/DBA/ValidationPluginExtension.py,sha256=
|
|
351
|
+
arelle/plugin/validate/DBA/PluginValidationDataExtension.py,sha256=R0lNf-3-lKHlnCy4ByU1TT1lVImMe35KeV-mbDxeaco,7290
|
|
352
|
+
arelle/plugin/validate/DBA/ValidationPluginExtension.py,sha256=JozGD4LqGn8zbc_-BhZOPMJl0PSboloS6oG8UwwTz6I,48638
|
|
353
353
|
arelle/plugin/validate/DBA/__init__.py,sha256=KhmlUkqgsRtEXpu5DZBXFzv43nUTvi-0sdDNRfw5Up4,1564
|
|
354
354
|
arelle/plugin/validate/DBA/resources/config.xml,sha256=KHfo7SrjzmjHbfwIJBmESvOOjdIv4Av26BCcZxfn3Pg,875
|
|
355
355
|
arelle/plugin/validate/DBA/rules/__init__.py,sha256=t6xULMkNT7naI-sKmiD3ohX2Q41TTKqFPtKI01BKiyA,10349
|
|
356
|
-
arelle/plugin/validate/DBA/rules/fr.py,sha256=
|
|
356
|
+
arelle/plugin/validate/DBA/rules/fr.py,sha256=ITYpWGiIJ9q0vIagoFfOa30vKDlcEbFUx-pVO2_Kkbw,71314
|
|
357
357
|
arelle/plugin/validate/DBA/rules/tc.py,sha256=CXPOGHpab9Y-iV84wDXrsE-rPe_d6Uhw4HjEyTBEzq4,1572
|
|
358
358
|
arelle/plugin/validate/DBA/rules/th.py,sha256=Azrlq572exd0WmX0XLOkr29mn9BsDtQDx0kkrFGt-2o,6226
|
|
359
|
-
arelle/plugin/validate/DBA/rules/tm.py,sha256=
|
|
359
|
+
arelle/plugin/validate/DBA/rules/tm.py,sha256=ui9oKBqlAForwkQ9kk9KBiUogTJE5pv1RbIejKASprY,11797
|
|
360
360
|
arelle/plugin/validate/DBA/rules/tr.py,sha256=zdi3kQ82whmweVWRLbMvcNpM8sqtUliPsGfd81rgZws,14671
|
|
361
361
|
arelle/plugin/validate/EBA/__init__.py,sha256=1kW-04W32sStSAL8wvW1ZpXnjlFv6KLbfE4aifYUB2A,46000
|
|
362
362
|
arelle/plugin/validate/EBA/config.xml,sha256=37wMVUAObK-XEqakqD8zPNog20emYt4a_yfL1AKubF8,2022
|
|
@@ -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=9Hu-vQgbXq5Q5dRPgsGwTSRt4-7IF_VlOAn1w4Bokcs,14511
|
|
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
|
|
@@ -387,7 +387,7 @@ arelle/plugin/validate/NL/rules/br_kvk.py,sha256=0SwKieWzTDm3YMsXPS6zTdgbk7_Z9Cz
|
|
|
387
387
|
arelle/plugin/validate/NL/rules/fg_nl.py,sha256=4Puq5wAjtK_iNd4wisH_R0Z_EKJ7MT2OCai5g4t1MPE,10714
|
|
388
388
|
arelle/plugin/validate/NL/rules/fr_kvk.py,sha256=-_BLeWGoZ_f56p5VO4X40S45Ny3Ej-WK6Srei1KVSxU,8170
|
|
389
389
|
arelle/plugin/validate/NL/rules/fr_nl.py,sha256=-M1WtXp06khhtkfOVPCa-b8UbC281gk4YfDhvtAVlnI,31424
|
|
390
|
-
arelle/plugin/validate/NL/rules/nl_kvk.py,sha256=
|
|
390
|
+
arelle/plugin/validate/NL/rules/nl_kvk.py,sha256=TnML7IpjSDQFqVQEU5cogLFLnNk_pCUdSAsHjESF9u4,27778
|
|
391
391
|
arelle/plugin/validate/ROS/DisclosureSystems.py,sha256=rJ81mwQDYTi6JecFZ_zhqjjz3VNQRgjHNSh0wcQWAQE,18
|
|
392
392
|
arelle/plugin/validate/ROS/PluginValidationDataExtension.py,sha256=IV7ILhNvgKwQXqbpSA6HRNt9kEnejCyMADI3wyyIgk0,4036
|
|
393
393
|
arelle/plugin/validate/ROS/ValidationPluginExtension.py,sha256=FBhEp8t396vGdvCbMEimfcxmGiGnhXMen-yVLWnkFaI,758
|
|
@@ -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.15.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
|
|
@@ -764,7 +764,7 @@ tests/integration_tests/validation/conformance_suite_configurations/kvk_nt16.py,
|
|
|
764
764
|
tests/integration_tests/validation/conformance_suite_configurations/kvk_nt17.py,sha256=lmEZonthFm0YKFmp1dwXtdJ2T7txUeSpL4mbAo8fl4Y,1292
|
|
765
765
|
tests/integration_tests/validation/conformance_suite_configurations/kvk_nt18.py,sha256=EG2RQVkvFENhzUF3fl3QvDnH7ZPYS1n1Fo8bhfmSczM,1205
|
|
766
766
|
tests/integration_tests/validation/conformance_suite_configurations/kvk_nt19.py,sha256=FAzf9RhRmn_8yowpplJho2zEspX9FxJiVq8SjZT3Dsc,1199
|
|
767
|
-
tests/integration_tests/validation/conformance_suite_configurations/nl_inline_2024.py,sha256=
|
|
767
|
+
tests/integration_tests/validation/conformance_suite_configurations/nl_inline_2024.py,sha256=XcPUNMw30QtG4GeV1G4Zk17yXnpNZqg1krdSVM3_P8o,10539
|
|
768
768
|
tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py,sha256=O_LFVBZPkjxmbrU7_C7VTLtrdoCUx2bYXOXw6_MlRtQ,846
|
|
769
769
|
tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py,sha256=aTN3Ez6lPsZsuypHZP84DneOtYxUZSjUiGypHy6ofHQ,846
|
|
770
770
|
tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py,sha256=sqHLjrHc95dTu0guTgKkphaKM1zNfKGnN4GKkZDLzeU,845
|
|
@@ -1003,7 +1003,7 @@ tests/resources/conformance_suites/dba/fr/fr59-invalid.xhtml,sha256=-gSw3mvIOwx3
|
|
|
1003
1003
|
tests/resources/conformance_suites/dba/fr/fr59-testcase.xml,sha256=5eURkGVo_dJ2okPkgrUnoOah-BCsmOVyz7NwnZ63wPg,1137
|
|
1004
1004
|
tests/resources/conformance_suites/dba/fr/fr63-invalid.xhtml,sha256=m3Z0ZsRzvZc2IwYUK-SkvrwNFXrx831_-b22P7Oi3aE,1652663
|
|
1005
1005
|
tests/resources/conformance_suites/dba/fr/fr63-testcase.xml,sha256=0A8js86U9fQWQQxuCJ13huLhFvTHABdaZBJaYXD6-8s,1164
|
|
1006
|
-
tests/resources/conformance_suites/dba/fr/fr7-invalid.xhtml,sha256=
|
|
1006
|
+
tests/resources/conformance_suites/dba/fr/fr7-invalid.xhtml,sha256=w3L3mucU7FMdQD6AeReEgEeG0unQlv5Hxzu7_dapDSM,1652037
|
|
1007
1007
|
tests/resources/conformance_suites/dba/fr/fr7-testcase.xml,sha256=bagptUeB1wm_6TjVHMLTJg4gYvEmmuAG9Lohn8PfWDE,925
|
|
1008
1008
|
tests/resources/conformance_suites/dba/fr/fr71-invalid.xhtml,sha256=QiiL6Fyy0W6N489FFhFJsfamnvlr7ZQjmHombhSAkkg,1652591
|
|
1009
1009
|
tests/resources/conformance_suites/dba/fr/fr71-testcase.xml,sha256=qcGP2ukXiXWBLvkFu7HLHgWvTioM5qfuqL-vrELiMB0,924
|
|
@@ -1021,13 +1021,14 @@ tests/resources/conformance_suites/dba/fr/fr77a-invalid.xhtml,sha256=MeMSugMTU3Y
|
|
|
1021
1021
|
tests/resources/conformance_suites/dba/fr/fr77b-invalid.xhtml,sha256=mpcJ5rLlh7TLDX9Jw4excykkb1djrTMtrcDqKMTMqKc,1652040
|
|
1022
1022
|
tests/resources/conformance_suites/dba/fr/fr81-invalid.xhtml,sha256=bLUH-PWPfjooLXClP0m4DOZd1yAb6ANUnOkAnICF_Oo,1652037
|
|
1023
1023
|
tests/resources/conformance_suites/dba/fr/fr81-testcase.xml,sha256=GfMQzqEF-oN-ZV8XZhlB8cS5m-UZjGsw-c4R6tJehMI,960
|
|
1024
|
-
tests/resources/conformance_suites/dba/fr/fr83-invalid.xbrl,sha256=
|
|
1024
|
+
tests/resources/conformance_suites/dba/fr/fr83-invalid.xbrl,sha256=Fy09JfRhXxlEDhNt9fW0lZaFBNwtbVRjCCog4VuFcvA,183568
|
|
1025
1025
|
tests/resources/conformance_suites/dba/fr/fr83-testcase.xml,sha256=lCh06MZu6d6L4yp9ASixEIrFvIOBMUC35qcU7ntV3E8,849
|
|
1026
1026
|
tests/resources/conformance_suites/dba/fr/fr87-invalid.xhtml,sha256=f2y7ORgGw7uk3gRo2lWiBItb58HeOLp2ufrJVdD5Az8,1652092
|
|
1027
1027
|
tests/resources/conformance_suites/dba/fr/fr87-testcase.xml,sha256=or_CmiyUtpXiP8nbnlCnToqmV7QZ61zsJS9auaOzews,856
|
|
1028
1028
|
tests/resources/conformance_suites/dba/fr/fr89-invalid.xhtml,sha256=IXv9g0b6CcsXQ3H5SI_NPtMlK2ANhKU8n5pd9Can7rk,1651979
|
|
1029
|
-
tests/resources/conformance_suites/dba/fr/fr89-testcase.xml,sha256=
|
|
1030
|
-
tests/resources/conformance_suites/dba/fr/
|
|
1029
|
+
tests/resources/conformance_suites/dba/fr/fr89-testcase.xml,sha256=RTjTW5cyyXyt5tJRLbyxGTkBlmr6IdcJEJzKPWBsuLs,1271
|
|
1030
|
+
tests/resources/conformance_suites/dba/fr/fr89-valid.xhtml,sha256=0LfBBVgxfFRV4LO8nz9ljuc9QX1om2P_uqyJIPEtm4E,1600107
|
|
1031
|
+
tests/resources/conformance_suites/dba/fr/fr91-invalid.xhtml,sha256=4r6txiAtCbqSh9S6Bir1ZAlI9qWSaqCvG_jGlKgGMrI,1652016
|
|
1031
1032
|
tests/resources/conformance_suites/dba/fr/fr91-testcase.xml,sha256=m2WukSPSFWje5bcBPf1661D3dVBLp6t-Y1FKnAYx8ms,1007
|
|
1032
1033
|
tests/resources/conformance_suites/dba/fr/fr92-invalid.xhtml,sha256=QobnNGgK6qZKV4BBkk46SY6pbFBZ792L-0HQTawCzoI,1651887
|
|
1033
1034
|
tests/resources/conformance_suites/dba/fr/fr92-testcase.xml,sha256=BW_X_yo_v6-7RAnWU6mp0U5KLycbsWy3Fw7MjUdiYls,884
|
|
@@ -1068,11 +1069,11 @@ tests/resources/conformance_suites/dba/tm/tm27-invalid.xhtml,sha256=WV1H7B-FXUdI
|
|
|
1068
1069
|
tests/resources/conformance_suites/dba/tm/tm27-testcase.xml,sha256=T5gLC2JC9_7LY3uNlLDErdWDjHFiZSxSFi9uhG2h07A,867
|
|
1069
1070
|
tests/resources/conformance_suites/dba/tm/tm28-invalid.xhtml,sha256=TuR4isQJCQvJSdL7BxPNMFe2f7lyouvUrSaQsvc1rY8,1652171
|
|
1070
1071
|
tests/resources/conformance_suites/dba/tm/tm28-testcase.xml,sha256=oFIhUCSk58S8XSHdtf6bCedSr7oDIxpqwBJFOqsdszo,894
|
|
1071
|
-
tests/resources/conformance_suites/dba/tm/tm29-invalid.xhtml,sha256=
|
|
1072
|
+
tests/resources/conformance_suites/dba/tm/tm29-invalid.xhtml,sha256=1z4WbxWGNaNhZ9aNoTMxiXMwAfKtdzt4-hb_hGJk-HQ,1651782
|
|
1072
1073
|
tests/resources/conformance_suites/dba/tm/tm29-testcase.xml,sha256=j5ou77s-4lkdLlWVSvMH3OKQueI2NjEepagPDzKjRug,890
|
|
1073
1074
|
tests/resources/conformance_suites/dba/tm/tm30-invalid.xhtml,sha256=2Tql-NgEuPidES6oQ5A5CHe121w47ODQMFUi0eV1Cuk,1652157
|
|
1074
1075
|
tests/resources/conformance_suites/dba/tm/tm30-testcase.xml,sha256=LdJCDmafDCfIAPqQeD-T4RSQDFnlRylLZnPod0BLMvY,846
|
|
1075
|
-
tests/resources/conformance_suites/dba/tm/tm31-invalid.xhtml,sha256=
|
|
1076
|
+
tests/resources/conformance_suites/dba/tm/tm31-invalid.xhtml,sha256=ils05IvT5LtipWZMuIkkvgXchQHvi_o2PLYWL9ea10M,1652761
|
|
1076
1077
|
tests/resources/conformance_suites/dba/tm/tm31-testcase.xml,sha256=0RheuzXTLFI6M7mxE8cZg7O2G0cni4scDwfvz1uT_mQ,850
|
|
1077
1078
|
tests/resources/conformance_suites/dba/tm/tm32-invalid.xhtml,sha256=NHJB-BAVy4KPsKBb9jIMg19dTmLWc-Bvb93IfTewD3w,1653833
|
|
1078
1079
|
tests/resources/conformance_suites/dba/tm/tm32-testcase.xml,sha256=swMPVXS42xKrlKpBVU02npm3O7SZufeC8cV54SHZQQY,1130
|
|
@@ -1086,7 +1087,7 @@ tests/resources/conformance_suites/dba/tr/tr03-invalid.xhtml,sha256=cmcqHqjEZenM
|
|
|
1086
1087
|
tests/resources/conformance_suites/dba/tr/tr03-testcase.xml,sha256=nsytxeO1QQmun4RvwuZojD3_jgD9LpZzbCC00-4dybQ,1035
|
|
1087
1088
|
tests/resources/conformance_suites/dba/tr/tr05-invalid.xhtml,sha256=HH9JnJKesOgAis0_06Z89V8oxbS1KWmK3lZT9rHkqfA,1600932
|
|
1088
1089
|
tests/resources/conformance_suites/dba/tr/tr05-testcase.xml,sha256=xzSPgPSMi9rJYTka2ZKANkEXWeqCw2FQhoaCA1xWXzY,1011
|
|
1089
|
-
tests/resources/conformance_suites/dba/tr/tr06-invalid.xhtml,sha256=
|
|
1090
|
+
tests/resources/conformance_suites/dba/tr/tr06-invalid.xhtml,sha256=Li8q4NQVPVXTTNBmgNs0kkSqHSk0jSEREXi7jOjILh4,1601456
|
|
1090
1091
|
tests/resources/conformance_suites/dba/tr/tr06-testcase.xml,sha256=b0Zahh1kSpcqZUf1FN7yysxDdC7O_6cRA-bVknGp6UQ,1003
|
|
1091
1092
|
tests/resources/conformance_suites/dba/tr/tr09-invalid.xhtml,sha256=MwPMbPj0vJ96On_M4idVJxrxyjak4w4YvXmA-0oS8QM,1652016
|
|
1092
1093
|
tests/resources/conformance_suites/dba/tr/tr09-testcase.xml,sha256=9sjM4DQD9PklUQqVlAUFcK_cOg20QpLUifNyk6ImEro,838
|
|
@@ -1558,8 +1559,8 @@ tests/unit_tests/arelle/oim/test_load.py,sha256=NxiUauQwJVfWAHbbpsMHGSU2d3Br8Pki
|
|
|
1558
1559
|
tests/unit_tests/arelle/plugin/test_plugin_imports.py,sha256=bdhIs9frAnFsdGU113yBk09_jis-z43dwUItMFYuSYM,1064
|
|
1559
1560
|
tests/unit_tests/arelle/plugin/validate/ESEF/ESEF_Current/test_validate_css_url.py,sha256=XHABmejQt7RlZ0udh7v42f2Xb2STGk_fSaIaJ9i2xo0,878
|
|
1560
1561
|
tests/unit_tests/arelle/utils/validate/test_decorator.py,sha256=ZS8FqIY1g-2FCbjF4UYm609dwViax6qBMRJSi0vfuhY,2482
|
|
1561
|
-
arelle_release-2.37.
|
|
1562
|
-
arelle_release-2.37.
|
|
1563
|
-
arelle_release-2.37.
|
|
1564
|
-
arelle_release-2.37.
|
|
1565
|
-
arelle_release-2.37.
|
|
1562
|
+
arelle_release-2.37.15.dist-info/METADATA,sha256=WjMaa7qZ4Uxl-emox537p4uga5I0kkbtyJ3XfIVbpbw,9065
|
|
1563
|
+
arelle_release-2.37.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1564
|
+
arelle_release-2.37.15.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
|
|
1565
|
+
arelle_release-2.37.15.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
|
|
1566
|
+
arelle_release-2.37.15.dist-info/RECORD,,
|
|
@@ -7,6 +7,7 @@ config = ConformanceSuiteConfig(
|
|
|
7
7
|
args=[
|
|
8
8
|
'--disclosureSystem', 'NL-INLINE-2024',
|
|
9
9
|
'--baseTaxonomyValidation', 'none',
|
|
10
|
+
'--testcaseResultsCaptureWarnings',
|
|
10
11
|
],
|
|
11
12
|
assets=[
|
|
12
13
|
ConformanceSuiteAssetConfig.conformance_suite(
|
|
@@ -18,20 +19,18 @@ config = ConformanceSuiteConfig(
|
|
|
18
19
|
*NL_PACKAGES['NL-INLINE-2024'],
|
|
19
20
|
],
|
|
20
21
|
expected_additional_testcase_errors={f"conformance-suite-2024-sbr-domein-handelsregister/tests/{s}": val for s, val in {
|
|
21
|
-
'G3-
|
|
22
|
-
|
|
22
|
+
'G3-6-3_3/index.xml:TC2_invalid': {
|
|
23
|
+
# Testcase expects only 3.6.3.3, but has a filename that has invalid characters (3.6.3.3)
|
|
24
|
+
# AND {base} with > 20 characters (3.6.3.1)
|
|
25
|
+
'baseComponentInDocumentNameExceedsTwentyCharacters': 1,
|
|
23
26
|
},
|
|
24
27
|
'G4-1-2_1/index.xml:TC2_valid': {
|
|
25
28
|
'undefinedLanguageForTextFact': 1,
|
|
26
|
-
'taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport':
|
|
29
|
+
'taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport': 5,
|
|
27
30
|
},
|
|
28
31
|
'RTS_Annex_II_Par_1_RTS_Annex_IV_par_7/index.xml:TC2_valid': {
|
|
29
32
|
'undefinedLanguageForTextFact': 1,
|
|
30
|
-
'taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport':
|
|
31
|
-
},
|
|
32
|
-
'RTS_Annex_II_Par_1_RTS_Annex_IV_par_7/index.xml:TC4_invalid': {
|
|
33
|
-
'undefinedLanguageForTextFact': 1,
|
|
34
|
-
'taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport': 1,
|
|
33
|
+
'taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport': 5,
|
|
35
34
|
},
|
|
36
35
|
'RTS_Annex_IV_Par_1_G3-1-4_1/index.xml:TC2_invalid': {
|
|
37
36
|
'message:valueKvKIdentifier': 13,
|
|
@@ -46,21 +45,18 @@ config = ConformanceSuiteConfig(
|
|
|
46
45
|
},
|
|
47
46
|
'RTS_Annex_IV_Par_6/index.xml:TC2_valid': {
|
|
48
47
|
'undefinedLanguageForTextFact': 1,
|
|
49
|
-
'taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport':
|
|
48
|
+
'taggedTextFactOnlyInLanguagesOtherThanLanguageOfAReport': 5,
|
|
50
49
|
},
|
|
51
50
|
}.items()},
|
|
52
51
|
expected_failure_ids=frozenset([
|
|
53
52
|
# Conformance Suite Errors
|
|
54
53
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-3-1_2/index.xml:TC3_invalid', # Expects an error code with a preceding double quote. G3-3-1_3 expects the same code without the typo.
|
|
54
|
+
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-1_1/index.xml:TC2_invalid', # Produces: [err:XPTY0004] Variable set Het entity identifier scheme dat bij dit feit hoort MOET het standaard KVK identifier scheme zijn
|
|
55
|
+
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-1_2/index.xml:TC2_invalid', # Expects fractionElementUsed”. Note the double quote at the end.
|
|
55
56
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/RTS_Annex_IV_Par_2_G3-1-1_1/index.xml:TC2_invalid', # Expects NonIdenticalIdentifier instead of nonIdenticalIdentifier (note the cap N)
|
|
56
57
|
|
|
57
58
|
|
|
58
59
|
# Not Implemented
|
|
59
|
-
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-1_1/index.xml:TC2_invalid',
|
|
60
|
-
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-1_2/index.xml:TC2_invalid',
|
|
61
|
-
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-1_3/index.xml:TC2_invalid',
|
|
62
|
-
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-1_4/index.xml:TC2_invalid',
|
|
63
|
-
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-1_5/index.xml:TC2_invalid',
|
|
64
60
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-2_1/index.xml:TC2_invalid',
|
|
65
61
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-4-2_1/index.xml:TC3_invalid',
|
|
66
62
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-5-1_1/index.xml:TC3_invalid',
|
|
@@ -73,7 +69,6 @@ config = ConformanceSuiteConfig(
|
|
|
73
69
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-5-3_1/index.xml:TC2_invalid',
|
|
74
70
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-5-4_1/index.xml:TC2_invalid',
|
|
75
71
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-6-2_1/index.xml:TC2_invalid',
|
|
76
|
-
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-6-3_3/index.xml:TC2_invalid',
|
|
77
72
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G3-7-1_1/index.xml:TC2_invalid',
|
|
78
73
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G4-1-1_1/index.xml:TC3_invalid',
|
|
79
74
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G4-1-1_1/index.xml:TC4_invalid',
|
|
@@ -108,6 +103,7 @@ config = ConformanceSuiteConfig(
|
|
|
108
103
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G5-1-3_2/index.xml:TC2_invalid',
|
|
109
104
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/G6-1-1_1/index.xml:TC2_invalid',
|
|
110
105
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/RTS_Annex_II_Par_1/index.xml:TC3_invalid',
|
|
106
|
+
'conformance-suite-2024-sbr-domein-handelsregister/tests/RTS_Annex_II_Par_1_RTS_Annex_IV_par_7/index.xml:TC4_invalid',
|
|
111
107
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/RTS_Annex_III_Par_1/index.xml:TC2_invalid',
|
|
112
108
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/RTS_Annex_III_Par_1/index.xml:TC3_invalid',
|
|
113
109
|
'conformance-suite-2024-sbr-domein-handelsregister/tests/RTS_Annex_IV_Par_11_G4-2-2_1/index.xml:TC2_invalid',
|
|
@@ -6513,7 +6513,7 @@
|
|
|
6513
6513
|
<ix:nonNumeric name="gsd:ReportingPeriodEndDate" contextRef="ctx-1">2023-12-31</ix:nonNumeric>
|
|
6514
6514
|
<ix:nonNumeric name="gsd:PrecedingReportingPeriodStartDate" contextRef="ctx-1">2022-01-01</ix:nonNumeric>
|
|
6515
6515
|
<ix:nonNumeric name="gsd:PredingReportingPeriodEndDate" contextRef="ctx-1">2022-12-31</ix:nonNumeric>
|
|
6516
|
-
<ix:nonNumeric name="gsd:DateOfGeneralMeeting" contextRef="ctx-1">
|
|
6516
|
+
<ix:nonNumeric name="gsd:DateOfGeneralMeeting" contextRef="ctx-1">2020-03-27</ix:nonNumeric>
|
|
6517
6517
|
<ix:nonNumeric name="fsa:ClassOfReportingEntity" contextRef="ctx-1">Reporting class C, medium-size enterprise</ix:nonNumeric>
|
|
6518
6518
|
<ix:nonNumeric name="sob:DateOfApprovalOfAnnualReport" contextRef="ctx-1">2020-03-27</ix:nonNumeric>
|
|
6519
6519
|
<ix:nonNumeric name="gsd:IdentificationNumberCvrOfSubmittingEnterprise" contextRef="ctx-1">32570119</ix:nonNumeric>
|
|
@@ -518,7 +518,7 @@
|
|
|
518
518
|
<gsd:AddressOfSubmittingEnterprisePostcodeAndTown contextRef="ID_0" xml:lang="da">København K, 1304</gsd:AddressOfSubmittingEnterprisePostcodeAndTown>
|
|
519
519
|
<gsd:AddressOfSubmittingEnterpriseStreetAndNumber contextRef="ID_0" xml:lang="da">Adelgade 15</gsd:AddressOfSubmittingEnterpriseStreetAndNumber>
|
|
520
520
|
<gsd:DateOfFoundationOfReportingEntity contextRef="ID_0" xml:lang="da">1983-12-23</gsd:DateOfFoundationOfReportingEntity>
|
|
521
|
-
<gsd:DateOfGeneralMeeting contextRef="ID_0" xml:lang="da">2023-03-
|
|
521
|
+
<gsd:DateOfGeneralMeeting contextRef="ID_0" xml:lang="da">2023-03-16</gsd:DateOfGeneralMeeting>
|
|
522
522
|
<gsd:EmailOfReportingEntity contextRef="ID_0" xml:lang="da">EmailOfReportingEntity@EmailOfReportingEntity</gsd:EmailOfReportingEntity>
|
|
523
523
|
<gsd:FaxNumberOfReportingEntity contextRef="ID_0" xml:lang="da">00000000</gsd:FaxNumberOfReportingEntity>
|
|
524
524
|
<gsd:HomepageOfReportingEntity contextRef="ID_0" xml:lang="da">HomepageOfReportingEntity</gsd:HomepageOfReportingEntity>
|
|
@@ -19,4 +19,14 @@
|
|
|
19
19
|
<error>DBA.FR89</error>
|
|
20
20
|
</result>
|
|
21
21
|
</variation>
|
|
22
|
+
<variation id="valid" name="Valid">
|
|
23
|
+
<description>
|
|
24
|
+
InformationOnTypeOfSubmittedReport is Interim report (6 months) which forces the validation to short circuit.
|
|
25
|
+
</description>
|
|
26
|
+
<data>
|
|
27
|
+
<instance readMeFirst="true">fr89-valid.xhtml</instance>
|
|
28
|
+
</data>
|
|
29
|
+
<result>
|
|
30
|
+
</result>
|
|
31
|
+
</variation>
|
|
22
32
|
</testcase>
|