summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-09-06 21:03:18 +0200
committerLogicParrot <LogicParrot@users.noreply.github.com>2016-09-06 21:03:18 +0200
commite8c84519daea1d7bb3659118a860e7aad56f6e9b (patch)
treeffdda066c96e672a8c95b25b67351c2de8a62e04
parentMerge branch 'master' of https://github.com/cuberite/cuberite (diff)
downloadcuberite-e8c84519daea1d7bb3659118a860e7aad56f6e9b.tar
cuberite-e8c84519daea1d7bb3659118a860e7aad56f6e9b.tar.gz
cuberite-e8c84519daea1d7bb3659118a860e7aad56f6e9b.tar.bz2
cuberite-e8c84519daea1d7bb3659118a860e7aad56f6e9b.tar.lz
cuberite-e8c84519daea1d7bb3659118a860e7aad56f6e9b.tar.xz
cuberite-e8c84519daea1d7bb3659118a860e7aad56f6e9b.tar.zst
cuberite-e8c84519daea1d7bb3659118a860e7aad56f6e9b.zip
-rw-r--r--Server/Plugins/APIDump/main_APIDump.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/Server/Plugins/APIDump/main_APIDump.lua b/Server/Plugins/APIDump/main_APIDump.lua
index 32de2890e..47848c26a 100644
--- a/Server/Plugins/APIDump/main_APIDump.lua
+++ b/Server/Plugins/APIDump/main_APIDump.lua
@@ -778,12 +778,17 @@ local function WriteHtmlClass(a_ClassAPI, a_ClassMenu)
cf:write("<h2>Functions inherited from ", a_InheritedName, "</h2>\n");
end
cf:write("<table>\n<tr><th>Name</th><th>Parameters</th><th>Return value</th><th>Notes</th></tr>\n");
+ -- Store all function names, to create unique anchor names for all functions
+ local TableOverloadedFunctions = {}
for _, func in ipairs(a_Functions) do
local StaticClause = ""
if (func.IsStatic) then
StaticClause = "(STATIC) "
end
- cf:write("<tr><td>", func.Name, "</td>\n");
+ -- Increase number by one
+ TableOverloadedFunctions[func.Name] = (TableOverloadedFunctions[func.Name] or 0) + 1
+ -- Add the anchor names as a title
+ cf:write("<tr><td id=\"", func.Name, "_", TableOverloadedFunctions[func.Name], "\" title=\"", func.Name, "_", TableOverloadedFunctions[func.Name], "\">", func.Name, "</td>\n");
cf:write("<td>", LinkifyString(func.Params or "", (a_InheritedName or a_ClassAPI.Name)), "</td>\n");
cf:write("<td>", LinkifyString(func.Return or "", (a_InheritedName or a_ClassAPI.Name)), "</td>\n");
cf:write("<td>", StaticClause .. LinkifyString(func.Notes or "<i>(undocumented)</i>", (a_InheritedName or a_ClassAPI.Name)), "</td></tr>\n");
@@ -794,7 +799,7 @@ local function WriteHtmlClass(a_ClassAPI, a_ClassMenu)
local function WriteConstantTable(a_Constants, a_Source)
cf:write("<table>\n<tr><th>Name</th><th>Value</th><th>Notes</th></tr>\n");
for _, cons in ipairs(a_Constants) do
- cf:write("<tr><td>", cons.Name, "</td>\n");
+ cf:write("<tr><td id=\"", cons.Name, "\">", cons.Name, "</td>\n");
cf:write("<td>", cons.Value, "</td>\n");
cf:write("<td>", LinkifyString(cons.Notes or "", a_Source), "</td></tr>\n");
end
@@ -837,7 +842,7 @@ local function WriteHtmlClass(a_ClassAPI, a_ClassMenu)
cf:write("<table><tr><th>Name</th><th>Type</th><th>Notes</th></tr>\n");
for _, var in ipairs(a_Variables) do
- cf:write("<tr><td>", var.Name, "</td>\n");
+ cf:write("<tr><td id=\"", var.Name, "\">", var.Name, "</td>\n");
cf:write("<td>", LinkifyString(var.Type or "<i>(undocumented)</i>", a_InheritedName or a_ClassAPI.Name), "</td>\n");
cf:write("<td>", LinkifyString(var.Notes or "", a_InheritedName or a_ClassAPI.Name), "</td>\n </tr>\n");
end