#! /usr/bin/lua local args = {...} local gio = require("lgi").Gio local gobject = require("lgi").GObject local glib = require("lgi").GLib local name_attr = gio.FILE_ATTRIBUTE_STANDARD_NAME local type_attr = gio.FILE_ATTRIBUTE_STANDARD_TYPE -- Recursive file scanner local function get_all_files(path, ext, ret) ret = ret or {} local enumerator = gio.File.new_for_path(path):enumerate_children( table.concat({name_attr, type_attr}, ",") , 0, nil, nil ) for file in function() return enumerator:next_file() end do local file_name = file:get_attribute_as_string(name_attr) local file_type = file:get_file_type() if file_type == "REGULAR" and file_name:match(ext or "") then table.insert(ret, enumerator:get_child(file):get_path()) elseif file_type == "DIRECTORY" then get_all_files(enumerator:get_child(file):get_path(), ext, ret) end end return ret end local function path_to_module(path) for _, module in ipairs { "awful", "wibox", "gears", "naughty", "menubar", "beautiful" } do local match = path:match("/"..module.."/([^.]+).lua") if match then return module.."."..match:gsub("/",".") end end error("Cannot figure out module for " .. tostring(path)) end local function module_to_html(mod) mod = mod:gsub(".init", "") local f = io.open("doc/classes/".. mod ..".html","r") if f~=nil then f:close() return "../classes/".. mod ..".html" end f = io.open("doc/libraries/".. mod ..".html","r") if f~=nil then f:close() return "../libraries/".. mod ..".html" end -- This can happen return "" end local function get_link(file, element) return table.concat { "", element:match("[. ](.+)"), "" } end local all_files = get_all_files("./lib/", "lua") local beautiful_vars = {} -- Find all @beautiful doc entries for _,file in ipairs(all_files) do local f = io.open(file) local buffer = "" for line in f:lines() do local var = line:gmatch("--[ ]*@beautiful ([^ \n]*)")() -- There is no backward/forward pattern in lua if #line <= 1 then buffer = "" elseif #buffer and not var then buffer = buffer.."\n"..line elseif line:sub(1,3) == "---" then buffer = line end if var then -- Get the @param, @see and @usage local params = "" for line in f:lines() do if line:sub(1,2) ~= "--" then break else params = params.."\n"..line end end local name = var:gmatch("[ ]*beautiful.(.+)")() if not name then print("WARNING:", var, "seems to be misformatted. Use `beautiful.namespace_name`" ) else table.insert(beautiful_vars, { file = file, name = name, link = get_link(file, var), desc = buffer:gmatch("[- ]+([^\n.]*)")() or "", mod = path_to_module(file), }) end buffer = "" end end end local function create_table(entries, columns) local lines = {} for _, entry in ipairs(entries) do local line = "
Name | Description |
---|