arelle-release 2.36.31__py3-none-any.whl → 2.36.33__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 +2 -2
- arelle/CntlrWinMain.py +11 -2
- arelle/ViewFileRelationshipSet.py +4 -2
- arelle/ViewWinRelationshipSet.py +4 -3
- arelle/_version.py +2 -2
- arelle/formula/XPathParser.py +1 -1
- arelle/logging/handlers/LogHandlerWithXml.py +12 -4
- arelle/rendering/RenderingLayout.py +1 -1
- {arelle_release-2.36.31.dist-info → arelle_release-2.36.33.dist-info}/METADATA +3 -2
- {arelle_release-2.36.31.dist-info → arelle_release-2.36.33.dist-info}/RECORD +15 -15
- {arelle_release-2.36.31.dist-info → arelle_release-2.36.33.dist-info}/WHEEL +1 -1
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj +2 -2
- {arelle_release-2.36.31.dist-info → arelle_release-2.36.33.dist-info}/entry_points.txt +0 -0
- {arelle_release-2.36.31.dist-info → arelle_release-2.36.33.dist-info/licenses}/LICENSE.md +0 -0
- {arelle_release-2.36.31.dist-info → arelle_release-2.36.33.dist-info}/top_level.txt +0 -0
arelle/CntlrCmdLine.py
CHANGED
|
@@ -1069,7 +1069,7 @@ class CntlrCmdLine(Cntlr.Cntlr):
|
|
|
1069
1069
|
|
|
1070
1070
|
for pluginXbrlMethod in PluginManager.pluginClassMethods("CntlrCmdLine.Filing.Start"):
|
|
1071
1071
|
pluginXbrlMethod(self, options, filesource, _entrypointFiles, sourceZipStream=sourceZipStream, responseZipStream=responseZipStream)
|
|
1072
|
-
if len(_entrypointFiles) == 0:
|
|
1072
|
+
if len(_entrypointFiles) == 0 and not options.packages:
|
|
1073
1073
|
if options.entrypointFile:
|
|
1074
1074
|
msg = _("No XBRL entry points could be loaded from provided file: {}").format(options.entrypointFile)
|
|
1075
1075
|
else:
|
|
@@ -1296,7 +1296,7 @@ class CntlrCmdLine(Cntlr.Cntlr):
|
|
|
1296
1296
|
self.modelManager.close(modelDiffReport)
|
|
1297
1297
|
elif modelXbrl:
|
|
1298
1298
|
self.modelManager.close(modelXbrl)
|
|
1299
|
-
if not options.keepOpen:
|
|
1299
|
+
if filesource is not None and not options.keepOpen:
|
|
1300
1300
|
# Archive filesource potentially used by multiple reports may still be open.
|
|
1301
1301
|
filesource.close()
|
|
1302
1302
|
|
arelle/CntlrWinMain.py
CHANGED
|
@@ -681,7 +681,16 @@ class CntlrWinMain (Cntlr.Cntlr):
|
|
|
681
681
|
elif isinstance(view, ViewWinDTS.ViewDTS):
|
|
682
682
|
ViewFileDTS.viewDTS(modelXbrl, filename)
|
|
683
683
|
else:
|
|
684
|
-
|
|
684
|
+
if isinstance(view.arcrole, tuple) and len(view.arcrole) > 0 and view.arcrole[0] == "Calculation":
|
|
685
|
+
# "arcrole" is overloaded with special strings that are sometimes used magically to query
|
|
686
|
+
# the model and other times just to provide a header value. In the case of Calculation, it's
|
|
687
|
+
# only the header used in the GUI view and including it here when going to save will throw
|
|
688
|
+
# an exception.
|
|
689
|
+
arcrole = XbrlConst.summationItems
|
|
690
|
+
else:
|
|
691
|
+
arcrole = view.arcrole
|
|
692
|
+
|
|
693
|
+
ViewFileRelationshipSet.viewRelationshipSet(modelXbrl, filename, view.tabTitle, arcrole, labelrole=view.labelrole, lang=view.lang)
|
|
685
694
|
except (IOError, EnvironmentError) as err:
|
|
686
695
|
tkinter.messagebox.showwarning(_("arelle - Error"),
|
|
687
696
|
_("Failed to save {0}:\n{1}").format(
|
|
@@ -988,7 +997,7 @@ class CntlrWinMain (Cntlr.Cntlr):
|
|
|
988
997
|
hasView = ViewWinRelationshipSet.viewRelationshipSet(modelXbrl, self.tabWinTopRt, XbrlConst.parentChild, lang=self.labelLang)
|
|
989
998
|
if hasView and topView is None: topView = modelXbrl.views[-1]
|
|
990
999
|
currentAction = "calculation linkbase view"
|
|
991
|
-
hasView = ViewWinRelationshipSet.viewRelationshipSet(modelXbrl, self.tabWinTopRt, ("Calculation",
|
|
1000
|
+
hasView = ViewWinRelationshipSet.viewRelationshipSet(modelXbrl, self.tabWinTopRt, ("Calculation", XbrlConst.summationItems), lang=self.labelLang)
|
|
992
1001
|
if hasView and topView is None: topView = modelXbrl.views[-1]
|
|
993
1002
|
currentAction = "dimensions relationships view"
|
|
994
1003
|
hasView = ViewWinRelationshipSet.viewRelationshipSet(modelXbrl, self.tabWinTopRt, "XBRL-dimensions", lang=self.labelLang)
|
|
@@ -31,8 +31,10 @@ COL_WIDTHS = {
|
|
|
31
31
|
"Name": 40, "Namespace": 60, "LocalName": 40, "Documentation": 80
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
def hasCalcArcrole(arcroles: tuple[str] | str) -> bool:
|
|
35
|
-
|
|
34
|
+
def hasCalcArcrole(arcroles: tuple[str | tuple[str, ...], ...] | str) -> bool:
|
|
35
|
+
if isinstance(arcroles, (tuple, list)):
|
|
36
|
+
return any(hasCalcArcrole(arcrole) for arcrole in arcroles)
|
|
37
|
+
return arcroles in XbrlConst.summationItems
|
|
36
38
|
|
|
37
39
|
class ViewRelationshipSet(ViewFile.View):
|
|
38
40
|
def __init__(self, modelXbrl, outfile, header, labelrole, lang, cols):
|
arelle/ViewWinRelationshipSet.py
CHANGED
|
@@ -8,6 +8,7 @@ from arelle.ModelRelationshipSet import ModelRelationshipSet
|
|
|
8
8
|
from arelle.ModelDtsObject import ModelRelationship
|
|
9
9
|
from arelle.ModelFormulaObject import ModelFilter
|
|
10
10
|
from arelle.ModelObject import ModelObject
|
|
11
|
+
from arelle.ViewFileRelationshipSet import hasCalcArcrole
|
|
11
12
|
from arelle.ViewUtil import viewReferences, groupRelationshipSet, groupRelationshipLabel
|
|
12
13
|
from arelle.XbrlConst import conceptNameLabelRole, documentationLabel, widerNarrower
|
|
13
14
|
|
|
@@ -89,7 +90,7 @@ class ViewRelationshipSet(ViewWinTree.ViewTree):
|
|
|
89
90
|
self.treeView.heading("type", text=_("Type"))
|
|
90
91
|
self.treeView.column("references", width=200, anchor="w", stretch=False)
|
|
91
92
|
self.treeView.heading("references", text=_("References"))
|
|
92
|
-
elif self.arcrole
|
|
93
|
+
elif hasCalcArcrole(self.arcrole):
|
|
93
94
|
self.treeView.column("#0", width=300, anchor="w")
|
|
94
95
|
self.treeView["columns"] = ("weight", "balance")
|
|
95
96
|
self.treeView.column("weight", width=48, anchor="w", stretch=False)
|
|
@@ -253,7 +254,7 @@ class ViewRelationshipSet(ViewWinTree.ViewTree):
|
|
|
253
254
|
self.treeView.set(childnode, "preferredLabel", preferredLabel)
|
|
254
255
|
self.treeView.set(childnode, "type", concept.niceType)
|
|
255
256
|
self.treeView.set(childnode, "references", viewReferences(concept))
|
|
256
|
-
elif self.arcrole
|
|
257
|
+
elif hasCalcArcrole(self.arcrole):
|
|
257
258
|
if isRelation:
|
|
258
259
|
self.treeView.set(childnode, "weight", "{:+0g} ".format(modelObject.weight))
|
|
259
260
|
self.treeView.set(childnode, "balance", concept.balance)
|
|
@@ -313,7 +314,7 @@ class ViewRelationshipSet(ViewWinTree.ViewTree):
|
|
|
313
314
|
for modelRel in childRelationshipSet.fromModelObject(concept):
|
|
314
315
|
nestedRelationshipSet = childRelationshipSet
|
|
315
316
|
targetRole = modelRel.targetRole
|
|
316
|
-
if self.arcrole
|
|
317
|
+
if hasCalcArcrole(self.arcrole):
|
|
317
318
|
childPrefix = "({:0g}) ".format(modelRel.weight) # format without .0 on integer weights
|
|
318
319
|
elif targetRole is None or len(targetRole) == 0:
|
|
319
320
|
targetRole = relationshipSet.linkrole
|
arelle/_version.py
CHANGED
arelle/formula/XPathParser.py
CHANGED
|
@@ -817,7 +817,7 @@ expr <<= orExpr
|
|
|
817
817
|
# doesn't reset the streamlined setting of the Forward expression instance.
|
|
818
818
|
assert isinstance(expr.expr, ParserElement)
|
|
819
819
|
expr.streamlined = expr.expr.streamlined
|
|
820
|
-
xpathExpr = expr + StringEnd()
|
|
820
|
+
xpathExpr = expr + StringEnd()
|
|
821
821
|
|
|
822
822
|
|
|
823
823
|
# map operator symbols to corresponding arithmetic operations
|
|
@@ -68,15 +68,23 @@ class LogHandlerWithXml(logging.Handler):
|
|
|
68
68
|
entityEncode(msg),
|
|
69
69
|
refs))
|
|
70
70
|
def recordToJson(self, logRec: logging.LogRecord) -> dict[str, Any]:
|
|
71
|
-
message = {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
message = {
|
|
72
|
+
"text": self.format(logRec),
|
|
73
|
+
"args": self._buildJsonMessageArgs(logRec),
|
|
74
|
+
}
|
|
75
75
|
return {"code": getattr(logRec, "messageCode", ""),
|
|
76
76
|
"level": logRec.levelname.lower(),
|
|
77
77
|
"refs": getattr(logRec, "refs", []),
|
|
78
78
|
"message": message}
|
|
79
79
|
|
|
80
|
+
def _buildJsonMessageArgs(self, logRec: logging.LogRecord) -> dict[str, Any]:
|
|
81
|
+
if logRec.args and isinstance(logRec.args, Mapping):
|
|
82
|
+
return {
|
|
83
|
+
n: str(v)
|
|
84
|
+
for n, v in logRec.args.items()
|
|
85
|
+
}
|
|
86
|
+
return {}
|
|
87
|
+
|
|
80
88
|
def recordToHtml(self, logRec: logging.LogRecord) -> str:
|
|
81
89
|
record = ["<tr>"]
|
|
82
90
|
record.append(f"<td>{getattr(logRec, 'messageCode', '')}</td>")
|
|
@@ -464,7 +464,7 @@ def bodyCells(view, row, yStrctNodes, xStrctNodes, zAspectStrctNodes, lytMdlYCel
|
|
|
464
464
|
if justify is None:
|
|
465
465
|
justify = "right" if fp.isNumeric else "left"
|
|
466
466
|
if conceptNotAbstract:
|
|
467
|
-
if factsVals or ignoreDimValidity or isFactDimensionallyValid(
|
|
467
|
+
if factsVals or ignoreDimValidity or isFactDimensionallyValid(view, fp) or isEntryPrototype:
|
|
468
468
|
lytMdlCell = LytMdlBodyCell(lytMdlXCells, isOpenAspectEntrySurrogate)
|
|
469
469
|
lytMdlCell.facts = factsVals
|
|
470
470
|
fp.clear() # dereference
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: arelle-release
|
|
3
|
-
Version: 2.36.
|
|
3
|
+
Version: 2.36.33
|
|
4
4
|
Summary: An open source XBRL platform.
|
|
5
5
|
Author-email: "arelle.org" <support@arelle.org>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -56,6 +56,7 @@ Provides-Extra: webserver
|
|
|
56
56
|
Requires-Dist: cheroot<11,>=8; extra == "webserver"
|
|
57
57
|
Requires-Dist: CherryPy==18.*; extra == "webserver"
|
|
58
58
|
Requires-Dist: tornado==6.*; extra == "webserver"
|
|
59
|
+
Dynamic: license-file
|
|
59
60
|
|
|
60
61
|
# Arelle
|
|
61
62
|
|
|
@@ -1,12 +1,12 @@
|
|
|
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=B4C8ZnfRH67WVkFUFy3G_bTQ_vGc-DbQK6SLc-fcSCg,94266
|
|
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
|
|
8
8
|
arelle/CntlrWebMain.py,sha256=eOzqrp0XA3TrOu7m6Arcvnmdxt7-7zQ8xyaLs-dpDHg,51028
|
|
9
|
-
arelle/CntlrWinMain.py,sha256=
|
|
9
|
+
arelle/CntlrWinMain.py,sha256=eSdO_PQynuZcE3S7BnZyP-wnn_9oiUOMlF0Qe4Dl8x0,96812
|
|
10
10
|
arelle/CntlrWinTooltip.py,sha256=6MzoAIfkYnNu_bl_je8n0adhwmKxAIcymkg9Tij9Z4M,7951
|
|
11
11
|
arelle/DialogAbout.py,sha256=XXzMV0fO4BQ3-l1Puirzmn7EZEdmgJg7JNYdJm1FueM,1987
|
|
12
12
|
arelle/DialogArcroleGroup.py,sha256=r81OT3LFmMkoROpFenk97oVEyQhibKZ1QgDHvMsyCl0,7547
|
|
@@ -82,7 +82,7 @@ arelle/ViewFileDTS.py,sha256=IlbBTKFT8grC4N4cWdam8UsUaVFeiy7MfL5PdyEefvA,2029
|
|
|
82
82
|
arelle/ViewFileFactList.py,sha256=AVYoDJnhUoIkX7fT2D-bOrKP5g1JAwVnmSr4FYhT4iI,7194
|
|
83
83
|
arelle/ViewFileFactTable.py,sha256=I3U6XomCHE5bnbUN_WMq80LyYnPz0GRgYdRDm8Pu3tg,17013
|
|
84
84
|
arelle/ViewFileFormulae.py,sha256=753p3pAZsoxx6-3b_xR_CDFReeMBgBZOCV_TIO0FuJE,4740
|
|
85
|
-
arelle/ViewFileRelationshipSet.py,sha256=
|
|
85
|
+
arelle/ViewFileRelationshipSet.py,sha256=beQ6vGHJgpVwB3upofuPG0Rys2yt7GxsO4BcT96_nL8,16814
|
|
86
86
|
arelle/ViewFileRenderedGrid.py,sha256=I0Q6tyhbu1vcZvWiigAGrPK2bHv_ixsZvLr3merYPJo,14112
|
|
87
87
|
arelle/ViewFileRenderedLayout.py,sha256=aCTpOMBUIKYE4Xu1OFPoo_NTqp1NqefpXze6qWcDKw8,12170
|
|
88
88
|
arelle/ViewFileRenderedStructure.py,sha256=VemGa9HlVHvazPD3-yOrtDWTggNBkHkNtzXHtLUqngA,6192
|
|
@@ -102,7 +102,7 @@ arelle/ViewWinGrid.py,sha256=v9Fog-NC5XGdiZchgNQa-bM7BPrBS4Hs8MUlF0PYLi0,2731
|
|
|
102
102
|
arelle/ViewWinList.py,sha256=dz7qip9DpvVi96j71MZQoQpaVguO4FRka-_TOnsJtaE,4318
|
|
103
103
|
arelle/ViewWinPane.py,sha256=ZTz1fL3-QXZLAIMjqAjGoe9IEMVG7s9AzFYamV2PTco,2783
|
|
104
104
|
arelle/ViewWinProperties.py,sha256=FutWixP6g-_riNsnCxef6dej_kNqH_E2F3anse60aV4,2403
|
|
105
|
-
arelle/ViewWinRelationshipSet.py,sha256=
|
|
105
|
+
arelle/ViewWinRelationshipSet.py,sha256=rllE_pru2GRpAPQJrXMF_Kxw1vRel2UCqW-kHrNn6hU,25583
|
|
106
106
|
arelle/ViewWinRenderedGrid.py,sha256=OFFypVdoPke6FVa0fPC0TaFAC2nBOIsJOFF62xNsTnQ,84625
|
|
107
107
|
arelle/ViewWinRoleTypes.py,sha256=hc1pM5Q_LYOxDxMJTvG1O4_pQ0Uni9kpZ6hPuxKNs9w,4794
|
|
108
108
|
arelle/ViewWinRssFeed.py,sha256=htgZKAxA3ivuE6p-jvtU2HIx78LAtfAkO2Q-KtGYHIk,6057
|
|
@@ -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=uG5D5wvoM-ih0Hv6B0NFCUifNZ7mZWV6Rd0Ox93XjQw,515
|
|
127
127
|
arelle/typing.py,sha256=Ct5lrNKRow_o9CraMEXNza8nFsJ_iGIKoUeGfPs2dxI,1084
|
|
128
128
|
arelle/api/Session.py,sha256=Vd09RAutWX7mxHSsrW7Bl8CsE1UzXpQpAJsZb55mqng,6188
|
|
129
129
|
arelle/archive/CustomLogger.py,sha256=v_JXOCQLDZcfaFWzxC9FRcEf9tQi4rCI4Sx7jCuAVQI,1231
|
|
@@ -231,7 +231,7 @@ arelle/formula/FormulaConsisAsser.py,sha256=hO4GZwozM5cGl1xTU6OwoF3LlaMxAEB5Oy0r
|
|
|
231
231
|
arelle/formula/FormulaEvaluator.py,sha256=WKNyJz1Os9gsKedJXLNC9y9u11Ea4_JQ-RAI7gSFmPU,82600
|
|
232
232
|
arelle/formula/ValidateFormula.py,sha256=b_stG7h8RhaSsPt07_x-GRBHOl2uy-JNSMd6v-jkg_w,95942
|
|
233
233
|
arelle/formula/XPathContext.py,sha256=JerF1suUL9RcKRFeF6kXZXGkuw6yaMb6gijNacrqugU,49386
|
|
234
|
-
arelle/formula/XPathParser.py,sha256
|
|
234
|
+
arelle/formula/XPathParser.py,sha256=hJkHT4siC8VpSP5JQ4a1qqSYWwHeDprK6aakrhxlcDk,50344
|
|
235
235
|
arelle/formula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
236
|
arelle/images/arelle-full-word.ico,sha256=jsAzyAJZTtVPafxhgFQtdWJj7r_r0YhX_iWvWnZ4QKg,2430
|
|
237
237
|
arelle/images/arelle-mac-icon-4.gif,sha256=jTXc1dBEgZuXuZVd1XOuLuXfpjNW_pusn0mPhHhkOtk,2619
|
|
@@ -285,7 +285,7 @@ arelle/locale/fr/LC_MESSAGES/fr.po,sha256=D2WHLI9NktcxgmGx91fRLNLoVjvO3Z0jjS9AJl
|
|
|
285
285
|
arelle/locale/ru/LC_MESSAGES/arelle.mo,sha256=i004xdiJMpXus5DnSz2y708H5vPt78Pu5ApkrdC9Fqw,375378
|
|
286
286
|
arelle/locale/ru/LC_MESSAGES/ru.po,sha256=pPACN6dXlimkr2KJ5l-B0fv4PhlijWAz3fVYJ5h3SaM,449579
|
|
287
287
|
arelle/logging/formatters/LogFormatter.py,sha256=bKZjW-HGhN6vaNvqyEHFaLIQjlnDgo1cBSZgl13H2c0,1876
|
|
288
|
-
arelle/logging/handlers/LogHandlerWithXml.py,sha256=
|
|
288
|
+
arelle/logging/handlers/LogHandlerWithXml.py,sha256=xj-m6aNh4gksxP9AjN0xkECxVdx9m7ElCC0lXkhFcUQ,4318
|
|
289
289
|
arelle/logging/handlers/LogToBufferHandler.py,sha256=tTzHRw9tn1Osrpc5rcKxk2iTEE3uIq5wb792z5RVYAs,612
|
|
290
290
|
arelle/logging/handlers/LogToPrintHandler.py,sha256=iT5eTZx5MXJRhI-vZjlenNOSDRgiNXSQhh398Njbje0,1299
|
|
291
291
|
arelle/logging/handlers/LogToXmlHandler.py,sha256=eQGI_AQ6XrfIN_wl4TKnbLw_5D1bZz1UaWvegV2qpQA,10489
|
|
@@ -430,7 +430,7 @@ arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticOracleDB.sql,sha256=4dtR-23PvsOHCC
|
|
|
430
430
|
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticPostgresDB.ddl,sha256=DYBE4m2gSp-2ktziN__TIj_UtJVeLy1NxteYzotxxT4,727913
|
|
431
431
|
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticSQLiteDB.ddl,sha256=TRb4zLoXUGKkBU1ZR5KCpMLBpujtNiL_WDdnv4DfBL0,726301
|
|
432
432
|
arelle/rendering/RenderingEvaluator.py,sha256=suQhQsx5KD1QJMGxIiPXGbUOKQMTwg1oSSJlgl8J8kk,17781
|
|
433
|
-
arelle/rendering/RenderingLayout.py,sha256=
|
|
433
|
+
arelle/rendering/RenderingLayout.py,sha256=XSrKiHOBZL-z4qvChpepjh3loxz8G84MCBRXozPxGrE,31082
|
|
434
434
|
arelle/rendering/RenderingResolution.py,sha256=W21PdF7UTmL546Hbtycaf2semGWOPNrpETDeQR9elnA,54553
|
|
435
435
|
arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd,sha256=BfDzYGRz5zofzjnvVP_ZdTVtddxKdsrYfjZ3dK_hJIQ,1243
|
|
436
436
|
arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd,sha256=52ehWcF5vW5NwrrCpjpi9Qy9An7BnWtcyescLzPgyy4,87677
|
|
@@ -706,6 +706,7 @@ arelle/utils/validate/ValidationPlugin.py,sha256=_WeRPXZUTCcSN3FLbFwiAe_2pAUTxZZ
|
|
|
706
706
|
arelle/utils/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
707
707
|
arelle/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
708
708
|
arelle/webserver/bottle.py,sha256=676nP8SOB42QscV0WIbXoSV9MwdgvbrzeIApxr6mlUI,171255
|
|
709
|
+
arelle_release-2.36.33.dist-info/licenses/LICENSE.md,sha256=rMbWwFLGzPgLoEjEu8LCmkpWDTqsvfOI-wzLSfeJsis,4107
|
|
709
710
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
710
711
|
tests/integration_tests/download_cache.py,sha256=jVMIVICsZjcVc9DCPPu3fCjF9_cWSS3tqSynhFs3oAM,4097
|
|
711
712
|
tests/integration_tests/integration_test_util.py,sha256=H7mncbv0T9ZeVyrtk9Hohe3k6jgcYykHkt-LGE-Q9aQ,10270
|
|
@@ -727,7 +728,7 @@ tests/integration_tests/scripts/tests/python_api_query_model.py,sha256=Ut87tvE-h
|
|
|
727
728
|
tests/integration_tests/scripts/tests/python_api_taxonomy_service.py,sha256=C6j7BB9h7CX_dUmVFkpnqElShffRSmCI-TMJkueztGM,2711
|
|
728
729
|
tests/integration_tests/scripts/tests/python_api_validate_esef.py,sha256=Qzi2RRGWjkTVhAjBB18DeJ3X_M9hJYH1TAk7j_RVv5Q,2423
|
|
729
730
|
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln,sha256=uzzvHUtKpmBPpoxdfHd7cCmAkdvjs7mMehO6YHebdTY,1499
|
|
730
|
-
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj,sha256=
|
|
731
|
+
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj,sha256=yqezhHX3r0lNY1yVVzD5wPH7qmUQluhlPBQ3RNuXpuQ,1387
|
|
731
732
|
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs,sha256=_0TvabpERmrfaoDSazN-xQAH0qzO3cAnuFHLGLRJnGU,20334
|
|
732
733
|
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs,sha256=0IC7tQ27uAqlt8ZGBrJPK7BPj3kjiodPcHWB3v_JT-o,29
|
|
733
734
|
tests/integration_tests/ui_tests/resources/workiva.zip,sha256=QtZzi1VcKkHhVa8J-I1wVpQFy-p6tsV95Z0HmI6XbXc,223544
|
|
@@ -1553,9 +1554,8 @@ tests/unit_tests/arelle/oim/test_load.py,sha256=NxiUauQwJVfWAHbbpsMHGSU2d3Br8Pki
|
|
|
1553
1554
|
tests/unit_tests/arelle/plugin/test_plugin_imports.py,sha256=bdhIs9frAnFsdGU113yBk09_jis-z43dwUItMFYuSYM,1064
|
|
1554
1555
|
tests/unit_tests/arelle/plugin/validate/ESEF/ESEF_Current/test_validate_css_url.py,sha256=XHABmejQt7RlZ0udh7v42f2Xb2STGk_fSaIaJ9i2xo0,878
|
|
1555
1556
|
tests/unit_tests/arelle/utils/validate/test_decorator.py,sha256=ZS8FqIY1g-2FCbjF4UYm609dwViax6qBMRJSi0vfuhY,2482
|
|
1556
|
-
arelle_release-2.36.
|
|
1557
|
-
arelle_release-2.36.
|
|
1558
|
-
arelle_release-2.36.
|
|
1559
|
-
arelle_release-2.36.
|
|
1560
|
-
arelle_release-2.36.
|
|
1561
|
-
arelle_release-2.36.31.dist-info/RECORD,,
|
|
1557
|
+
arelle_release-2.36.33.dist-info/METADATA,sha256=H_HCZ8brfvqRp7oFJpT7E7jz_uc1G9R5uu8m2qQKEo4,9032
|
|
1558
|
+
arelle_release-2.36.33.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
1559
|
+
arelle_release-2.36.33.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
|
|
1560
|
+
arelle_release-2.36.33.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
|
|
1561
|
+
arelle_release-2.36.33.dist-info/RECORD,,
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
</PropertyGroup>
|
|
12
12
|
|
|
13
13
|
<ItemGroup>
|
|
14
|
-
<PackageReference Include="FlaUI.TestUtilities" Version="
|
|
15
|
-
<PackageReference Include="FlaUI.UIA3.Signed" Version="
|
|
14
|
+
<PackageReference Include="FlaUI.TestUtilities" Version="5.0.0" />
|
|
15
|
+
<PackageReference Include="FlaUI.UIA3.Signed" Version="5.0.0" />
|
|
16
16
|
<PackageReference Include="JUnitTestLogger" Version="1.1.0" />
|
|
17
17
|
<PackageReference Include="JunitXml.TestLogger" Version="6.1.0" />
|
|
18
18
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
|
|
File without changes
|
|
File without changes
|
|
File without changes
|