terminfo revision 328875
1
2#------------------------------------------------------------------------------
3# $File: terminfo,v 1.9 2017/04/28 16:28:58 christos Exp $
4# terminfo:  file(1) magic for terminfo
5#
6# URL: http://invisible-island.net/ncurses/man/term.5.html
7# URL: http://invisible-island.net/ncurses/man/scr_dump.5.html
8#
9# Workaround for Targa image type by Joerg Jenderek
10# GRR: line below too general as it catches also
11# Targa image type 1 with 26 long identification field
12# and HELP.DSK
130	string		\032\001
14# 5th character of terminal name list, but not Targa image pixel size (15 16 24 32)
15>16	ubyte		>32
16# namelist, if more than 1 separated by "|" like "st|stterm| simpleterm 0.4.1"
17>>12	regex		\^[a-zA-Z0-9][a-zA-Z0-9.][^|]*	Compiled terminfo entry "%-s"
18!:mime	application/x-terminfo
19# no extension
20#!:ext
21#
22# While the compiled terminfo uses little-endian format irregardless of
23# platform, SystemV screen dumps do not.  They came later, and that detail was
24# overlooked.
25#
26# AIX and HPUX use the SVr4 big-endian format
27# Solaris uses the SVr3 formats (sparc and x86 differ endian-ness)
280	beshort		0433 		SVr2 curses screen image, big-endian
290	beshort		0434		SVr3 curses screen image, big-endian
300	beshort		0435		SVr4 curses screen image, big-endian
31#
320	leshort		0433		SVr2 curses screen image, little-endian
330	leshort		0434		SVr3 curses screen image, little-endian
340	leshort		0435		SVr4 curses screen image, little-endian
35#
36# Rather than SVr4, Solaris "xcurses" writes this header:
370	regex		\^MAX=[0-9]+,[0-9]+$
38>1	regex		\^BEG=[0-9]+,[0-9]+$
39>2	regex		\^SCROLL=[0-9]+,[0-9]+$
40>3	regex		\^VMIN=[0-9]+$
41>4	regex		\^VTIME=[0-9]+$
42>5	regex		\^FLAGS=0x[[:xdigit:]]+$
43>6	regex		\^FG=[0-9],[0-9]+$
44>7	regex		\^BG=[0-9]+,[0-9]+,	Solaris xcurses screen image
45#
46# ncurses5 (and before) did not use a magic number, making screen dumps "data".
47# ncurses6 (2015) uses this format, ignoring byte-order
480	string	\210\210\210\210ncurses	ncurses6 screen image
49#
50# PDCurses added this in 2005
510	string		PDC\001		PDCurses screen image
52