IMPORTANT: due to a drive failure, as of 13-Mar-2021, the Mercurial repository had to be re-mirrored, which changed every commit SHA. The old SHAs and trees are backed up in the vault branches. Please migrate to the new branches as soon as you can.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
prosody/tools/tb2err

24 lines
703 B

#!/usr/bin/env lua
-- traceback to errors.err for vim -q
-- e.g. curl https://prosody.im/paste/xxx | tb2err > errors.err && vim -q
local path_sep = package.config:sub(1,1);
for line in io.lines() do
local src, err = line:match("%s*(%S+)(:%d+: .*)")
if src then
src = src:gsub("\\", path_sep);
local cut = src:match("/()core/")
or src:match("/()net/")
or src:match("/()util/")
or src:match("/()modules/")
or src:match("/()prosody%-modules/")
or src:match("/()plugins/")
or src:match("/()prosody[ctl]*$")
if cut then
src = src:sub(cut);
end
src = src:gsub("prosody%-modules/", "../modules/")
src = src:gsub("^modules/", "plugins/")
io.write(src, err, "\n");
end
end