summaryrefslogtreecommitdiffstats
path: root/Server/Plugins/APIDump/APIDesc.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-12-25 18:29:21 +0100
committerGitHub <noreply@github.com>2016-12-25 18:29:21 +0100
commitb3b723b4531a3781ab847a2652cf192303e78941 (patch)
treec7c3169575541c662438834973a5c7fc34188a70 /Server/Plugins/APIDump/APIDesc.lua
parentUpdated links and docs (#3488) (diff)
downloadcuberite-b3b723b4531a3781ab847a2652cf192303e78941.tar
cuberite-b3b723b4531a3781ab847a2652cf192303e78941.tar.gz
cuberite-b3b723b4531a3781ab847a2652cf192303e78941.tar.bz2
cuberite-b3b723b4531a3781ab847a2652cf192303e78941.tar.lz
cuberite-b3b723b4531a3781ab847a2652cf192303e78941.tar.xz
cuberite-b3b723b4531a3781ab847a2652cf192303e78941.tar.zst
cuberite-b3b723b4531a3781ab847a2652cf192303e78941.zip
Diffstat (limited to 'Server/Plugins/APIDump/APIDesc.lua')
-rw-r--r--Server/Plugins/APIDump/APIDesc.lua38
1 files changed, 38 insertions, 0 deletions
diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua
index 3fc21b6a3..d4a814cb9 100644
--- a/Server/Plugins/APIDump/APIDesc.lua
+++ b/Server/Plugins/APIDump/APIDesc.lua
@@ -13534,6 +13534,44 @@ local CompressedString = cStringCompression.CompressStringGZIP("DataToCompress")
},
Notes = "Parses the Authority part of the URL. Parts that are not explicitly specified in the AuthPart are returned empty, the port is returned zero. If parsing fails, the function returns nil and an error message.",
},
+ UrlDecode =
+ {
+ IsStatic = true,
+ Params =
+ {
+ {
+ Name = "Text",
+ Type = "string",
+ },
+ },
+ Returns =
+ {
+ {
+ Name = "Decoded",
+ Type = "string",
+ },
+ },
+ Notes = "Returns the Text, URL-decoded. Returns nil if there is a problem while decoding (invalid input).",
+ },
+ UrlEncode =
+ {
+ IsStatic = true,
+ Params =
+ {
+ {
+ Name = "Text",
+ Type = "string",
+ },
+ },
+ Returns =
+ {
+ {
+ Name = "Encoded",
+ Type = "string",
+ },
+ },
+ Notes = "Returns the Text, URL-encoded.",
+ },
},
AdditionalInfo =
{