Our approach to creating a Visual Trace as a UML Sequence Diagram.
17 Oct, 2021
Version 0.0.1
Initial Release
17 Oct, 2021
Version 1.0.4
Added description for logistic regression calcilation
17 Oct, 2021
Version 1.0.6
upd version
17 Oct, 2021
Version 1.0.5
upd description
17 Oct, 2021
Version 1.1.11
A service has been added to the project to support informing via telegram messenger and email about the status of products and systems
16 Oct, 2021
Version 1.0.4
Products for informing via telegram messenger and email continues and expands the appmsm-telestat project
16 Oct, 2021
Version 1.0.3
Youtube video is added
15 Oct, 2021
Version 1.0.2
Community article link is added
15 Oct, 2021
Version 1.0.0
Initial Release
15 Oct, 2021
Version 1.0.1
Community Article URL is added
15 Oct, 2021
Version 1.0.0
Initial Release
13 Oct, 2021
Version 3.5.0
Added support for creating HL7 XML empty fields
11 Oct, 2021
Version 3.2.1
Accept TLSv1 so debugging is possible on InterSystems versions that do not support TLSv1.2.
Handle WRITE output during debugging on older InterSystems versions.
Populate breadcrumb and outline based on chosen language mode rather than filename extension.
Improve GettingStarted documentation after user feedback.
10 Oct, 2021
Version 1.0.1
Fix a bad variable name for the mnemo --> see commit
10 Oct, 2021
Version 1.0.0
Added feature
Echo to the current device
Echo feature allows redirecting the output AND duplicates the write to the current device.
For example, in a terminal :
Do ##class(IORedirect.Redirect).ToString(1)
Write "this an echo test"
Do ##class(IORedirect.Redirect).RestoreIO()
Set outputString = ##class(IORedirect.Redirect).Get()
Write "Var outputString : ", outputString
Redirect the write to a string variable and also write the text in the terminal.
This feature is available with :
Do ##class(IORedirect.Redirect).ToString(1)
Do ##class(IORedirect.Redirect).ToStream(stream, 1)
Do ##class(IORedirect.Redirect).ToFileCharacter(filename, 1)
Do ##class(IORedirect.Redirect).ToGlobal($Name(^||IORedirect), 1)
Echo is enabled with the value 1 on the last argument.