Modulo:TNT: differenze tra le versioni
Contenuto cancellato Contenuto aggiunto
m Copying 5 changes by Yurik: "fix doc translation link, Trim parameter whitespaces, docs link, fix templatedata doc having just the positional parameters, make i18n/ prefix optional, support for usage from modules" from mw:Module:TNT. (docs, translate) |
Update from master using #Synchronizer |
||
(3 versioni intermedie di un altro utente non mostrate) | |||
Riga 36:
local p = {}
local i18nDataset = 'I18n/Module:TNT.tab'
local checkType = require('libraryUtil').checkType▼
-- Forward declaration of the local functions
Riga 51 ⟶ 50:
id = mw.text.trim(v)
elseif type(k) == 'number' then
elseif k == 'lang' and v ~= '_' then
lang = mw.text.trim(v)
Riga 60 ⟶ 59:
-- Identical to p.msg() above, but used from other lua modules
-- Example with 2 params: format('I18n/Module:TNT', 'error_bad_msgkey', 'my-key', 'my-dataset')
function p.format(dataset, key, ...)
▲ local checkType = require('libraryUtil').checkType
checkType('format', 1, dataset, 'string')
checkType('format', 2, key, 'string')
checkType('format', 3, params, 'table', true)▼
checkType('format', 4, lang, 'string', true)▼
▲ return formatMessage(dataset, key, params, lang)
end
-- Identical to p.msg() above, but used from other lua modules with the language param
-- "Sandbox/Sample.tab" -> 'commons:Data:Sandbox/Sample.tab'▼
-- Parameters: language code, name of dataset, message key, optional arguments
-- Example with 2 params: formatInLanguage('es', I18n/Module:TNT', 'error_bad_msgkey', 'my-key', 'my-dataset')
function p.formatInLanguage(lang, dataset, key, ...)
local checkType = require('libraryUtil').checkType
checkType('formatInLanguage', 2, dataset, 'string')
return formatMessage(dataset, key, {...}, lang)
-- Obsolete function that adds a 'c:' prefix to the first param.
function p.link(frame)
return link(frame.args[1])
Riga 84 ⟶ 96:
local data = loadData(dataset)
local names = {}
for _, field in
table.insert(names, field.name)
end
local numOnly = true
local params = {}
local paramOrder = {}
for _, row in
local newVal = {}
local name = nil
for pos,
if columnName == 'name' then
name =
else
newVal[columnName] =
end
end
if name then
if (
(type(name) ~= "number")
and (
(type(name) ~= "string")
or not string.match(name, "^%d+$")
)
) then
numOnly = false
end
params[name] = newVal
table.insert(paramOrder, name)
Riga 108 ⟶ 129:
-- Work around json encoding treating {"1":{...}} as an [{...}]
if numOnly then
end
local json = mw.text.jsonEncode({
params=params,
paramOrder=paramOrder,
description=data.description,
})
if numOnly then
end
return json
Riga 141 ⟶ 166:
if not dataset then
error(formatMessage(i18nDataset, 'error_no_dataset', {}))
end
-- Give helpful error to thirdparties who try and copy this module.
if not mw.ext or not mw.ext.data or not mw.ext.data.get then
error(string.format([['''Missing JsonConfig extension, or not properly configured;
Cannot load https://commons.wikimedia.org/wiki/Data:%s.
See https://www.mediawiki.org/wiki/Extension:JsonConfig#Supporting_Wikimedia_templates''']], dataset))
end
Riga 158 ⟶ 190:
-- Given a dataset name, convert it to a title with the 'commons:data:' prefix
link = function(dataset)
▲ end
end
|