summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-05-02 12:26:19 +0200
committerMattes D <github@xoft.cz>2015-05-02 12:26:19 +0200
commit81274b6ee95d463e25c8a5b15dd471ca914f5584 (patch)
tree5960e86b7c68ff5f15959ede79a558d326740fd0
parentMerge pull request #1920 from wiseoldman95/SquashedPathFinder (diff)
downloadcuberite-81274b6ee95d463e25c8a5b15dd471ca914f5584.tar
cuberite-81274b6ee95d463e25c8a5b15dd471ca914f5584.tar.gz
cuberite-81274b6ee95d463e25c8a5b15dd471ca914f5584.tar.bz2
cuberite-81274b6ee95d463e25c8a5b15dd471ca914f5584.tar.lz
cuberite-81274b6ee95d463e25c8a5b15dd471ca914f5584.tar.xz
cuberite-81274b6ee95d463e25c8a5b15dd471ca914f5584.tar.zst
cuberite-81274b6ee95d463e25c8a5b15dd471ca914f5584.zip
-rw-r--r--MCServer/Plugins/APIDump/main_APIDump.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/main_APIDump.lua b/MCServer/Plugins/APIDump/main_APIDump.lua
index 239bec69c..013ec7bef 100644
--- a/MCServer/Plugins/APIDump/main_APIDump.lua
+++ b/MCServer/Plugins/APIDump/main_APIDump.lua
@@ -1643,6 +1643,15 @@ end
+local function HandleCmdApiShow(a_Split, a_EntireCmd)
+ os.execute("API" .. cFile:GetPathSeparator() .. "index.html")
+ return true, "Launching the browser to show the API docs..."
+end
+
+
+
+
+
function Initialize(Plugin)
g_Plugin = Plugin;
g_PluginFolder = Plugin:GetLocalFolder();
@@ -1651,6 +1660,7 @@ function Initialize(Plugin)
-- Bind a console command to dump the API:
cPluginManager:BindConsoleCommand("api", HandleCmdApi, "Dumps the Lua API docs into the API/ subfolder")
+ cPluginManager:BindConsoleCommand("apishow", HandleCmdApiShow, "Runs the default browser to show the API docs")
-- Add a WebAdmin tab that has a Dump button
g_Plugin:AddWebTab("APIDump", HandleWebAdminDump)