diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-01 01:02:48 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-01 01:02:48 +0100 |
commit | 28bc14e267daff85d66efc9467f40ce87bfcb858 (patch) | |
tree | a2ab38d5f8805c64294905a4b65b694d6dfeacf7 /Plugins/Core | |
parent | Changed how Lua handles the (Post)Params in the HTTPRequest of a WebPlugin (diff) | |
download | cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.gz cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.bz2 cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.lz cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.xz cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.zst cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.zip |
Diffstat (limited to 'Plugins/Core')
-rw-r--r-- | Plugins/Core/main.lua | 2 | ||||
-rw-r--r-- | Plugins/Core/web_reload.lua | 15 |
2 files changed, 1 insertions, 16 deletions
diff --git a/Plugins/Core/main.lua b/Plugins/Core/main.lua index d8fadaad9..e057fb4ce 100644 --- a/Plugins/Core/main.lua +++ b/Plugins/Core/main.lua @@ -131,8 +131,8 @@ function Initialize( Plugin ) WebPlugin:SetName( Plugin:GetName() )
WebPlugin:AddTab( "Playerlist", HandleRequest_PlayerList )
WebPlugin:AddTab( "Whitelist", HandleRequest_WhiteList )
- WebPlugin:AddTab( "Reload", HandleRequest_Reload )
WebPlugin:AddTab( "Permissions", HandleRequest_Permissions )
+ WebPlugin:AddTab( "Manage Plugins", HandleRequest_ManagePlugins )
LOG( "Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion() )
return true
diff --git a/Plugins/Core/web_reload.lua b/Plugins/Core/web_reload.lua deleted file mode 100644 index 3a59ad6b6..000000000 --- a/Plugins/Core/web_reload.lua +++ /dev/null @@ -1,15 +0,0 @@ -function HandleRequest_Reload( Request )
- local Content = ""
-
- if( Request.PostParams["reload"] ~= nil ) then
- Content = Content .. "<head><meta http-equiv=\"refresh\" content=\"2;././\"></head>"
- Content = Content .. "<p>Reloading plugins... This can take a while depending on the plugins you're using.</p>"
- cRoot:Get():GetPluginManager():ReloadPlugins()
- else
- Content = Content .. "<form method=POST>"
- Content = Content .. "<p>Click the reload button to reload all plugins!<br>"
- Content = Content .. "<input type=\"submit\" name=\"reload\" value=\"Reload!\"></p>"
- Content = Content .. "</form>"
- end
- return Content
-end
\ No newline at end of file |