Logo
Dnote

Hotline Notes

Jul 2023 630.01 Update for MCP 63

Update for MCP 63

Mar 2019 600.01 Update for mcp 60

Update for MCP 60 Some preparation for post 2035 time(6) changes

Apr 2017 590.01 FIx release level

Cosmetic change only

Aug 2010 540.01 Update version for MCP 54.1

Internal change only.

Jan 2007 510.02 Do not assign SUPERVISOR usercode

In non-TCPIP environments (i.e. BNA-style port files only), HOTLINE will now not assign a usercode of SUPERVISOR to the YOURUSERCODE attribute of the HOTLINE port file. Previously, this caused the HOTLINE client to fail to match the port file offered by RECORDER because METALOGIC/SUPERVISOR/RECORDER is now initiated as a library without any usercode.

Mar 2005 510.01 UPDATE FOR MCP 5.1 COMPATIBILITY

This change updates HOTLINE's internal version to reflect MCP 51.1 compatibility.

Feb 2004 490.02 TAKE DUMP AND ISSUE INFO MESSAGE

HOTLINE will now take a program dump and issue an informational message if its remote file has been forcibly closed by an external event. This change is intended to provide additional diagnostics in the event of an unexpected failure.

Jan 2003 480.05 IMPROVE DISPLAY OF MULTI LINE MESSAGES

This change improves the display of messages which are too long to fit on one line.

Jan 2003 480.04 ALLOW HOTLINE TO DISPLAY HIGHLIGHT CHARACTERS

This change allows selected highlight characters to be passed to Hotline to allow the use of colour to distinguish different messages. The headlight characters supported are SI(Underline) SO (Reverse) SUB (Bright) and CAN (Blink).

These can be passed using a lookup function in the record statement.

EX.
RECORD[MYTEST}("#[SI] TEST Underline");
RECORD[MYTEST]("#[CAN] Test Blink");
RECORD[MYTEST]("#[SUB]#[SO] Test Bright Reverse");
One possible use would be to easily distinguish between messages from different hosts.
TT DEFINE + ODTSEQUENCE BOB_RECORD(MSG):
Case HostName Of
Begin
"METAMCP1":$Pre:="#[SUB]";
"METAMCP2":$Pre:="#[CAN]";
"METAMCPA" :$Pre:="#[SO]";
"METAMCPB" :$Pre:="#[SI]";
Else :$Pre:=" ";
End;
Record[BOB]($Pre,Text)

TT DO BOB_RECORD this is a test

would add a different highlight depending on from which host it was run.