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
|
if not modules then modules = { } end modules ['mult-chk'] = {
version = 1.001,
comment = "companion to mult-chk.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local format = string.format
local lpegmatch = lpeg.match
local type = type
local texsprint, ctxcatcodes = tex.sprint, tex.ctxcatcodes
local make_settings_to_hash_pattern, settings_to_set = utilities.parsers.make_settings_to_hash_pattern, utilities.parsers.settings_to_set
local allocate = utilities.storage.allocate
interfaces = interfaces or { }
interfaces.syntax = allocate {
test = { keys = table.tohash { "a","b","c","d","e","f","g" } }
}
function interfaces.invalidkey(kind,key)
commands.writestatus("syntax","invalid key '%s' for '%s' in line %s",key,kind,tex.inputlineno)
end
function interfaces.setvalidkeys(kind,list)
local s = interfaces.syntax[kind]
if not s then
interfaces.syntax[kind] = {
keys = settings_to_set(list)
}
else
s.keys = settings_to_set(list)
end
end
function interfaces.addvalidkeys(kind,list)
local s = interfaces.syntax[kind]
if not s then
interfaces.syntax[kind] = {
keys = settings_to_set(list)
}
else
settings_to_set(list,s.keys)
end
end
-- weird code, looks incomplete ... probbably an experiment
local prefix, kind, keys
local function set(key,value)
if keys and not keys[key] then
interfaces.invalidkey(kind,key)
else
context.setsomevalue(prefix,key,value)
end
end
local pattern = make_settings_to_hash_pattern(set,"tolerant")
function interfaces.getcheckedparameters(k,p,s)
if s and s ~= "" then
prefix, kind = p, k
keys = k and k ~= "" and interfaces.syntax[k].keys
lpegmatch(pattern,s)
end
end
-- _igcp_ = interfaces.getcheckedparameters
|