Software /
code /
prosody
Comparison
plugins/mod_admin_adhoc.lua @ 8728:41c959c5c84b
Fix spelling throughout the codebase [codespell]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 04 Feb 2018 01:51:25 +0100 |
parent | 8192:4354f556c5db |
child | 8769:e809074cdc09 |
comparison
equal
deleted
inserted
replaced
8727:285075a27f28 | 8728:41c959c5c84b |
---|---|
367 local list_s2s_this_result = dataforms_new { | 367 local list_s2s_this_result = dataforms_new { |
368 title = "List of S2S connections on this host"; | 368 title = "List of S2S connections on this host"; |
369 | 369 |
370 { name = "FORM_TYPE", type = "hidden", value = "http://prosody.im/protocol/s2s#list" }; | 370 { name = "FORM_TYPE", type = "hidden", value = "http://prosody.im/protocol/s2s#list" }; |
371 { name = "sessions", type = "text-multi", label = "Connections:" }; | 371 { name = "sessions", type = "text-multi", label = "Connections:" }; |
372 { name = "num_in", type = "text-single", label = "#incomming connections:" }; | 372 { name = "num_in", type = "text-single", label = "#incoming connections:" }; |
373 { name = "num_out", type = "text-single", label = "#outgoing connections:" }; | 373 { name = "num_out", type = "text-single", label = "#outgoing connections:" }; |
374 }; | 374 }; |
375 | 375 |
376 local function session_flags(session, line) | 376 local function session_flags(session, line) |
377 line = line or {}; | 377 line = line or {}; |