|
The table given below is a list of parameters grouped under the TRANSFORMATION_TABLE tag, with a brief description, which can be used for terminal translation.
| Tag | Description |
|---|---|
|
TRANSFORMATION-TABLE |
It contains the list of TABLEs identified by their names and has VERSION attribute. |
|
TABLE |
It contains the list of transformation codes which have the following attributes:
|
|
TRANSFORM |
It contains the actual codes to be transformed. It has the following attributes:
|
For complete details, please refer to TransformationTable.dtd available in <CLI Home>/conf directory.
The following example explains the transformation of terminal codes between VT100 and IBM.
|
<TRANSFORMATION-TABLE> <TABLE NAME="vt100ToIbm" TYPE="byteHex"> <!--clear sequence--> <TRANSFORM CODE="1b 5b 48 1b 5b 4a" VALUE="1b 4b"/> <!--clear tabs--> <TRANSFORM CODE="1b 5b 33 67" VALUE="1b 31"/> <!--Cursor home--> <TRANSFORM CODE="1b 5b 48" VALUE="1b 48"/> <!--Cursor down--> <TRANSFORM CODE="1b 4f 42" VALUE="1b 4f"/> <!--Cursor left--> <TRANSFORM CODE="1b 4f 44" VALUE="1b 44"/> <!--Cursor right--> </TABLE> </TRANSFORMATION-TABLE> |
This table can be used to perform escape codes transformation from vt100 terminal to an IBM terminal.
|