if not modules then modules = { } end modules ['trac-exp'] = { version = 1.001, comment = "companion to trac-log.mkiv", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files" } local formatters = string.formatters local reporters = logs.reporters local xmlserialize = xml.serialize local xmlcollected = xml.collected local xmltext = xml.text local xmlfirst = xml.first local xmlfilter = xml.filter -- there is no need for a newhandlers { name = "help", parent = "string" } local function flagdata(flag) local name = flag.at.name or "" local value = flag.at.value or "" -- local short = xmlfirst(s,"/short") -- local short = xmlserialize(short,xs) local short = xmltext(xmlfirst(flag,"/short")) or "" return name, value, short end local function exampledata(example) local command = xmltext(xmlfirst(example,"/command")) or "" local comment = xmltext(xmlfirst(example,"/comment")) or "" return command, comment end local function categorytitle(category) return xmltext(xmlfirst(category,"/title")) or "" end local exporters = logs.exporters function exporters.man(specification,...) local root = xml.convert(specification.helpinfo or "") if not root then return end local xs = xml.gethandlers("string") xml.sethandlersfunction(xs,"short",function(e,handler) xmlserialize(e.dt,handler) end) xml.sethandlersfunction(xs,"ref", function(e,handler) handler.handle("--"..e.at.name) end) local wantedcategories = select("#",...) == 0 and true or table.tohash { ... } local nofcategories = xml.count(root,"/application/flags/category") local name = xmlfilter(root,"/application/metadata/entry[@name='name']/text()") local detail = xmlfilter(root,"/application/metadata/entry[@name='detail']/text()") or name local version = xmlfilter(root,"/application/metadata/entry[@name='version']/text()") or "0.00" local banner = specification.banner or detail or name -- local result = { } -- -- .TH "context" "1" "some date" "version" "ConTeXt" -- we use a fake date as I don't want to polute the git repos -- local runner = string.match(name,"^mtx%-(.*)") if runner then runner = formatters["mtxrun --script %s"](runner) else runner = name end -- result[#result+1] = formatters[ [[.TH "%s" "1" "%s" "version %s" "%s" ]] ](name,os.date("01-01-%Y"),version,detail) result[#result+1] = formatters[ [[.SH "NAME" %s]] ] () result[#result+1] = ".PP" result[#result+1] = formatters[ [[.SH "SYNOPSIS" ]] ](name) result[#result+1] = ".PP" result[#result+1] = formatters[ [[.SH \fB%s\fP [ \fIOPTIONS\fP ... ] [ \fIFILENAMES\fP ] ]] ](runner) result[#result+1] = formatters[ [[.SH "DESCRIPTION"\n%s\n ]] ](detail) -- for category in xmlcollected(root,"/application/flags/category") do if nofcategories > 1 then result[#result+1] = formatters['.SH "OPTIONS: %s"'](string.upper(category.at.name or "all")) else result[#result+1] = '.SH "OPTIONS"' end for subcategory in xmlcollected(category,"/subcategory") do for flag in xmlcollected(subcategory,"/flag") do local name, value, short = flagdata(flag) if value == "" then result[#result+1] = formatters[".TP\n.B --%s\n%s"](name,short) else result[#result+1] = formatters[".TP\n.B --%s=%s\n%s"](name,value,short) end end end end result[#result+1] = formatters['.SH "AUTHOR"\n%s'](specification.moreinfo) return table.concat(result,"\n") end local craptemplate = [[ %s %s ]] function exporters.xml(specification,...) local helpinfo = specification.helpinfo if type(helpinfo) == "string" then if string.find(helpinfo,"^<%?xml") then return helpinfo end elseif type(helpinfo) == "table" then helpinfo = table.concat(helpinfo,"\n\n") else helpinfo = "no help" end return formatters[craptemplate](specification.banner or "?",helpinfo) end -- the following template is optimized a bit for space -- local bodytemplate = [[ --

Command line options

-- -- -- -- -- -- -- 1 then -- ?> -- -- -- -- -- -- --
flagvaluedescription
--
--
--





-- ]] local bodytemplate = [[

Command line options

1 then ?>
flagvaluedescription
--





]] function exporters.html(specification,...) local root = xml.convert(specification.helpinfo or "") if not root then return end local xs = xml.gethandlers("string") xml.sethandlersfunction(xs,"short",function(e,handler) xmlserialize(e.dt,handler) end) xml.sethandlersfunction(xs,"ref", function(e,handler) handler.handle("--"..e.at.name) end) local wantedcategories = select("#",...) == 0 and true or table.tohash { ... } local nofcategories = xml.count(root,"/application/flags/category") local name = xmlfilter(root,"/application/metadata/entry[@name='name']/text()") local detail = xmlfilter(root,"/application/metadata/entry[@name='detail']/text()") or name local version = xmlfilter(root,"/application/metadata/entry[@name='version']/text()") or "0.00" local banner = specification.banner or detail or name -- dofile(resolvers.findfile("trac-lmx.lua","tex")) -- local htmltemplate = io.loaddata(resolvers.findfile("context-base.lmx","tex")) or "no template" -- local body = lmx.convertstring(bodytemplate, { nofcategories = nofcategories, wantedcategories = wantedcategories, root = root, -- moreinfo = specification.moreinfo, flagdata = flagdata, exampledata = exampledata, categorytitle = categorytitle, }) local html = lmx.convertstring(htmltemplate, { maintext = body, title = banner, bottomtext = "wiki: http://contextgarden.net | mail: ntg-context@ntg.nl | website: http://www.pragma-ade.nl", }) -- return html end