ACC SHELL
# -*- ksh -*-
#
# This file is part of a2ps.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
#
# This file defines the rules used by a2ps to select an encoding.
#
# The format of each line is:
#
# <alias> <encoding>
# In which case whenever <alias> is requested, a2ps uses the
# <encoding>. Matching to <alias> is case insensitive, hence <alias>
# and <key> must be lower case in this file.
#
# *** <path>
# In which case a encoding.map is included at this point.
# This may be the case if you define a personal extension
# of the system's encoding.map
#
########################################################################
# The ASCII encoding
########################################################################
ascii ascii
us-ascii ascii
########################################################################
# The ISO encodings
########################################################################
latin1 iso1
iso1 iso1
iso-8859-1 iso1
latin2 iso2
iso2 iso2
iso-8859-2 iso2
latin3 iso3
iso3 iso3
iso-8859-3 iso3
latin4 iso4
iso4 iso4
iso-8859-4 iso4
iso5 iso5
iso-8859-5 iso5
iso7 iso7
iso-8859-7 iso7
# The following lines _are_not_an_error_.
# This is the right correspondance between ISO-8859 names
# and the Latin n nick name.
latin5 iso9
iso9 iso9
iso-8859-9 iso9
latin6 iso10
iso10 iso10
iso-8859-10 iso10
latin7 iso13
iso13 iso13
iso-8859-13 iso13
# This one is nicknamed latin0 too
iso15 iso15
latin9 iso15
latin0 iso15
iso-8859-15 iso15
# Handle ASCII as simple ISO 8859-1
ansi_x3.4-1968 iso15
# Workaround wich may help for UTF-8
utf-8 iso15
########################################################################
# Other encodings
########################################################################
koi8-r koi8
koi8r koi8
koi8 koi8
koi koi8
########################################################################
# Some architectures specific char sets
########################################################################
# MicroSoft's CP 1250
ms-cp1250 ms-cp1250
cp1250 ms-cp1250
1250 ms-cp1250
cep ms-cp1250
# IBM PC
ibm-cp850 ibm-cp850
cp850 ibm-cp850
850 ibm-cp850
pc ibm-cp850
ibmpc ibm-cp850
# PC graphic
ibm-cp437 ibm-cp437
cp437 ibm-cp437
437 ibm-cp437
pcg ibm-cp437
# Hewlett Packard
hp hp
hp8 hp
# Apple' Macintosh
mac mac
macintosh mac
ACC SHELL 2018