diff options
Diffstat (limited to 'Master/texmf-dist/tex/context/base/data-bin.lua')
-rw-r--r-- | Master/texmf-dist/tex/context/base/data-bin.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/context/base/data-bin.lua b/Master/texmf-dist/tex/context/base/data-bin.lua new file mode 100644 index 00000000000..5f342c33981 --- /dev/null +++ b/Master/texmf-dist/tex/context/base/data-bin.lua @@ -0,0 +1,26 @@ +if not modules then modules = { } end modules ['data-bin'] = { + version = 1.001, + comment = "companion to luat-lib.tex", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + copyright = "PRAGMA ADE / ConTeXt Development Team", + license = "see context related readme files" +} + +local finders, openers, loaders = resolvers.finders, resolvers.openers, resolvers.loaders + +function resolvers.findbinfile(filename, filetype) + return resolvers.methodhandler('finders',file.collapse_path(filename), filetype) +end + +function resolvers.openbinfile(filename) + return resolvers.methodhandler('loaders',file.collapse_path(filename)) +end + +function resolvers.loadbinfile(filename, filetype) + local fname = resolvers.findbinfile(file.collapse_path(filename), filetype) + if fname and fname ~= "" then + return resolvers.openbinfile(fname) + else + return unpack(loaders.notfound) + end +end |