summaryrefslogtreecommitdiff
path: root/scripts/context/lua/mtx-base.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2010-09-03 12:35:26 +0300
committerMarius <mariausol@gmail.com>2010-09-03 12:35:26 +0300
commit16895587e51f8243a7e4dc6185979894fb199d4f (patch)
tree923fe9fe4d34a11202e06a4258ba71bab6ccde8d /scripts/context/lua/mtx-base.lua
parent20da4ce347921be291c8804041bd8756e3bf1707 (diff)
downloadcontext-16895587e51f8243a7e4dc6185979894fb199d4f.tar.gz
beta 2010.09.03 11:05
Diffstat (limited to 'scripts/context/lua/mtx-base.lua')
-rw-r--r--scripts/context/lua/mtx-base.lua20
1 files changed, 10 insertions, 10 deletions
diff --git a/scripts/context/lua/mtx-base.lua b/scripts/context/lua/mtx-base.lua
index a5e52e0ac..443f653f0 100644
--- a/scripts/context/lua/mtx-base.lua
+++ b/scripts/context/lua/mtx-base.lua
@@ -72,13 +72,13 @@ if environment.arguments["find-file"] then
instance.format = environment.arguments["format"] or instance.format
if instance.pattern then
instance.allresults = true
- resolvers.for_files(resolvers.find_files, { instance.pattern }, instance.my_format)
+ resolvers.dowithfilesandreport(resolvers.findfiles, { instance.pattern }, instance.my_format)
else
- resolvers.for_files(resolvers.find_files, environment.files, instance.my_format)
+ resolvers.dowithfilesandreport(resolvers.findfiles, environment.files, instance.my_format)
end
elseif environment.arguments["find-path"] then
resolvers.load()
- local path = resolvers.find_path(environment.files[1], instance.my_format)
+ local path = resolvers.findpath(environment.files[1], instance.my_format)
print(path) -- quite basic, wil become function in logs
elseif environment.arguments["run"] then
resolvers.load("nofiles") -- ! no need for loading databases
@@ -90,19 +90,19 @@ elseif environment.arguments["fmt"] then
environment.run_format(environment.arguments["fmt"], environment.files[1] or "",environment.files[2] or "")
elseif environment.arguments["expand-braces"] then
resolvers.load("nofiles")
- resolvers.for_files(resolvers.expand_braces, environment.files)
+ resolvers.dowithfilesandreport(resolvers.expandbraces, environment.files)
elseif environment.arguments["expand-path"] then
resolvers.load("nofiles")
- resolvers.for_files(resolvers.expand_path, environment.files)
+ resolvers.dowithfilesandreport(resolvers.expandpath, environment.files)
elseif environment.arguments["expand-var"] or environment.arguments["expand-variable"] then
resolvers.load("nofiles")
- resolvers.for_files(resolvers.expand_var, environment.files)
+ resolvers.dowithfilesandreport(resolvers.expandvar, environment.files)
elseif environment.arguments["show-path"] or environment.arguments["path-value"] then
resolvers.load("nofiles")
- resolvers.for_files(resolvers.show_path, environment.files)
+ resolvers.dowithfilesandreport(resolvers.showpath, environment.files)
elseif environment.arguments["var-value"] or environment.arguments["show-value"] then
resolvers.load("nofiles")
- resolvers.for_files(resolvers.var_value, environment.files)
+ resolvers.dowithfilesandreport(resolvers.var_value, environment.files)
elseif environment.arguments["format-path"] then
resolvers.load()
logs.simple(caches.getwritablepath("format"))
@@ -110,7 +110,7 @@ elseif instance.pattern then -- brrr
resolvers.load()
instance.format = environment.arguments["format"] or instance.format
instance.allresults = true
- resolvers.for_files(resolvers.find_files, { instance.pattern }, instance.my_format)
+ resolvers.dowithfilesandreport(resolvers.findfiles, { instance.pattern }, instance.my_format)
elseif environment.arguments["generate"] then
instance.renewcache = true
trackers.enable("resolvers.locating")
@@ -135,5 +135,5 @@ elseif environment.files[1]=='texmfcnf.lua' then
resolvers.listers.configurations()
else
resolvers.load()
- resolvers.for_files(resolvers.find_files, environment.files, instance.my_format)
+ resolvers.dowithfilesandreport(resolvers.findfiles, environment.files, instance.my_format)
end