summaryrefslogtreecommitdiff
path: root/tex/context/base/file-syn.lua
blob: 1be9fb4b12f0f2bb36abff8029680106429de31a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
if not modules then modules = { } end modules ['file-syn'] = {
    version   = 1.001,
    comment   = "companion to file-syn.mkvi",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local report_files = logs.reporter("files")

environment.filesynonyms = environment.filesynonyms or { }
local filesynonyms       = environment.filesynonyms

storage.register("environment/filesynonyms", filesynonyms, "environment.filesynonyms")

local function truefilename(name)
    local realname = filesynonyms[name] or name
    if realname ~= name then
        return truefilename(realname)
    else
        return realname
    end
end

environment.truefilename = truefilename

function commands.truefilename(name)
    context(truefilename(name))
end

function commands.definefilesynonym(name,realname)
    local synonym = filesynonyms[name]
    if synonym then
        interfaces.showmessage("files",1,{ name or "?", realname or "?", synonym or "?" })
    end
    filesynonyms[name] = realname
end

function commands.definefilefallback(name,alternatives)
    local names = utilities.parser.settings_to_array(alternatives)
    for i=1,#names do
        local realname = resolvers.findfile(names[i])
        if realname ~= "" then
            filesynonyms[name] = realname
            break
        end
    end
end