From 23b9f83fac8d6556ea353e9924094b58c703a538 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Tue, 30 Jul 2013 16:24:13 +0100 Subject: Moved the file to a more sensible name. --- MCServer/Plugins/DumpAPI/main.lua | 52 --------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 MCServer/Plugins/DumpAPI/main.lua (limited to 'MCServer/Plugins/DumpAPI/main.lua') diff --git a/MCServer/Plugins/DumpAPI/main.lua b/MCServer/Plugins/DumpAPI/main.lua deleted file mode 100644 index 1a6ddda31..000000000 --- a/MCServer/Plugins/DumpAPI/main.lua +++ /dev/null @@ -1,52 +0,0 @@ - --- Global variables -PLUGIN = {}; -- Reference to own plugin object - -function Initialize(Plugin) - PLUGIN = Plugin - - Plugin:SetName("DumpAPI") - Plugin:SetVersion(1) - - PluginManager = cRoot:Get():GetPluginManager() - LOG("Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion()) - - -- dump all available API functions and objects: - DumpAPI(); - - return true -end - -function DumpAPI() - LOG("Dumping all available functions to API.txt..."); - function dump (prefix, a, Output) - for i, v in pairs (a) do - if (type(v) == "table") then - if (GetChar(i, 1) ~= ".") then - if (v == _G) then - LOG(prefix .. i .. " == _G, CYCLE, ignoring"); - elseif (v == _G.package) then - LOG(prefix .. i .. " == _G.package, ignoring"); - else - dump(prefix .. i .. ".", v, Output) - end - end - elseif (type(v) == "function") then - if (string.sub(i, 1, 2) ~= "__") then - table.insert(Output, prefix .. i .. "()"); - end - end - end - end - - local Output = {}; - dump("", _G, Output); - - table.sort(Output); - local f = io.open("API.txt", "w"); - for i, n in ipairs(Output) do - f:write(n, "\n"); - end - f:close(); - LOG("API.txt written."); -end -- cgit v1.2.3