Main public logs
More actions
Combined display of all available logs of Kenshi Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 04:09, 17 February 2025 Prd talk contribs created page Module:Path (Created page with "function split_path (path) local parts = {} local len = 0 for token in path:gmatch("[^/]+") do len = len + 1 parts[len] = token end return parts, len end function get_abs_path (current, page) local tbl_i, len_i = split_path(page) local tbl_o local len_o if tbl_i[1] == '.' or tbl_i[1] == '..' then tbl_o, len_o = split_path(current) else tbl_i[1] = tbl_i[1]:gsub('^([^:]?)([^:]*)(:?)(.?)', function (s1, s2, s3, s4) if s3 == '' then return s1:upper...")