blob: 1d1e8b74959a74b3614e5c8b8c33b979222cccca (
plain)
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
|
if not modules then modules = { } end modules ['data-bin'] = {
version = 1.001,
comment = "companion to luat-lib.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local resolvers = resolvers
local methodhandler = resolvers.methodhandler
function resolvers.findbinfile(filename,filetype)
return methodhandler('finders',filename,filetype)
end
function resolvers.openbinfile(filename)
return methodhandler('loaders',filename) -- a bit weird: load
end
function resolvers.loadbinfile(filename,filetype)
local fname = methodhandler('finders',filename,filetype)
if fname and fname ~= "" then
return resolvers.openbinfile(fname) -- a bit weird: open
else
return resolvers.loaders.notfound()
end
end
|