Burocratas, emailconfirmed, Administradores da interface, Administradores (Semantic MediaWiki), Curadores (Semantic MediaWiki), Editores (Semantic MediaWiki), Supressores, Administradores
982
edições
Sem resumo de edição |
Sem resumo de edição |
||
local queryResult = mw.smw.ask( '[[' .. target .. ']]|?Creation date#-F[l, d \d\e F \d\e Y]|headers=hide|mainlabel=-' )
local myResult = ""▼
if type( queryResult ) == "table" then
▲ local myResult = ""
for num, row in pairs( queryResult ) do
myResult = myResult ..
for property, data in pairs( row ) do
local dataOutput = data
if type( data ) == 'table' then
dataOutput = mw.text.listToText( data, ', ', ' and ')
end
myResult = myResult .. '** ' .. property .. ': ' .. dataOutput .. '\n'
end
end
return myResult
end
-- local modificationDate = mw.smw.ask( '[[' .. target .. ']]|?Modification date#-F[l, d \d\e F \d\e Y]|headers=hide|mainlabel=-' )
-- info = '* O registro foi criado em: ' .. myResult .. --'. Sua última transação foi em: ' .. modificationDate .. '.'
-- table.insert(infos, info)
end -- end if 245
return table.concat( infos, '\n' )
|