JANUS DISPXT: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (misc formatting)
m (add link)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<span class="pageSubtitle">Display loaded translate tables</span>
<span class="pageSubtitle">Display loaded translate tables</span>


This command displays either a list of all loaded translate tables or the contents of the single translate table that you specify. Translate tables are used to convert received input or transmitted output on Janus connections.
This command displays a list of all loaded [[Translate tables|Janus translate tables]] or the contents of the single translate table that you specify. Translate tables are used to convert received input or transmitted output on Janus connections.


==Syntax==
==Syntax==
<p class="syntax">JANUS DISPXT [xtable]</p>
<p class="syntax">JANUS DISPXT [<span class="term">xtable</span>]</p>


Where:
Where:
Line 10: Line 10:
<var class="term">xtable</var> identifies a translate table to be displayed. If no table name is specified, all currently loaded translate tables are displayed.
<var class="term">xtable</var> identifies a translate table to be displayed. If no table name is specified, all currently loaded translate tables are displayed.


==Usage notes==
Each translate table consists of a pair of tables of hexadecimal values, one table for ASCII to EBCDIC translation and one for EBCDIC to ASCII.
Each translate table consists of a pair of tables of hexadecimal values, one table for ASCII to EBCDIC translation and one for EBCDIC to ASCII.


The default translation table is named <code>STANDARD</code>. You can see the mappings in that table with:
The default translation table is named <code>STANDARD</code>. You can see the (current, possibly edited) mappings in that table with:


<p class="code"> JANUS DISPXT STANDARD</p>
<p class="code">JANUS DISPXT STANDARD </p>


For ease of viewing and editing the default table, you might want to create a procedure like the following:
For ease of viewing and editing the default table, you might want to create a procedure like the following:


<p class="code"> DELETE PROC -2
<p class="code">DELETE PROC -2
USE PROC -2
USE PROC -2
JANUS DISPXT STANDARD
JANUS DISPXT STANDARD
E -2
E -2
...
...
</p>
</p>


For information about loading translate tables, see <var>[[JANUS LOADXT]]</var>.
==See also==
<ul>
<li><var>[[JANUS LOADXT]]</var>, for information about loading translate tables </li>


==See also==
<li>[[List of Janus commands|Janus command list]] </li>
[[List_of_Janus_commands|Janus command list]]
</ul>


[[Category:Janus commands|JANUS DISPXT]]
[[Category:Janus commands|JANUS DISPXT]]

Latest revision as of 19:57, 10 January 2018

Display loaded translate tables

This command displays a list of all loaded Janus translate tables or the contents of the single translate table that you specify. Translate tables are used to convert received input or transmitted output on Janus connections.

Syntax

JANUS DISPXT [xtable]

Where:

xtable identifies a translate table to be displayed. If no table name is specified, all currently loaded translate tables are displayed.

Usage notes

Each translate table consists of a pair of tables of hexadecimal values, one table for ASCII to EBCDIC translation and one for EBCDIC to ASCII.

The default translation table is named STANDARD. You can see the (current, possibly edited) mappings in that table with:

JANUS DISPXT STANDARD

For ease of viewing and editing the default table, you might want to create a procedure like the following:

DELETE PROC -2 USE PROC -2 JANUS DISPXT STANDARD E -2 ...

See also