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
|
if not modules then modules = { } end modules ['lxml-inf'] = {
version = 1.001,
comment = "this module is the basis for the lxml-* ones",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- This file will be loaded runtime by x-pending.tex.
local status, stack
local function get(e,d)
local ns, tg = e.ns, e.tg
local name = tg
if ns ~= "" then name = ns .. ":" .. tg end
stack[d] = name
local ec = e.command
if ec == true then
ec = "system: text"
elseif ec == false then
ec = "system: skip"
elseif ec == nil then
ec = "system: not set"
elseif type(ec) == "string" then
ec = "setup: " .. ec
else -- function
ec = tostring(ec)
end
local tag = concat(stack," => ",1,d)
local s = status[tag]
if not s then
s = { }
status[tag] = s
end
s[ec] = (s[ec] or 0) + 1
end
local function get_command_status(id)
status, stack = {}, {}
if id then
xmlwithelements(get_id(id),get)
return status
else
local t = { }
for id, _ in next, loaded do
t[id] = get_command_status(id)
end
return t
end
end
lxml.get_command_status = get_command_status
|