ixbrl-viewer 1.4.54__py3-none-any.whl → 1.4.56__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.
- iXBRLViewerPlugin/__init__.py +9 -1
- iXBRLViewerPlugin/_version.py +2 -2
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/src/i18n/cy/translation.json +1 -1
- iXBRLViewerPlugin/viewer/src/i18n/en/translation.json +1 -1
- iXBRLViewerPlugin/viewer/src/i18n/es/translation.json +1 -1
- iXBRLViewerPlugin/viewer/src/js/inspector.js +1 -0
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js +40 -27
- iXBRLViewerPlugin/viewer/src/js/theme.js +4 -3
- iXBRLViewerPlugin/viewer/src/js/util.js +21 -1
- iXBRLViewerPlugin/viewer/src/less/colours.less +3 -0
- iXBRLViewerPlugin/viewer/src/less/inspector.less +16 -1
- iXBRLViewerPlugin/viewer/src/less/viewer.less +28 -6
- {ixbrl_viewer-1.4.54.dist-info → ixbrl_viewer-1.4.56.dist-info}/METADATA +1 -1
- {ixbrl_viewer-1.4.54.dist-info → ixbrl_viewer-1.4.56.dist-info}/RECORD +20 -20
- {ixbrl_viewer-1.4.54.dist-info → ixbrl_viewer-1.4.56.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.54.dist-info → ixbrl_viewer-1.4.56.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.54.dist-info → ixbrl_viewer-1.4.56.dist-info}/WHEEL +0 -0
- {ixbrl_viewer-1.4.54.dist-info → ixbrl_viewer-1.4.56.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.54.dist-info → ixbrl_viewer-1.4.56.dist-info}/top_level.txt +0 -0
iXBRLViewerPlugin/__init__.py
CHANGED
|
@@ -129,7 +129,15 @@ def processModel(cntlr: Cntlr, modelXbrl: ModelXbrl):
|
|
|
129
129
|
print(ex)
|
|
130
130
|
except Exception as ex:
|
|
131
131
|
tb = traceback.format_tb(sys.exc_info()[2])
|
|
132
|
-
cntlr.addToLog(
|
|
132
|
+
cntlr.addToLog(
|
|
133
|
+
"Exception %(ex)s\nTraceback %(traceback)s",
|
|
134
|
+
messageCode=EXCEPTION_MESSAGE_CODE,
|
|
135
|
+
level=logging.ERROR,
|
|
136
|
+
messageArgs={
|
|
137
|
+
'ex': ex,
|
|
138
|
+
'traceback': tb,
|
|
139
|
+
},
|
|
140
|
+
)
|
|
133
141
|
|
|
134
142
|
def generateViewer(
|
|
135
143
|
cntlr: Cntlr,
|
iXBRLViewerPlugin/_version.py
CHANGED