diff options
author | Karl Berry <karl@freefriends.org> | 2013-04-08 00:43:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-04-08 00:43:40 +0000 |
commit | 824f7b0903de8ad7f6ee3d7656005e4c59155e06 (patch) | |
tree | abfc8673ef9916f3ab7074e811207384c301492b /Master/texmf-dist/scripts/context/lua/mtx-interface.lua | |
parent | 689aefb0727676ed3cddf331337b4be226495e72 (diff) |
context import for TL13, from www.pragma-ade.com/context/beta/cont-tmf.zip
git-svn-id: svn://tug.org/texlive/trunk@29731 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/context/lua/mtx-interface.lua')
-rw-r--r-- | Master/texmf-dist/scripts/context/lua/mtx-interface.lua | 60 |
1 files changed, 40 insertions, 20 deletions
diff --git a/Master/texmf-dist/scripts/context/lua/mtx-interface.lua b/Master/texmf-dist/scripts/context/lua/mtx-interface.lua index f52fde345d5..82cefd63817 100644 --- a/Master/texmf-dist/scripts/context/lua/mtx-interface.lua +++ b/Master/texmf-dist/scripts/context/lua/mtx-interface.lua @@ -11,25 +11,43 @@ local gsub, format, gmatch, find = string.gsub, string.format, string.gmatch, st local utfchar, utfgsub = utf.char, utf.gsub local helpinfo = [[ ---interfaces generate context interface files ---messages generate context message files ---labels generate context label files - ---context equals --interfaces --messages --languages - ---scite generate scite interface ---bbedit generate bbedit interface files ---jedit generate jedit interface files ---textpad generate textpad interface files ---text create text files for commands and environments ---raw report commands to the console ---check generate check file - ---toutf replace named characters by utf ---preprocess preprocess mkvi files to tex files [force,suffix] - ---suffix use given suffix for output files ---force force action even when in doubt +<?xml version="1.0"?> +<application> + <metadata> + <entry name="name">mtx-interface</entry> + <entry name="detail">ConTeXt Interface Related Goodies</entry> + <entry name="version">0.13</entry> + </metadata> + <flags> + <category name="basic"> + <subcategory> + <flag name="interfaces"><short>generate context interface files</short></flag> + <flag name="messages"><short>generate context message files</short></flag> + <flag name="labels"><short>generate context label files</short></flag> + </subcategory> + <subcategory> + <flag name="context"><short>equals <ref name="interfaces"/> <ref name="messages"/> <ref name="languages"/></short></flag> + </subcategory> + <subcategory> + <flag name="scite"><short>generate scite interface</short></flag> + <flag name="bbedit"><short>generate bbedit interface files</short></flag> + <flag name="jedit"><short>generate jedit interface files</short></flag> + <flag name="textpad"><short>generate textpad interface files</short></flag> + <flag name="text"><short>create text files for commands and environments</short></flag> + <flag name="raw"><short>report commands to the console</short></flag> + <flag name="check"><short>generate check file</short></flag> + </subcategory> + <subcategory> + <flag name="toutf"><short>replace named characters by utf</short></flag> + <flag name="preprocess"><short>preprocess mkvi files to tex files [force,suffix]</short></flag> + </subcategory> + <subcategory> + <flag name="suffix"><short>use given suffix for output files</short></flag> + <flag name="force"><short>force action even when in doubt</short></flag> + </subcategory> + </category> + </flags> +</application> ]] local application = logs.application { @@ -50,7 +68,7 @@ local messageinterfaces = { 'en','cs','de','it','nl','ro','fr','pe','no' } local function collect(filename,class,data) if data then local result = { } - for name, list in next, data do + for name, list in table.sortedhash(data) do result[#result+1] = format("keywordclass.%s.%s=\\\n",class,name) for i=1,#list do if i%5 == 0 then @@ -596,6 +614,8 @@ elseif ea("scite") or ea("bbedit") or ea("jedit") or ea("textpad") or ea("text") if ea("raw") then scripts.interface.editor("raw") end +elseif ea("exporthelp") then + application.export(ea("exporthelp"),environment.files[1]) else application.help() end |