summaryrefslogtreecommitdiff
path: root/tex/context/modules/mkiv/s-xml-analyzers.lua
diff options
context:
space:
mode:
authorContext Git Mirror Bot <phg42.2a@gmail.com>2016-06-25 15:40:51 +0200
committerContext Git Mirror Bot <phg42.2a@gmail.com>2016-06-25 15:40:51 +0200
commitb2a2304cbb0c65040d7b118ac9b857d304e333e6 (patch)
treeed5212e37a91ec78c12d9f72ca1186a59c139b40 /tex/context/modules/mkiv/s-xml-analyzers.lua
parentb2276ae7a04a9f9c35403e508670049d8c3e4b3e (diff)
downloadcontext-b2a2304cbb0c65040d7b118ac9b857d304e333e6.tar.gz
2016-06-25 14:42:00
Diffstat (limited to 'tex/context/modules/mkiv/s-xml-analyzers.lua')
-rw-r--r--tex/context/modules/mkiv/s-xml-analyzers.lua12
1 files changed, 7 insertions, 5 deletions
diff --git a/tex/context/modules/mkiv/s-xml-analyzers.lua b/tex/context/modules/mkiv/s-xml-analyzers.lua
index c356d4c37..99f6a1cdf 100644
--- a/tex/context/modules/mkiv/s-xml-analyzers.lua
+++ b/tex/context/modules/mkiv/s-xml-analyzers.lua
@@ -119,7 +119,11 @@ local function analyze(filename)
end
for i=1,#filename do
- local root = xml.load(filename[i])
+ local name = filename[i]
+ local root = xml.load(name)
+ --
+ logs.report("xml analyze","loaded: %s",name)
+ --
collect(root)
--
local names = root.statistics.entities.names
@@ -160,9 +164,9 @@ function moduledata.xml.analyzers.structure(filename)
for attribute, values in sortedhash(attributes) do
local n = table.count(values)
if attribute == "id" or attribute == "xml:id" or n > maxnofattributes then
- NC() context(attribute) NC() context("%s different values",n) NC() NR()
+ NC() context("@%s",attribute) NC() context("%s different values",n) NC() NR()
else
- NC() context(attribute) NC() context.puretext(sequenced(values)) NC() NR()
+ NC() context("@%s",attribute) NC() context.puretext(sequenced(values)) NC() NR()
end
end
end
@@ -194,5 +198,3 @@ function moduledata.xml.analyzers.entities(filename)
end
context.stoptabulate()
end
-
-