1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
if not modules then modules = { } end modules ['luat-kps'] = {
version = 1.001,
comment = "companion to luatools.lua",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
--[[ldx--
<p>This file is used when we want the input handlers to behave like
<type>kpsewhich</type>. What to do with the following:</p>
<typing>
{$SELFAUTOLOC,$SELFAUTODIR,$SELFAUTOPARENT}{,{/share,}/texmf{-local,}/web2c}
$SELFAUTOLOC : /usr/tex/bin/platform
$SELFAUTODIR : /usr/tex/bin
$SELFAUTOPARENT : /usr/tex
</typing>
<p>How about just forgetting abou them?</p>
--ldx]]--
input = input or { }
input.suffixes = input.suffixes or { }
input.formats = input.formats or { }
input.suffixes['gf'] = { '<resolution>gf' }
input.suffixes['pk'] = { '<resolution>pk' }
input.suffixes['base'] = { 'base' }
input.suffixes['bib'] = { 'bib' }
input.suffixes['bst'] = { 'bst' }
input.suffixes['cnf'] = { 'cnf' }
input.suffixes['mem'] = { 'mem' }
input.suffixes['mf'] = { 'mf' }
input.suffixes['mfpool'] = { 'pool' }
input.suffixes['mft'] = { 'mft' }
input.suffixes['mppool'] = { 'pool' }
input.suffixes['graphic/figure'] = { 'eps', 'epsi' }
input.suffixes['texpool'] = { 'pool' }
input.suffixes['PostScript header'] = { 'pro' }
input.suffixes['ist'] = { 'ist' }
input.suffixes['web'] = { 'web', 'ch' }
input.suffixes['cweb'] = { 'w', 'web', 'ch' }
input.suffixes['cmap files'] = { 'cmap' }
input.suffixes['lig files'] = { 'lig' }
input.suffixes['bitmap font'] = { }
input.suffixes['MetaPost support'] = { }
input.suffixes['TeX system documentation'] = { }
input.suffixes['TeX system sources'] = { }
input.suffixes['dvips config'] = { }
input.suffixes['type42 fonts'] = { }
input.suffixes['web2c files'] = { }
input.suffixes['other text files'] = { }
input.suffixes['other binary files'] = { }
input.suffixes['opentype fonts'] = { 'otf' }
input.suffixes['fmt'] = { 'fmt' }
input.suffixes['texmfscripts'] = { 'rb','lua','py','pl' }
input.suffixes['pdftex config'] = { }
input.suffixes['Troff fonts'] = { }
input.suffixes['ls-R'] = { }
--[[ldx--
<p>If you wondered abou tsome of the previous mappings, how about
the next bunch:</p>
--ldx]]--
input.formats['bib'] = ''
input.formats['bst'] = ''
input.formats['mft'] = ''
input.formats['ist'] = ''
input.formats['web'] = ''
input.formats['cweb'] = ''
input.formats['MetaPost support'] = ''
input.formats['TeX system documentation'] = ''
input.formats['TeX system sources'] = ''
input.formats['Troff fonts'] = ''
input.formats['dvips config'] = ''
input.formats['graphic/figure'] = ''
input.formats['ls-R'] = ''
input.formats['other text files'] = ''
input.formats['other binary files'] = ''
input.formats['gf'] = ''
input.formats['pk'] = ''
input.formats['base'] = 'MFBASES'
input.formats['cnf'] = ''
input.formats['mem'] = 'MPMEMS'
input.formats['mf'] = 'MFINPUTS'
input.formats['mfpool'] = 'MFPOOL'
input.formats['mppool'] = 'MPPOOL'
input.formats['texpool'] = 'TEXPOOL'
input.formats['PostScript header'] = 'TEXPSHEADERS'
input.formats['cmap files'] = 'CMAPFONTS'
input.formats['type42 fonts'] = 'T42FONTS'
input.formats['web2c files'] = 'WEB2C'
input.formats['pdftex config'] = 'PDFTEXCONFIG'
input.formats['texmfscripts'] = 'TEXMFSCRIPTS'
input.formats['bitmap font'] = ''
input.formats['lig files'] = 'LIGFONTS'
|