mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check for typos.
This commit is contained in:
parent
9ced42c9fb
commit
c506269ff5
11 changed files with 11 additions and 11 deletions
|
@ -767,7 +767,7 @@ on other resources.
|
|||
## Static checking
|
||||
|
||||
All code should pass [luacheck](https://github.com/mpeterv/luacheck) using
|
||||
the `.luacheckrc` provided in the Prosody repository, and using miminal
|
||||
the `.luacheckrc` provided in the Prosody repository, and using minimal
|
||||
inline exceptions.
|
||||
|
||||
* luacheck warnings of class 211, 212, 213 (unused variable, argument or loop
|
||||
|
|
|
@ -30,7 +30,7 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
|
|||
if not parser_type or parser_type == "server" then client = false; else assert(parser_type == "client", "Invalid parser type"); end
|
||||
local bodylimit = tonumber(options_cb and options_cb().body_size_limit) or 10*1024*1024;
|
||||
-- https://stackoverflow.com/a/686243
|
||||
-- Indiviual headers can be up to 16k? What madness?
|
||||
-- Individual headers can be up to 16k? What madness?
|
||||
local headlimit = tonumber(options_cb and options_cb().head_size_limit) or 10*1024;
|
||||
local buflimit = tonumber(options_cb and options_cb().buffer_size_limit) or bodylimit * 2;
|
||||
local buffer = dbuffer.new(buflimit);
|
||||
|
|
|
@ -142,7 +142,7 @@ local delete_user_command_handler = adhoc_simple(delete_user_layout, function(fi
|
|||
module:log("info", "User %s has been deleted by %s", aJID, jid.bare(data.from));
|
||||
succeeded[#succeeded+1] = aJID;
|
||||
else
|
||||
module:log("debug", "Tried to delete non-existant user %s", aJID);
|
||||
module:log("debug", "Tried to delete non-existent user %s", aJID);
|
||||
failed[#failed+1] = aJID;
|
||||
end
|
||||
end
|
||||
|
|
|
@ -293,7 +293,7 @@ function stream_callbacks.streamopened(context, attr)
|
|||
end
|
||||
|
||||
if not prosody.hosts[to_host] then
|
||||
log("debug", "BOSH client tried to connect to non-existant host: %s", attr.to);
|
||||
log("debug", "BOSH client tried to connect to non-existent host: %s", attr.to);
|
||||
report_bad_host();
|
||||
local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
|
||||
["xmlns:stream"] = xmlns_streams, condition = "improper-addressing" });
|
||||
|
|
|
@ -30,7 +30,7 @@ server.set_default_host(module:get_option_string("http_default_host"));
|
|||
server.set_option("body_size_limit", module:get_option_number("http_max_content_size"));
|
||||
server.set_option("buffer_size_limit", module:get_option_number("http_max_buffer_size"));
|
||||
|
||||
-- CORS settigs
|
||||
-- CORS settings
|
||||
local opt_methods = module:get_option_set("access_control_allow_methods", { "GET", "OPTIONS" });
|
||||
local opt_headers = module:get_option_set("access_control_allow_headers", { "Content-Type" });
|
||||
local opt_credentials = module:get_option_boolean("access_control_allow_credentials", false);
|
||||
|
|
|
@ -388,7 +388,7 @@ local function message_handler(event, c2s)
|
|||
local orig_to = stanza.attr.to or orig_from;
|
||||
-- Stanza without 'to' are treated as if it was to their own bare jid
|
||||
|
||||
-- Whos storage do we put it in?
|
||||
-- Whose storage do we put it in?
|
||||
local store_user = c2s and origin.username or jid_split(orig_to);
|
||||
-- And who are they chatting with?
|
||||
local with = jid_bare(c2s and orig_to or orig_from);
|
||||
|
|
|
@ -134,7 +134,7 @@ module:hook("stanza/urn:ietf:params:xml:ns:xmpp-tls:starttls", function(event)
|
|||
return true;
|
||||
end);
|
||||
|
||||
-- Advertize stream feature
|
||||
-- Advertise stream feature
|
||||
module:hook("stream-features", function(event)
|
||||
local origin, features = event.origin, event.features;
|
||||
if can_do_tls(origin) then
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# mod_mam shold apply JIDprep in prefs
|
||||
# mod_mam should apply JIDprep in prefs
|
||||
|
||||
[Client] Romeo
|
||||
jid: romeo@localhost
|
||||
|
|
|
@ -17,7 +17,7 @@ describe("util.promise", function ()
|
|||
p:next(cb);
|
||||
assert.spy(cb).was_called(1);
|
||||
end);
|
||||
it("notifies on fulfilment of pending promises", function ()
|
||||
it("notifies on fulfillment of pending promises", function ()
|
||||
local r;
|
||||
local p = promise.new(function (resolve)
|
||||
r = resolve;
|
||||
|
|
|
@ -27,7 +27,7 @@ Authentication Backend Prototypes:
|
|||
|
||||
state = false : disabled
|
||||
state = true : enabled
|
||||
state = nil : non-existant
|
||||
state = nil : non-existent
|
||||
|
||||
Channel Binding:
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ local function vCard_unesc(s)
|
|||
["\\n"] = "\n",
|
||||
["\\r"] = "\r",
|
||||
["\\t"] = "\t",
|
||||
["\\:"] = ":", -- FIXME Shouldn't need to espace : in values, just params
|
||||
["\\:"] = ":", -- FIXME Shouldn't need to escape : in values, just params
|
||||
["\\;"] = ";",
|
||||
["\\,"] = ",",
|
||||
[":"] = "\29",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue