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
|
if not modules then modules = { } end modules ['font-trt'] = {
version = 1.001,
comment = "companion to font-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local rawget, dofile, next = rawget, dofile, next
--[[ldx--
<p>We provide a simple treatment mechanism (mostly because I want to demonstrate
something in a manual). It's one of the few places where an lfg file gets loaded
outside the goodies manager.</p>
--ldx]]--
local treatments = utilities.storage.allocate()
fonts.treatments = treatments
local treatmentdata = { }
treatments.data = treatmentdata
treatments.filename = "treatments.lfg"
-- function treatments.load(name)
-- local filename = resolvers.findfile(name)
-- if filename and filename ~= "" then
-- local goodies = dofile(filename)
-- if goodies then
-- local treatments = goodies.treatments
-- if treatments then
-- for name, data in next, treatments do
-- treatmentdata[name] = data -- always wins
-- end
-- end
-- end
-- end
-- end
table.setmetatableindex(treatmentdata,function(t,k)
local files = resolvers.findfiles(treatments.filename)
if files then
for i=1,#files do
local goodies = dofile(files[i])
if goodies then
local treatments = goodies.treatments
if treatments then
for name, data in next, treatments do
if not rawget(t,name) then
t[name] = data
end
end
end
end
end
end
table.setmetatableindex(treatmentdata,nil)
return treatmentdata[k]
end)
|