From b4b9e98b13cad714598d2183d4156882ed5703c1 Mon Sep 17 00:00:00 2001 From: Hans Hagen Date: Mon, 18 Mar 2013 18:49:00 +0100 Subject: beta 2013.03.18 18:49 --- scripts/context/lua/mtx-interface.lua | 2 +- scripts/context/lua/mtx-server.lua | 11 +++++------ scripts/context/lua/mtxlibs.lua | 7 ++++--- scripts/context/lua/mtxrun.lua | 31 ++++++++++++++++--------------- scripts/context/stubs/mswin/mtxrun.lua | 31 ++++++++++++++++--------------- scripts/context/stubs/unix/mtxrun | 31 ++++++++++++++++--------------- 6 files changed, 58 insertions(+), 55 deletions(-) (limited to 'scripts') diff --git a/scripts/context/lua/mtx-interface.lua b/scripts/context/lua/mtx-interface.lua index f52fde345..2790e2669 100644 --- a/scripts/context/lua/mtx-interface.lua +++ b/scripts/context/lua/mtx-interface.lua @@ -50,7 +50,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 diff --git a/scripts/context/lua/mtx-server.lua b/scripts/context/lua/mtx-server.lua index c74319a71..766df8da8 100644 --- a/scripts/context/lua/mtx-server.lua +++ b/scripts/context/lua/mtx-server.lua @@ -191,13 +191,13 @@ function handlers.generic(client,configuration,data,suffix,iscontent) end end ---~ return os.date() +-- return os.date() ---~ return { content = "crap" } +-- return { content = "crap" } ---~ return function(configuration,filename) ---~ return { content = filename } ---~ end +-- return function(configuration,filename) +-- return { content = filename } +-- end local loaded = { } @@ -383,5 +383,4 @@ else application.help() end - -- mtxrun --script server --start => http://localhost:31415/mtx-server-ctx-startup.lua diff --git a/scripts/context/lua/mtxlibs.lua b/scripts/context/lua/mtxlibs.lua index 9559e33d5..38c040b41 100644 --- a/scripts/context/lua/mtxlibs.lua +++ b/scripts/context/lua/mtxlibs.lua @@ -49,9 +49,10 @@ if not modules then modules = { } end modules ['mtxlibs'] = { -- the for context handy option to expose them in the normal ones. I might make the dependencies -- less but it probably makes no sense to waste time on them. -if not lpeg then require("lpeg") end --- not md5 then require("md5") end -- once we have the libs --- not lfs then require("lfs") end -- once we have the libs +if not lpeg then require("lpeg") end +if not md5 then xpcall(require,function() end,"md5") end +if not lfs then xpcall(require,function() end,"lfs") end +if not unicode then xpcall(require,function() end,"slunicode") end -- begin library merge diff --git a/scripts/context/lua/mtxrun.lua b/scripts/context/lua/mtxrun.lua index 6e2568435..5ab227cb5 100644 --- a/scripts/context/lua/mtxrun.lua +++ b/scripts/context/lua/mtxrun.lua @@ -275,7 +275,7 @@ do -- create closure to overcome 200 locals limit package.loaded["l-lpeg"] = package.loaded["l-lpeg"] or true --- original size: 26269, stripped down to: 14392 +-- original size: 26252, stripped down to: 14371 if not modules then modules={} end modules ['l-lpeg']={ version=1.001, @@ -617,9 +617,10 @@ function lpeg.counter(pattern) return #lpegmatch(pattern,str) end end +utf=utf or (unicode and unicode.utf8) or {} local utfcharacters=utf and utf.characters or string.utfcharacters -local utfgmatch=unicode and unicode.utf8.gmatch -local utfchar=utf and utf.char or (unicode and unicode.utf8 and unicode.utf8.char) +local utfgmatch=utf and utf.gmatch +local utfchar=utf and utf.char lpeg.UP=lpeg.P if utfcharacters then function lpeg.US(str) @@ -4777,7 +4778,7 @@ do -- create closure to overcome 200 locals limit package.loaded["util-tab"] = package.loaded["util-tab"] or true --- original size: 14459, stripped down to: 8507 +-- original size: 14491, stripped down to: 8512 if not modules then modules={} end modules ['util-tab']={ version=1.001, @@ -4805,12 +4806,12 @@ function tables.definetable(target,nofirst,nolast) if composed then composed=shortcut.."."..name shortcut=shortcut.."_"..name - t[#t+1]=format("local %s = %s if not %s then %s = { } %s = %s end",shortcut,composed,shortcut,shortcut,composed,shortcut) + t[#t+1]=formatters["local %s = %s if not %s then %s = { } %s = %s end"](shortcut,composed,shortcut,shortcut,composed,shortcut) else composed=name shortcut=name if not nofirst then - t[#t+1]=format("%s = %s or { }",composed,composed) + t[#t+1]=formatters["%s = %s or { }"](composed,composed) end end end @@ -4976,7 +4977,7 @@ function tables.encapsulate(core,capsule,protect) end for key,value in next,core do if capsule[key] then - print(format("\ninvalid inheritance '%s' in '%s': %s",key,tostring(core))) + print(formatters["\ninvalid %s %a in %a"]("inheritance",key,core)) os.exit() else capsule[key]=value @@ -4990,7 +4991,7 @@ function tables.encapsulate(core,capsule,protect) __index=capsule, __newindex=function(t,key,value) if capsule[key] then - print(format("\ninvalid overload '%s' in '%s'",key,tostring(core))) + print(formatters["\ninvalid %s %a' in %a"]("overload",key,core)) os.exit() else rawset(t,key,value) @@ -5080,11 +5081,11 @@ local function slowdrop(t) local j=0 for k,v in next,ti do j=j+1 - l[j]=format("%s=%q",k,v) + l[j]=formatters["%s=%q"](k,v) end - r[i]=format(" {%s},\n",concat(l)) + r[i]=formatters[" {%t},\n"](l) end - return format("return {\n%s}",concat(r)) + return formatters["return {\n%st}"](r) end local function fastdrop(t) local r={ "return {\n" } @@ -5092,14 +5093,14 @@ local function fastdrop(t) local ti=t[i] r[#r+1]=" {" for k,v in next,ti do - r[#r+1]=format("%s=%q",k,v) + r[#r+1]=formatters["%s=%q"](k,v) end r[#r+1]="},\n" end r[#r+1]="}" return concat(r) end -function table.drop(t,slow) +function table.drop(t,slow) if #t==0 then return "return { }" elseif slow==true then @@ -15391,8 +15392,8 @@ end -- of closure -- used libraries : l-lua.lua l-lpeg.lua l-function.lua l-string.lua l-table.lua l-io.lua l-number.lua l-set.lua l-os.lua l-file.lua l-md5.lua l-url.lua l-dir.lua l-boolean.lua l-unicode.lua l-math.lua util-str.lua util-tab.lua util-sto.lua util-prs.lua util-fmt.lua trac-set.lua trac-log.lua trac-inf.lua trac-pro.lua util-lua.lua util-deb.lua util-mrg.lua util-tpl.lua util-env.lua luat-env.lua lxml-tab.lua lxml-lpt.lua lxml-mis.lua lxml-aux.lua lxml-xml.lua data-ini.lua data-exp.lua data-env.lua data-tmp.lua data-met.lua data-res.lua data-pre.lua data-inp.lua data-out.lua data-fil.lua data-con.lua data-use.lua data-zip.lua data-tre.lua data-sch.lua data-lua.lua data-aux.lua data-tmf.lua data-lst.lua luat-sta.lua luat-fmt.lua -- skipped libraries : - --- original bytes : 636382 --- stripped bytes : 230412 +-- original bytes : 636397 +-- stripped bytes : 230443 -- end library merge diff --git a/scripts/context/stubs/mswin/mtxrun.lua b/scripts/context/stubs/mswin/mtxrun.lua index 6e2568435..5ab227cb5 100644 --- a/scripts/context/stubs/mswin/mtxrun.lua +++ b/scripts/context/stubs/mswin/mtxrun.lua @@ -275,7 +275,7 @@ do -- create closure to overcome 200 locals limit package.loaded["l-lpeg"] = package.loaded["l-lpeg"] or true --- original size: 26269, stripped down to: 14392 +-- original size: 26252, stripped down to: 14371 if not modules then modules={} end modules ['l-lpeg']={ version=1.001, @@ -617,9 +617,10 @@ function lpeg.counter(pattern) return #lpegmatch(pattern,str) end end +utf=utf or (unicode and unicode.utf8) or {} local utfcharacters=utf and utf.characters or string.utfcharacters -local utfgmatch=unicode and unicode.utf8.gmatch -local utfchar=utf and utf.char or (unicode and unicode.utf8 and unicode.utf8.char) +local utfgmatch=utf and utf.gmatch +local utfchar=utf and utf.char lpeg.UP=lpeg.P if utfcharacters then function lpeg.US(str) @@ -4777,7 +4778,7 @@ do -- create closure to overcome 200 locals limit package.loaded["util-tab"] = package.loaded["util-tab"] or true --- original size: 14459, stripped down to: 8507 +-- original size: 14491, stripped down to: 8512 if not modules then modules={} end modules ['util-tab']={ version=1.001, @@ -4805,12 +4806,12 @@ function tables.definetable(target,nofirst,nolast) if composed then composed=shortcut.."."..name shortcut=shortcut.."_"..name - t[#t+1]=format("local %s = %s if not %s then %s = { } %s = %s end",shortcut,composed,shortcut,shortcut,composed,shortcut) + t[#t+1]=formatters["local %s = %s if not %s then %s = { } %s = %s end"](shortcut,composed,shortcut,shortcut,composed,shortcut) else composed=name shortcut=name if not nofirst then - t[#t+1]=format("%s = %s or { }",composed,composed) + t[#t+1]=formatters["%s = %s or { }"](composed,composed) end end end @@ -4976,7 +4977,7 @@ function tables.encapsulate(core,capsule,protect) end for key,value in next,core do if capsule[key] then - print(format("\ninvalid inheritance '%s' in '%s': %s",key,tostring(core))) + print(formatters["\ninvalid %s %a in %a"]("inheritance",key,core)) os.exit() else capsule[key]=value @@ -4990,7 +4991,7 @@ function tables.encapsulate(core,capsule,protect) __index=capsule, __newindex=function(t,key,value) if capsule[key] then - print(format("\ninvalid overload '%s' in '%s'",key,tostring(core))) + print(formatters["\ninvalid %s %a' in %a"]("overload",key,core)) os.exit() else rawset(t,key,value) @@ -5080,11 +5081,11 @@ local function slowdrop(t) local j=0 for k,v in next,ti do j=j+1 - l[j]=format("%s=%q",k,v) + l[j]=formatters["%s=%q"](k,v) end - r[i]=format(" {%s},\n",concat(l)) + r[i]=formatters[" {%t},\n"](l) end - return format("return {\n%s}",concat(r)) + return formatters["return {\n%st}"](r) end local function fastdrop(t) local r={ "return {\n" } @@ -5092,14 +5093,14 @@ local function fastdrop(t) local ti=t[i] r[#r+1]=" {" for k,v in next,ti do - r[#r+1]=format("%s=%q",k,v) + r[#r+1]=formatters["%s=%q"](k,v) end r[#r+1]="},\n" end r[#r+1]="}" return concat(r) end -function table.drop(t,slow) +function table.drop(t,slow) if #t==0 then return "return { }" elseif slow==true then @@ -15391,8 +15392,8 @@ end -- of closure -- used libraries : l-lua.lua l-lpeg.lua l-function.lua l-string.lua l-table.lua l-io.lua l-number.lua l-set.lua l-os.lua l-file.lua l-md5.lua l-url.lua l-dir.lua l-boolean.lua l-unicode.lua l-math.lua util-str.lua util-tab.lua util-sto.lua util-prs.lua util-fmt.lua trac-set.lua trac-log.lua trac-inf.lua trac-pro.lua util-lua.lua util-deb.lua util-mrg.lua util-tpl.lua util-env.lua luat-env.lua lxml-tab.lua lxml-lpt.lua lxml-mis.lua lxml-aux.lua lxml-xml.lua data-ini.lua data-exp.lua data-env.lua data-tmp.lua data-met.lua data-res.lua data-pre.lua data-inp.lua data-out.lua data-fil.lua data-con.lua data-use.lua data-zip.lua data-tre.lua data-sch.lua data-lua.lua data-aux.lua data-tmf.lua data-lst.lua luat-sta.lua luat-fmt.lua -- skipped libraries : - --- original bytes : 636382 --- stripped bytes : 230412 +-- original bytes : 636397 +-- stripped bytes : 230443 -- end library merge diff --git a/scripts/context/stubs/unix/mtxrun b/scripts/context/stubs/unix/mtxrun index 6e2568435..5ab227cb5 100755 --- a/scripts/context/stubs/unix/mtxrun +++ b/scripts/context/stubs/unix/mtxrun @@ -275,7 +275,7 @@ do -- create closure to overcome 200 locals limit package.loaded["l-lpeg"] = package.loaded["l-lpeg"] or true --- original size: 26269, stripped down to: 14392 +-- original size: 26252, stripped down to: 14371 if not modules then modules={} end modules ['l-lpeg']={ version=1.001, @@ -617,9 +617,10 @@ function lpeg.counter(pattern) return #lpegmatch(pattern,str) end end +utf=utf or (unicode and unicode.utf8) or {} local utfcharacters=utf and utf.characters or string.utfcharacters -local utfgmatch=unicode and unicode.utf8.gmatch -local utfchar=utf and utf.char or (unicode and unicode.utf8 and unicode.utf8.char) +local utfgmatch=utf and utf.gmatch +local utfchar=utf and utf.char lpeg.UP=lpeg.P if utfcharacters then function lpeg.US(str) @@ -4777,7 +4778,7 @@ do -- create closure to overcome 200 locals limit package.loaded["util-tab"] = package.loaded["util-tab"] or true --- original size: 14459, stripped down to: 8507 +-- original size: 14491, stripped down to: 8512 if not modules then modules={} end modules ['util-tab']={ version=1.001, @@ -4805,12 +4806,12 @@ function tables.definetable(target,nofirst,nolast) if composed then composed=shortcut.."."..name shortcut=shortcut.."_"..name - t[#t+1]=format("local %s = %s if not %s then %s = { } %s = %s end",shortcut,composed,shortcut,shortcut,composed,shortcut) + t[#t+1]=formatters["local %s = %s if not %s then %s = { } %s = %s end"](shortcut,composed,shortcut,shortcut,composed,shortcut) else composed=name shortcut=name if not nofirst then - t[#t+1]=format("%s = %s or { }",composed,composed) + t[#t+1]=formatters["%s = %s or { }"](composed,composed) end end end @@ -4976,7 +4977,7 @@ function tables.encapsulate(core,capsule,protect) end for key,value in next,core do if capsule[key] then - print(format("\ninvalid inheritance '%s' in '%s': %s",key,tostring(core))) + print(formatters["\ninvalid %s %a in %a"]("inheritance",key,core)) os.exit() else capsule[key]=value @@ -4990,7 +4991,7 @@ function tables.encapsulate(core,capsule,protect) __index=capsule, __newindex=function(t,key,value) if capsule[key] then - print(format("\ninvalid overload '%s' in '%s'",key,tostring(core))) + print(formatters["\ninvalid %s %a' in %a"]("overload",key,core)) os.exit() else rawset(t,key,value) @@ -5080,11 +5081,11 @@ local function slowdrop(t) local j=0 for k,v in next,ti do j=j+1 - l[j]=format("%s=%q",k,v) + l[j]=formatters["%s=%q"](k,v) end - r[i]=format(" {%s},\n",concat(l)) + r[i]=formatters[" {%t},\n"](l) end - return format("return {\n%s}",concat(r)) + return formatters["return {\n%st}"](r) end local function fastdrop(t) local r={ "return {\n" } @@ -5092,14 +5093,14 @@ local function fastdrop(t) local ti=t[i] r[#r+1]=" {" for k,v in next,ti do - r[#r+1]=format("%s=%q",k,v) + r[#r+1]=formatters["%s=%q"](k,v) end r[#r+1]="},\n" end r[#r+1]="}" return concat(r) end -function table.drop(t,slow) +function table.drop(t,slow) if #t==0 then return "return { }" elseif slow==true then @@ -15391,8 +15392,8 @@ end -- of closure -- used libraries : l-lua.lua l-lpeg.lua l-function.lua l-string.lua l-table.lua l-io.lua l-number.lua l-set.lua l-os.lua l-file.lua l-md5.lua l-url.lua l-dir.lua l-boolean.lua l-unicode.lua l-math.lua util-str.lua util-tab.lua util-sto.lua util-prs.lua util-fmt.lua trac-set.lua trac-log.lua trac-inf.lua trac-pro.lua util-lua.lua util-deb.lua util-mrg.lua util-tpl.lua util-env.lua luat-env.lua lxml-tab.lua lxml-lpt.lua lxml-mis.lua lxml-aux.lua lxml-xml.lua data-ini.lua data-exp.lua data-env.lua data-tmp.lua data-met.lua data-res.lua data-pre.lua data-inp.lua data-out.lua data-fil.lua data-con.lua data-use.lua data-zip.lua data-tre.lua data-sch.lua data-lua.lua data-aux.lua data-tmf.lua data-lst.lua luat-sta.lua luat-fmt.lua -- skipped libraries : - --- original bytes : 636382 --- stripped bytes : 230412 +-- original bytes : 636397 +-- stripped bytes : 230443 -- end library merge -- cgit v1.2.3