From 02775e52c43dbc82e08b6af8b87d8f320c05cb73 Mon Sep 17 00:00:00 2001 From: mathiascode <8754153+mathiascode@users.noreply.github.com> Date: Thu, 24 Aug 2017 12:19:40 +0300 Subject: Minor changes (#3909) --- Server/Plugins/APIDump/APIDesc.lua | 16 ++++++++-------- Server/Plugins/APIDump/Classes/Geometry.lua | 2 +- Server/Plugins/APIDump/Hooks/OnPlayerAnimation.lua | 6 +++--- Server/Plugins/APIDump/Hooks/OnPlayerLeftClick.lua | 2 +- Server/Plugins/APIDump/SettingUpDecoda.html | 2 +- Server/Plugins/APIDump/SettingUpZeroBrane.html | 4 ++-- Server/Plugins/Debuggers/Debuggers.lua | 16 ++++++++-------- Server/Plugins/InfoDump.lua | 2 +- Server/brewing.txt | 2 +- Server/webadmin/template.lua | 2 +- 10 files changed, 27 insertions(+), 27 deletions(-) (limited to 'Server') diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua index b35735736..df2d93785 100644 --- a/Server/Plugins/APIDump/APIDesc.lua +++ b/Server/Plugins/APIDump/APIDesc.lua @@ -2183,7 +2183,7 @@ function OnPlayerJoined(a_Player) -- Send an example composite chat message to the player: a_Player:SendMessage(cCompositeChat() :AddTextPart("Hello, ") - :AddUrlPart(a_Player:GetName(), "http://cuberite.org", "u@2") -- Colored underlined link + :AddUrlPart(a_Player:GetName(), "https://cuberite.org", "u@2") -- Colored underlined link :AddSuggestCommandPart(", and welcome.", "/help", "u") -- Underlined suggest-command :AddRunCommandPart(" SetDay", "/time set 0") -- Regular text that will execute command when clicked :SetMessageType(mtJoin) -- It is a join-message @@ -10559,7 +10559,7 @@ a_Player:OpenWindow(Window); Type = "string", }, }, - Notes = "Sends the specified message to the player (shows above action bar, doesn't show for < 1.8 clients).", + Notes = "Sends the specified message to the player (shows above action bar).", }, SendBlocksAround = { @@ -10706,7 +10706,7 @@ a_Player:OpenWindow(Window); Type = "string", }, }, - Notes = "Sends the specified message to the player (doesn't show for < 1.8 clients).", + Notes = "Sends the specified message to the player.", }, SetBedPos = { @@ -16912,7 +16912,7 @@ end { Desc = [[ This class provides an interface to the XML parser, - {{http://matthewwild.co.uk/projects/luaexpat/|LuaExpat}}. It provides a SAX interface with an + {{https://matthewwild.co.uk/projects/luaexpat/|LuaExpat}}. It provides a SAX interface with an incremental XML parser.

With an event-based API like SAX the XML document can be fed to the parser in chunks, and the @@ -16921,7 +16921,7 @@ end parsing of huge documents can benefit from this piecemeal operation.

See the online - {{http://matthewwild.co.uk/projects/luaexpat/manual.html#parser|LuaExpat documentation}} for details + {{https://matthewwild.co.uk/projects/luaexpat/manual.html#parser|LuaExpat documentation}} for details on how to work with this parser. The code examples below should provide some basic help, too. ]], Functions = @@ -16973,7 +16973,7 @@ end The callbacks table passed to the new() function specifies the Lua functions that the parser calls upon various events. The following table lists the most common functions used, for a complete list see the online - {{http://matthewwild.co.uk/projects/luaexpat/manual.html#parser|LuaExpat documentation}}.

+ {{https://matthewwild.co.uk/projects/luaexpat/manual.html#parser|LuaExpat documentation}}.

@@ -16987,7 +16987,7 @@ end Contents = [[ The XMLParser object returned by lxp.new provides the functions needed to parse the XML. The following list provides the most commonly used ones, for a complete list see the online - {{http://matthewwild.co.uk/projects/luaexpat/manual.html#parser|LuaExpat documentation}}. + {{https://matthewwild.co.uk/projects/luaexpat/manual.html#parser|LuaExpat documentation}}.
Function nameParametersNotes
CharacterDataParser, stringCalled when the parser recognizes a raw string inside the element