ixbrl-viewer 1.4.26__py3-none-any.whl → 1.4.28__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 ixbrl-viewer might be problematic. Click here for more details.

@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '1.4.26'
16
- __version_tuple__ = version_tuple = (1, 4, 26)
15
+ __version__ = version = '1.4.28'
16
+ __version_tuple__ = version_tuple = (1, 4, 28)
@@ -407,6 +407,14 @@ class IXBRLViewerBuilder:
407
407
  for n, report in enumerate(self.reports):
408
408
  self.footnoteRelationshipSet = ModelRelationshipSet(report, "XBRL-footnotes")
409
409
  self.currentTargetReport = self.newTargetReport(getattr(report, "ixdsTarget", None))
410
+ softwareCredits = set()
411
+ for document in report.urlDocs.values():
412
+ if document.type not in (Type.INLINEXBRL, Type.INLINEXBRLDOCUMENTSET):
413
+ continue
414
+ matches = document.creationSoftwareMatches(document.creationSoftwareComment)
415
+ softwareCredits.update(matches)
416
+ if softwareCredits:
417
+ self.currentTargetReport["softwareCredits"] = list(softwareCredits)
410
418
  for f in report.facts:
411
419
  self.addFact(report, f)
412
420
  self.currentTargetReport["rels"] = self.getRelationships(report)