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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
|
if not modules then modules = { } end modules ['mtx-context'] = {
version = 1.001,
comment = "companion to mtxrun.lua",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
texmf.instance = instance -- we need to get rid of this / maybe current instance in global table
scripts = scripts or { }
scripts.context = scripts.context or { }
-- l-file / todo
function file.needsupdate(oldfile,newfile)
return true
end
function file.syncmtimes(oldfile,newfile)
end
-- l-io
function io.copydata(fromfile,tofile)
io.savedata(tofile,io.loaddata(fromfile) or "")
end
-- luat-inp
function input.locate_format(name) -- move this to core / luat-xxx
local barename, fmtname = name:gsub("%.%a+$",""), ""
if input.usecache then
local path = file.join(caches.setpath(instance,"formats")) -- maybe platform
fmtname = file.join(path,barename..".fmt") or ""
end
if fmtname == "" then
fmtname = input.find_files(instance,barename..".fmt")[1] or ""
end
fmtname = input.clean_path(fmtname)
if fmtname ~= "" then
barename = fmtname:gsub("%.%a+$","")
local luaname, lucname = barename .. ".lua", barename .. ".luc"
if lfs.isfile(lucname) then
return barename, luaname
elseif lfs.isfile(luaname) then
return barename, luaname
end
end
return nil, nil
end
-- ctx
ctxrunner = { }
do
function ctxrunner.filtered(str,method)
str = tostring(str)
if method == 'name' then str = file.removesuffix(file.basename(str))
elseif method == 'path' then str = file.dirname(str)
elseif method == 'suffix' then str = file.extname(str)
elseif method == 'nosuffix' then str = file.removesuffix(str)
elseif method == 'nopath' then str = file.basename(str)
elseif method == 'base' then str = file.basename(str)
-- elseif method == 'full' then
-- elseif method == 'complete' then
-- elseif method == 'expand' then -- str = file.expand_path(str)
end
return str:gsub("\\","/")
end
function ctxrunner.substitute(e,str)
local attributes = e.at
if str and attributes then
if attributes['method'] then
str = ctxrunner.filtered(str,attributes['method'])
end
if str == "" and attributes['default'] then
str = attributes['default']
end
end
return str
end
function ctxrunner.reflag(flags)
local t = { }
for _, flag in pairs(flags) do
local key, value = flag:match("^(.-)=(.+)$")
if key and value then
t[key] = value
else
t[flag] = true
end
end
return t
end
function ctxrunner.substitute(str)
return str
end
function ctxrunner.justtext(str)
str = xml.unescaped(tostring(str))
str = xml.cleansed(str)
str = str:gsub("\\+",'/')
str = str:gsub("%s+",' ')
return str
end
function ctxrunner.new()
return {
ctxname = "",
jobname = "",
xmldata = nil,
suffix = "prep",
locations = { '..', '../..' },
variables = { },
messages = { },
environments = { },
modules = { },
filters = { },
flags = { },
modes = { },
prepfiles = { },
paths = { },
}
end
function ctxrunner.savelog(ctxdata,ctlname)
local function yn(b)
if b then return 'yes' else return 'no' end
end
if not ctlname or ctlname == "" or ctlname == ctxdata.jobname then
if ctxdata.jobname then
ctlname = file.replacesuffix(ctxdata.jobname,'ctl')
elseif ctxdata.ctxname then
ctlname = file.replacesuffix(ctxdata.ctxname,'ctl')
else
input.report(string.format("invalid ctl name %s",ctlname or "?"))
return
end
end
if table.is_empty(ctxdata.prepfiles) then
input.report("nothing prepared, no ctl file saved")
os.remove(ctlname)
else
input.report(string.format("saving logdata in %s",ctlname))
f = io.open(ctlname,'w')
if f then
f:write("<?xml version='1.0' standalone='yes'?>\n\n")
f:write(string.format("<ctx:preplist local='%s'>\n",yn(ctxdata.runlocal)))
--~ for name, value in pairs(ctxdata.prepfiles) do
for _, name in ipairs(table.sortedkeys(ctxdata.prepfiles)) do
f:write(string.format("\t<ctx:prepfile done='%s'>%s</ctx:prepfile>\n",yn(ctxdata.prepfiles[name]),name))
end
f:write("</ctx:preplist>\n")
f:close()
end
end
end
function ctxrunner.register_path(ctxdata,path)
-- test if exists
ctxdata.paths[ctxdata.paths+1] = path
end
function ctxrunner.trace(ctxdata)
print(table.serialize(ctxdata.messages))
print(table.serialize(ctxdata.flags))
print(table.serialize(ctxdata.environments))
print(table.serialize(ctxdata.modules))
print(table.serialize(ctxdata.filters))
print(table.serialize(ctxdata.modes))
print(xml.serialize(ctxdata.xmldata))
end
function ctxrunner.manipulate(ctxdata,ctxname,defaultname)
if not ctxdata.jobname or ctxdata.jobname == "" then
return
end
ctxdata.ctxname = ctxname or file.removesuffix(ctxdata.jobname) or ""
if ctxdata.ctxname == "" then
return
end
ctxdata.jobname = file.addsuffix(ctxdata.jobname,'tex')
ctxdata.ctxname = file.addsuffix(ctxdata.ctxname,'ctx')
input.report("jobname:",ctxdata.jobname)
input.report("ctxname:",ctxdata.ctxname)
-- mtxrun should resolve kpse: and file:
local usedname = ctxdata.ctxname
local found = lfs.isfile(usedname)
if not found then
for _, path in pairs(ctxdata.locations) do
local fullname = file.join(path,ctxdata.ctxname)
if lfs.isfile(fullname) then
usedname, found = fullname, true
break
end
end
end
if not found and defaultname and defaultname ~= "" and file.exists(defaultname) then
usedname, found = defaultname, true
end
if not found then
return
end
ctxdata.xmldata = xml.load(usedname)
if not ctxdata.xmldata then
return
else
-- test for valid, can be text file
end
xml.include(ctxdata.xmldata,'ctx:include','name', table.append({'.', file.dirname(ctxdata.ctxname)},ctxdata.locations))
ctxdata.variables['job'] = ctxdata.jobname
ctxdata.flags = xml.collect_texts(ctxdata.xmldata,"/ctx:job/ctx:flags/ctx:flag",true)
ctxdata.environments = xml.collect_texts(ctxdata.xmldata,"/ctx:job/ctx:process/ctx:resources/ctx:environment",true)
ctxdata.modules = xml.collect_texts(ctxdata.xmldata,"/ctx:job/ctx:process/ctx:resources/ctx:module",true)
ctxdata.filters = xml.collect_texts(ctxdata.xmldata,"/ctx:job/ctx:process/ctx:resources/ctx:filter",true)
ctxdata.modes = xml.collect_texts(ctxdata.xmldata,"/ctx:job/ctx:process/ctx:resources/ctx:mode",true)
ctxdata.messages = xml.collect_texts(ctxdata.xmldata,"ctx:message",true)
ctxdata.flags = ctxrunner.reflag(ctxdata.flags)
for _, message in ipairs(ctxdata.messages) do
-- message ctxdata.justtext(xml.tostring(message))
end
--~ REXML::XPath.each(root,"//ctx:block") do |blk|
--~ if @jobname && blk.attributes['pattern'] then
--~ root.delete(blk) unless @jobname =~ /#{blk.attributes['pattern']}/
--~ else
--~ root.delete(blk)
--~ end
--~ end
xml.each(ctxdata.xmldata,"ctx:value[@name='job']", function(ek,e,k)
e[k] = ctxdata.variables['job'] or ""
end)
local commands = { }
xml.each(ctxdata.xmldata,"/ctx:job/ctx:preprocess/ctx:processors/ctx:processor", function(r,d,k)
local ek = d[k]
commands[ek.at and ek.at['name'] or "unknown"] = ek
end)
local suffix = xml.first(ctxdata.xmldata,"/ctx:job/ctx:preprocess/@suffix") or ctxdata.suffix
local runlocal = xml.first(ctxdata.xmldata,"/ctx:job/ctx:preprocess/ctx:processors/@local")
runlocal = toboolean(runlocal)
for _, files in ipairs(xml.filters.elements(ctxdata.xmldata,"/ctx:job/ctx:preprocess/ctx:files")) do
for _, pattern in ipairs(xml.filters.elements(files,"ctx:file")) do
preprocessor = pattern.at['processor'] or ""
if preprocessor ~= "" then
ctxdata.variables['old'] = ctxdata.jobname
xml.each(ctxdata.xmldata,"ctx:value", function(r,d,k)
local ek = d[k]
local ekat = ek.at['name']
if ekat == 'old' then
d[k] = ctxrunner.substitute(ctxdata.variables[ekat] or "")
end
end)
pattern = ctxrunner.justtext(xml.tostring(pattern))
local oldfiles = dir.glob(pattern)
local pluspath = false
if #oldfiles == 0 then
-- message: no files match pattern
for _, p in ipairs(ctxdata.paths) do
local oldfiles = dir.glob(path.join(p,pattern))
if #oldfiles > 0 then
pluspath = true
break
end
end
end
if #oldfiles == 0 then
-- message: no old files
else
for _, oldfile in ipairs(oldfiles) do
newfile = oldfile .. "." .. suffix -- addsuffix will add one only
if ctxdata.runlocal then
newfile = file.basename(newfile)
end
if oldfile ~= newfile and file.needsupdate(oldfile,newfile) then
-- message: oldfile needs preprocessing
-- os.remove(newfile)
for _, pp in ipairs(preprocessor:split(',')) do
local command = commands[pp]
if command then
command = xml.copy(command)
local suf = (command.at and command.at['suffix']) or ctxdata.suffix
if suf then
newfile = oldfile .. "." .. suf
end
if ctxdata.runlocal then
newfile = file.basename(newfile)
end
xml.each(command,"ctx:old", function(r,d,k)
d[k] = ctxrunner.substitute(oldfile)
end)
xml.each(command,"ctx:new", function(r,d,k)
d[k] = ctxrunner.substitute(newfile)
end)
-- message: preprocessing #{oldfile} into #{newfile} using #{pp}
ctxdata.variables['old'] = oldfile
ctxdata.variables['new'] = newfile
xml.each(command,"ctx:value", function(r,d,k)
local ek = d[k]
local ekat = ek.at and ek.at['name']
if ekat then
d[k] = ctxrunner.substitute(ctxdata.variables[ekat] or "")
end
end)
-- potential optimization: when mtxrun run internal
command = ctxrunner.justtext(command) -- command is still xml element here
input.report("command",command)
local result = os.spawn(command)
if result > 0 then
input.report("error, return code",result)
end
if ctxdata.runlocal then
oldfile = file.basename(oldfile)
end
end
end
if lfs.isfile(newfile) then
file.syncmtimes(oldfile,newfile)
ctxdata.prepfiles[oldfile] = true
else
input.report("error, check target location of new file", newfile)
ctxdata.prepfiles[oldfile] = false
end
else
input.report("old file needs no preprocessing")
ctxdata.prepfiles[oldfile] = lfs.isfile(newfile)
end
end
end
end
end
end
ctxrunner.savelog(ctxdata)
end
end
-- rest
scripts.context.multipass = {
suffixes = { ".tuo", ".tuc" },
nofruns = 8,
}
function scripts.context.multipass.hashfiles(jobname)
local hash = { }
for _, suffix in ipairs(scripts.context.multipass.suffixes) do
local full = jobname .. suffix
hash[full] = md5.hex(io.loaddata(full) or "unknown")
end
return hash
end
function scripts.context.multipass.changed(oldhash, newhash)
for k,v in pairs(oldhash) do
if v ~= newhash[k] then
return true
end
end
return false
end
scripts.context.backends = {
pdftex = 'pdftex',
luatex = 'pdftex',
pdf = 'pdftex',
dvi = 'dvipdfmx',
dvips = 'dvips'
}
function scripts.context.multipass.makeoptionfile(jobname,ctxdata)
-- take jobname from ctx
local f = io.open(jobname..".top","w")
if f then
local finalrun, kindofrun, currentrun = false, 0, 0
local function someflag(flag)
return (ctxdata and ctxdata.flags[flag]) or environment.argument(flag)
end
--~ local someflag = environment.argument
local function setvalue(flag,format,hash,default)
local a = someflag(flag) or default
if a and a ~= "" then
if hash then
if hash[a] then
f:write(format:format(a),"\n")
end
else
f:write(format:format(a),"\n")
end
end
end
local function setvalues(flag,format)
if type(flag) == "table" then
for k, v in pairs(flag) do
f:write(format:format(v),"\n")
end
else
local a = someflag(flag)
if a and a ~= "" then
for v in a:gmatch("%s*([^,]+)") do
f:write(format:format(v),"\n")
end
end
end
end
local function setfixed(flag,format,...)
if someflag(flag) then
f:write(format:format(...),"\n")
end
end
local function setalways(format,...)
f:write(format:format(...),"\n")
end
setalways("\\unprotect")
setvalue('output' , "\\setupoutput[%s]", scripts.context.backends, 'pdftex')
setalways( "\\setupsystem[\\c!n=%s,\\c!m=%s]", kindofrun, currentrun)
setalways( "\\setupsystem[\\c!type=%s]",os.platform)
setfixed ("batchmode" , "\\batchmode")
setfixed ("nonstopmode" , "\\nonstopmode")
setfixed ("tracefiles" , "\\tracefilestrue")
setfixed ("paranoid" , "\\def\\maxreadlevel{1}")
setvalues("modefile" , "\\readlocfile{%s}{}{}")
setvalue ("result" , "\\setupsystem[file=%s]")
setvalues("path" , "\\usepath[%s]")
setfixed ("color" , "\\setupcolors[\\c!state=\\v!start]")
setfixed ("nompmode" , "\\runMPgraphicsfalse") -- obsolete, we assume runtime mp graphics
setfixed ("nomprun" , "\\runMPgraphicsfalse") -- obsolete, we assume runtime mp graphics
setfixed ("automprun" , "\\runMPgraphicsfalse") -- obsolete, we assume runtime mp graphics
setfixed ("fast" , "\\fastmode\n")
setfixed ("silentmode" , "\\silentmode\n")
setvalue ("separation" , "\\setupcolors[\\c!split=%s]")
setvalue ("setuppath" , "\\setupsystem[\\c!directory={%s}]")
setfixed ("noarrange" , "\\setuparranging[\\v!disable]")
if environment.argument('arrange') and not finalrun then
setalways( "\\setuparranging[\\v!disable]")
end
setvalue ("arguments" , "\\setupenv[%s]")
setvalue ("randomseed" , "\\setupsystem[\\c!random=%s]")
setvalues("modes" , "\\enablemode[%s]")
setvalues("mode" , "\\enablemode[%s]")
setvalues("filters" , "\\useXMLfilter[%s]")
setvalues("usemodules" , "\\usemodule[%s]")
setvalues("environments" , "\\environment %s ")
-- ctx stuff
if ctxdata then
setvalues(ctxdata.modes, "\\enablemode[%s]")
setvalues(ctxdata.modules, "\\usemodule[%s]")
setvalues(ctxdata.environments, "\\environment %s ")
end
-- done
setalways( "\\protect")
setalways( "\\endinput")
f:close()
end
end
function scripts.context.multipass.copyluafile(jobname)
io.savedata(jobname..".tuc",io.loaddata(jobname..".tua") or "")
end
function scripts.context.multipass.copytuifile(jobname)
local f, g = io.open(jobname..".tui"), io.open(jobname..".tuo",'w')
if f and g then
g:write("% traditional utility file, only commands written by mtxrun/context\n%\n")
for line in f:lines() do
if line:find("^c ") then
g:write((line:gsub("^c ","")),"%\n")
end
end
g:write("\\endinput\n")
f:close()
g:close()
end
end
scripts.context.xmlsuffixes = table.tohash {
"xml",
}
function scripts.context.run(ctxdata)
local function makestub(format,filename)
local stubname = file.replacesuffix(file.basename(filename),'run')
local f = io.open(stubname,'w')
if f then
f:write("\\starttext\n")
f:write(string.format(format,filename),"\n")
f:write("\\stoptext\n")
f:close()
filename = stubname
end
return filename
end
if ctxdata then
-- todo: interface
for k,v in pairs(ctxdata.flags) do
environment.setargument(k,v)
end
end
local files = environment.files
if #files > 0 then
input.identify_cnf(instance)
input.load_cnf(instance)
input.expand_variables(instance)
local formatname = "cont-en"
local formatfile, scriptfile = input.locate_format(formatname)
if formatfile and scriptfile then
for _, filename in ipairs(files) do
local basename, pathname = file.basename(filename), file.dirname(filename)
local jobname = file.removesuffix(basename)
if pathname == "" then
filename = "./" .. filename
end
-- also other stubs
if environment.argument("forcexml") or scripts.context.xmlsuffixes[file.extname(filename) or "?"] then -- mkii
filename = makestub("\\processXMLfilegrouped{%s}",filename)
elseif environment.argument("processxml") then -- mkiv
filename = makestub("\\xmlprocess{%s}",filename)
end
--
if environment.argument("autopdf") then
os.spawn(string.format('pdfclose --file "%s" 2>&1', file.replacesuffix(filename,"pdf")))
end
--
local command = "luatex --fmt=" .. string.quote(formatfile) .. " --lua=" .. string.quote(scriptfile) .. " " .. string.quote(filename)
local oldhash, newhash = scripts.context.multipass.hashfiles(jobname), { }
scripts.context.multipass.makeoptionfile(jobname,ctxdata)
for i=1, scripts.context.multipass.nofruns do
input.report(string.format("run %s: %s",i,command))
local returncode = os.spawn(command)
input.report("return code: " .. returncode)
if returncode > 0 then
input.report("fatal error, run aborted")
break
else
scripts.context.multipass.copyluafile(jobname)
scripts.context.multipass.copytuifile(jobname)
newhash = scripts.context.multipass.hashfiles(jobname)
if scripts.context.multipass.changed(oldhash,newhash) then
oldhash = newhash
else
break
end
end
end
--
-- todo: result
--
if environment.argument("autopdf") then
os.spawn(string.format('pdfopen --file "%s" 2>&1', file.replacesuffix(filename,"pdf")))
end
--
end
else
input.verbose = true
input.report("error", "no format found with name " .. formatname)
end
end
end
function scripts.context.make()
local list = (environment.files[1] and environment.files) or { "cont-en", "cont-nl", "mptopdf" }
for _, name in ipairs(list) do
local command = "luatools --make --compile " .. name
input.report("running command: " .. command)
os.spawn(command)
end
end
function scripts.context.generate()
-- hack, should also be a shared function
local command = "luatools --generate "
input.report("running command: " .. command)
os.spawn(command)
end
function scripts.context.ctx()
local ctxdata = ctxrunner.new()
ctxdata.jobname = environment.files[1]
ctxrunner.manipulate(ctxdata,environment.argument("ctx"))
scripts.context.run(ctxdata)
end
function scripts.context.version()
local name = input.find_file(instance,"context.tex")
if name ~= "" then
input.report(string.format("main context file: %s",name))
local data = io.loaddata(name)
if data then
local version = data:match("\\edef\\contextversion{(.-)}")
if version then
input.report(string.format("current version : %s",version))
else
input.report("context version: unknown, no timestamp found")
end
else
input.report("context version: unknown, load error")
end
else
input.report("main context file: unknown, 'context.tex' not found")
end
end
function scripts.context.touch()
if environment.argument("expert") then
local function touch(name,pattern)
local name = input.find_file(instance,name)
local olddata = io.loaddata(name)
if olddata then
local oldversion, newversion = "", os.date("%Y.%M.%d %H:%m")
local newdata, ok = olddata:gsub(pattern,function(pre,mid,post)
oldversion = mid
return pre .. newversion .. post
end)
if ok > 0 then
local backup = file.replacesuffix(name,"tmp")
os.remove(backup)
os.rename(name,backup)
io.savedata(name,newdata)
return true, oldversion, newversion, name
else
return false
end
end
end
local done, oldversion, newversion, foundname = touch("context.tex", "(\\edef\\contextversion{)(.-)(})")
if done then
input.report(string.format("old version : %s", oldversion))
input.report(string.format("new version : %s", newversion))
input.report(string.format("touched file: %s", foundname))
local ok, _, _, foundname = touch("cont-new.tex", "(\\newcontextversion{)(.-)(})")
if ok then
input.report(string.format("touched file: %s", foundname))
end
end
end
end
function scripts.context.timed(action)
input.starttiming(scripts.context)
action()
input.stoptiming(scripts.context)
input.report("total runtime: " .. input.elapsedtime(scripts.context))
end
banner = banner .. " | context tools "
messages.help = [[
--run process (one or more) files (default action)
--make create context formats formats
--generate generate file database etc.
--ctx=name use ctx file
--version report installed context version
--autopdf open pdf file afterwards
--expert expert options
]]
messages.expert = [[
expert options: also provide --expert
--touch update context version (remake needed afterwards)
]]
input.verbose = true
if environment.argument("once") then
scripts.context.multipass.nofruns = 1
end
if environment.argument("run") then
scripts.context.timed(scripts.context.run)
elseif environment.argument("make") then
scripts.context.timed(scripts.context.make)
elseif environment.argument("ctx") then
scripts.context.timed(scripts.context.ctx)
elseif environment.argument("version") then
scripts.context.version()
elseif environment.argument("touch") then
scripts.context.touch()
elseif environment.argument("help") then
input.help(banner,messages.help)
elseif environment.argument("expert") then
input.help(banner,messages.expert)
elseif environment.files[1] then
scripts.context.timed(scripts.context.run)
else
input.help(banner,messages.help)
end
|