Модуль:Упоминание — различия между версиями
StasR (обсуждение | вклад) |
StasR (обсуждение | вклад) |
||
(не показано 14 промежуточных версий этого же участника) | |||
Строка 1: | Строка 1: | ||
local pp = {} | local pp = {} | ||
local global = mw.ext.luaglobal; | local global = mw.ext.luaglobal; | ||
− | local Args, Doc | + | local Args, Doc, Frame |
tools = require( 'Модуль:Tools' ) | tools = require( 'Модуль:Tools' ) | ||
+ | refTools = require( 'Module:RefTools' ) | ||
local doctools = require( 'Модуль:DocTools' ) | local doctools = require( 'Модуль:DocTools' ) | ||
+ | local abbr = mw.loadData( 'Модуль:Аббревиатуры' ) | ||
local rankTable = mw.loadData( 'Модуль:Звания' ) | local rankTable = mw.loadData( 'Модуль:Звания' ) | ||
− | local pope = require( 'Модуль:Поиск персоны' ) | + | --local pope = require( 'Модуль:Поиск персоны' ) |
global.strict( true ) | global.strict( true ) | ||
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
local function toRank( para ) | local function toRank( para ) | ||
local z = rankTable[para.rank] | local z = rankTable[para.rank] | ||
local i = 0 | local i = 0 | ||
− | if z then | + | if z then |
if z.diap then | if z.diap then | ||
for j, d in ipairs( z.diap ) do | for j, d in ipairs( z.diap ) do | ||
− | if para. | + | if para.cDate < d[1] then |
i = j-1 | i = j-1 | ||
break | break | ||
Строка 39: | Строка 26: | ||
end | end | ||
− | local query = Frame:expandTemplate{ title = ' | + | local query = Frame:expandTemplate{ title = 'Cargo:Ranks', args = { |
− | + | nLast = para.nLast, | |
− | + | nFirst = para.nFirst, | |
+ | nMiddle = para.nMiddle, | ||
+ | nDisambig = para.nDisambig, | ||
+ | nFull = para.nFull, | ||
+ | nPrecision = para.nPrecision, | ||
+ | cDate = para.cDate, | ||
rank = para.rank, | rank = para.rank, | ||
subrank = i, | subrank = i, | ||
Строка 47: | Строка 39: | ||
origin = para.origin, | origin = para.origin, | ||
reference = para.reference, | reference = para.reference, | ||
+ | alias = para.alias, | ||
isVolatile = para.isVolatile, | isVolatile = para.isVolatile, | ||
} } | } } | ||
return query | return query | ||
end | end | ||
− | + | ||
pp.Main = function ( frame ) | pp.Main = function ( frame ) | ||
+ | Frame = frame | ||
local tmp | local tmp | ||
local debugTxt = '' | local debugTxt = '' | ||
Args, tmp = tools.checkargs( frame:getParent().args, | Args, tmp = tools.checkargs( frame:getParent().args, | ||
{ true, '', ['дата'] = true, ['звание'] = true, ['подразделение'] = true, | { true, '', ['дата'] = true, ['звание'] = true, ['подразделение'] = true, | ||
− | ['место службы'] = true, | + | ['место службы'] = true, |
['должность'] = true, | ['должность'] = true, | ||
− | [' | + | ['сноска/должность'] = true, ['сноска/звание'] = true, |
− | |||
− | |||
['сноска'] = true, ['пояснение'] = true, } ) | ['сноска'] = true, ['пояснение'] = true, } ) | ||
if not Args then | if not Args then | ||
return tools.errorMsg( 'упоминание', 'Неизвестный параметр «' .. tmp .. '»' ) | return tools.errorMsg( 'упоминание', 'Неизвестный параметр «' .. tmp .. '»' ) | ||
end | end | ||
− | + | -- local dry = mw.text.trim( frame.args[1] or '' ) == 'dry' | |
+ | local mode = frame.args.mode or '' | ||
+ | local dry = mode == '-' | ||
+ | local fio_precision | ||
+ | if mode == '?' then | ||
+ | fio_precision = '?' | ||
+ | end | ||
local porno = global.get( 'porno' ) | local porno = global.get( 'porno' ) | ||
Строка 75: | Строка 73: | ||
Doc = global.get( 'gDoc' ) | Doc = global.get( 'gDoc' ) | ||
+ | local DocAlias = global.get( 'gDocAlias' ) | ||
if not Doc then | if not Doc then | ||
return tools.errorMsg( 'упоминание', | return tools.errorMsg( 'упоминание', | ||
Строка 85: | Строка 84: | ||
return tools.errorMsg ( 'упоминание', 'Не указано ФИО персоны' ) | return tools.errorMsg ( 'упоминание', 'Не указано ФИО персоны' ) | ||
end | end | ||
− | -- | + | local fio_l, fio_f, fio_m, fio_d, fio_warn = tools.splitName( fio ) |
+ | -- local fio_precision = nil | ||
+ | if not fio_l then | ||
+ | return tools.errorMsg( 'упоминание', fio_f ) | ||
+ | end | ||
+ | if fio_d and ( mode == '-' or mode == '*' ) then | ||
+ | return tools.errorMsg( 'упоминание' .. mode, 'Этот вариант шаблона не может использоваться c индексом тезки' ) | ||
+ | end | ||
+ | if mode == '*' then | ||
+ | fio = fio .. ' (*)' | ||
+ | fio_d = '(*)' | ||
+ | end | ||
+ | |||
local cargoQ = '' | local cargoQ = '' | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
if Doc.debug then | if Doc.debug then | ||
Строка 112: | Строка 109: | ||
local pos, unit, segment | local pos, unit, segment | ||
− | = Args['должность'], Args['подразделение'], Args['место службы'] | + | = doctools.abbr( Args['должность'], abbr.pos ), Args['подразделение'], doctools.abbr( Args['место службы'], abbr.segm ) |
− | + | ||
− | + | local rank = doctools.abbr( Args['звание'], abbr.rank ) | |
+ | if rank then | ||
+ | if rankTable[rank] then | ||
+ | if rankTable[rank].redirect then | ||
+ | rank = rankTable[rank].redirect | ||
+ | Args['звание'] = rank | ||
+ | end | ||
+ | else | ||
+ | return tools.errorMsg( 'упоминание', | ||
+ | 'Неизвестное звание «' .. rank .. '» в параметре «звание»') | ||
+ | end | ||
+ | end | ||
local ownDate = Args['дата'] | local ownDate = Args['дата'] | ||
Строка 133: | Строка 141: | ||
end | end | ||
− | + | -- -- сборка примечания | |
− | + | -- local refers = {} | |
− | + | -- refers[#refers+1] = Args['сноска'] | |
− | + | -- refers[#refers+1] = global.get( 'gUniref-Документ' ) | |
− | + | -- refers = table.concat( refers, '¶' ) | |
− | + | -- -- собрали примечание | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | local referTable = {} | |
− | + | local ownRef, usedRef = refTools.collect( Args, 'сноска' ), {} | |
− | + | refTools.absorb( referTable, global.get( 'gUniref-Документ' ) ) | |
− | + | refTools.absorb( referTable, ownRef ) | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
if rank then | if rank then | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
if not noCargo then | if not noCargo then | ||
cargoQ = cargoQ .. toRank { | cargoQ = cargoQ .. toRank { | ||
− | + | nLast = fio_l, | |
− | + | nFirst = fio_f, | |
+ | nMiddle = fio_m, | ||
+ | nDisambig = fio_d, | ||
+ | nFull = fio, | ||
+ | nPrecision = fio_precision, | ||
+ | cDate = actionDate, --+ Doc.date, -- упоминание — на дату составления документа | ||
rank = rank, | rank = rank, | ||
origin = 3, --+ tmp, | origin = 3, --+ tmp, | ||
− | + | reference = table.concat(referTable['звание'] or {}, '¶' ), | |
+ | alias = DocAlias, | ||
isVolatile = porno, | isVolatile = porno, | ||
} | } | ||
end | end | ||
+ | usedRef['звание'] = true | ||
end | end | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
if segment == '-' then | if segment == '-' then | ||
segment = nil | segment = nil | ||
end | end | ||
if pos or unit or segment then | if pos or unit or segment then | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
if not noCargo then | if not noCargo then | ||
− | cargoQ = cargoQ .. frame:expandTemplate{ title = ' | + | cargoQ = cargoQ .. frame:expandTemplate{ title = 'Cargo:Designations', args = { |
− | + | nLast = fio_l, | |
− | + | nFirst = fio_f, | |
+ | nMiddle = fio_m, | ||
+ | nDisambig = fio_d, | ||
+ | nFull = fio, | ||
+ | nPrecision = fio_precision, | ||
+ | cDate = actionDate, --+ Doc.date, -- упоминание — на дату составления документа | ||
unit = unit, | unit = unit, | ||
position = pos, | position = pos, | ||
segment = segment, | segment = segment, | ||
origin = 3, --+ tmp, | origin = 3, --+ tmp, | ||
− | + | reference = table.concat(referTable['должность'] or {}, '¶' ), | |
+ | alias = DocAlias, | ||
isVolatile = porno, | isVolatile = porno, | ||
} } | } } | ||
end | end | ||
+ | usedRef['должность'] = true | ||
end | end | ||
− | + | ||
− | if not noCargo then | + | if not noCargo and Args['пояснение'] then |
− | cargoQ = cargoQ .. frame:expandTemplate{ title = ' | + | cargoQ = cargoQ .. frame:expandTemplate{ title = 'Cargo:Mentions', args = { |
− | + | nLast = fio_l, | |
− | + | nFirst = fio_f, | |
− | reference = | + | nMiddle = fio_m, |
+ | nDisambig = fio_d, | ||
+ | nFull = fio, | ||
+ | nPrecision = fio_precision, | ||
+ | cDate = actionDate, | ||
+ | reference = table.concat(referTable['common'] or {}, '¶' ), | ||
comment = Args['пояснение'], | comment = Args['пояснение'], | ||
+ | alias = DocAlias, | ||
isVolatile = porno, | isVolatile = porno, | ||
} } | } } | ||
end | end | ||
− | + | if Args['пояснение'] then | |
+ | usedRef['common'] = true | ||
+ | end | ||
− | + | for i, _ in pairs( ownRef ) do | |
− | + | if not usedRef[i] then | |
− | + | return tools.errorMsg( 'упоминание', 'указана сноска к незаданному параметру «' .. i .. '»') | |
− | |||
end | end | ||
+ | end | ||
+ | |||
+ | |||
+ | local out, suffix = Args[2], '' | ||
+ | if out == '-' then | ||
+ | out = '' | ||
+ | elseif out == '+' then | ||
+ | if rank then | ||
+ | suffix = ', ' .. tools.db( rankTable, rank, 'кто' ) -- rank | ||
+ | end | ||
+ | if pos or unit or segment then | ||
+ | tmp = {} | ||
+ | if pos then | ||
+ | tmp[#tmp+1] = pos | ||
+ | end | ||
+ | if unit then | ||
+ | tmp[#tmp+1] = unit | ||
+ | end | ||
+ | if segment then | ||
+ | tmp[#tmp+1] = tools.segment( segment ) | ||
+ | end | ||
+ | suffix = suffix .. ' (' .. table.concat( tmp, '; ' ) .. ')' | ||
+ | end | ||
+ | if ownDate then | ||
+ | suffix = suffix .. ' [по сост. на ' .. tools.reparseDate( ownDate ) .. ']' | ||
+ | end | ||
+ | out = fio | ||
+ | elseif out == '' then | ||
+ | out = fio | ||
+ | end | ||
+ | |||
+ | if out ~= '' then | ||
if dry then | if dry then | ||
out = '<span class="nkvd-doc-mention-dry">' .. out .. '</span>' | out = '<span class="nkvd-doc-mention-dry">' .. out .. '</span>' | ||
Строка 460: | Строка 257: | ||
out = '[[' .. fio .. '|<span class="nkvd-doc-mention">' .. out .. '</span>]]' | out = '[[' .. fio .. '|<span class="nkvd-doc-mention">' .. out .. '</span>]]' | ||
end | end | ||
− | + | out = out .. suffix | |
− | out = | ||
end | end | ||
− | if | + | if referTable.common then |
− | + | debugTxt = '[[Категория:Универсальные сноски]]' .. debugTxt | |
end | end | ||
− | + | ||
− | if | + | if fio_precision then |
− | out = | + | out = out .. ' <span class="nkvd-idx"><i class="fa fa-question fa-lg">' |
− | + | .. '</i></span>' | |
− | |||
end | end | ||
− | out = | + | if #fio_warn ~= 0 then |
− | + | for _, warn in ipairs( fio_warn ) do | |
− | + | out = out .. ' <i class="fa fa-warning fa-lg" style="color: #f05f1a;"' | |
− | + | .. ' title="' .. warn .. '"></i>' | |
− | |||
end | end | ||
− | out = out .. ' | + | out = out .. '[[Категория:Неаккуратные ссылки на персоналии]]' |
end | end | ||
− | if | + | if not dry then |
− | + | out = out .. '[[' .. fio .. '|<span class="fa fa-external-link nkvd-doc-mention-flag" title="Упоминание — ' .. fio .. '"></span>]]' | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | out = out .. ' | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
− | + | return debugTxt .. out .. refTools.makeRef( refTools.toline( ownRef ) ) .. cargoQ | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | return debugTxt .. out .. cargoQ | ||
Версия 00:50, 27 февраля 2017
Для документации этого модуля может быть создана страница Модуль:Упоминание/doc
local pp = {}
local global = mw.ext.luaglobal;
local Args, Doc, Frame
tools = require( 'Модуль:Tools' )
refTools = require( 'Module:RefTools' )
local doctools = require( 'Модуль:DocTools' )
local abbr = mw.loadData( 'Модуль:Аббревиатуры' )
local rankTable = mw.loadData( 'Модуль:Звания' )
--local pope = require( 'Модуль:Поиск персоны' )
global.strict( true )
local function toRank( para )
local z = rankTable[para.rank]
local i = 0
if z then
if z.diap then
for j, d in ipairs( z.diap ) do
if para.cDate < d[1] then
i = j-1
break
end
end
else
i = 1
end
end
local query = Frame:expandTemplate{ title = 'Cargo:Ranks', args = {
nLast = para.nLast,
nFirst = para.nFirst,
nMiddle = para.nMiddle,
nDisambig = para.nDisambig,
nFull = para.nFull,
nPrecision = para.nPrecision,
cDate = para.cDate,
rank = para.rank,
subrank = i,
canceled = para.canceled,
origin = para.origin,
reference = para.reference,
alias = para.alias,
isVolatile = para.isVolatile,
} }
return query
end
pp.Main = function ( frame )
Frame = frame
local tmp
local debugTxt = ''
Args, tmp = tools.checkargs( frame:getParent().args,
{ true, '', ['дата'] = true, ['звание'] = true, ['подразделение'] = true,
['место службы'] = true,
['должность'] = true,
['сноска/должность'] = true, ['сноска/звание'] = true,
['сноска'] = true, ['пояснение'] = true, } )
if not Args then
return tools.errorMsg( 'упоминание', 'Неизвестный параметр «' .. tmp .. '»' )
end
-- local dry = mw.text.trim( frame.args[1] or '' ) == 'dry'
local mode = frame.args.mode or ''
local dry = mode == '-'
local fio_precision
if mode == '?' then
fio_precision = '?'
end
local porno = global.get( 'porno' )
porno = (porno or 0) + 1
global.set( 'porno', porno )
Doc = global.get( 'gDoc' )
local DocAlias = global.get( 'gDocAlias' )
if not Doc then
return tools.errorMsg( 'упоминание',
'Первым на странице должен размещаться шаблон {{ Документ }}' )
end
local noCargo = Doc.off or dry
local fio = Args[1]
if not fio then
return tools.errorMsg ( 'упоминание', 'Не указано ФИО персоны' )
end
local fio_l, fio_f, fio_m, fio_d, fio_warn = tools.splitName( fio )
-- local fio_precision = nil
if not fio_l then
return tools.errorMsg( 'упоминание', fio_f )
end
if fio_d and ( mode == '-' or mode == '*' ) then
return tools.errorMsg( 'упоминание' .. mode, 'Этот вариант шаблона не может использоваться c индексом тезки' )
end
if mode == '*' then
fio = fio .. ' (*)'
fio_d = '(*)'
end
local cargoQ = ''
if Doc.debug then
debugTxt = {}
for _, h in ipairs( Doc.n2h ) do
table.insert( debugTxt, '[' .. h .. '] = ' .. mw.dumpObject( Doc.h2v[h] ) )
end
debugTxt = '\n******* ' .. table.concat( debugTxt, '; ' ) .. '\n'
end
local pos, unit, segment
= doctools.abbr( Args['должность'], abbr.pos ), Args['подразделение'], doctools.abbr( Args['место службы'], abbr.segm )
local rank = doctools.abbr( Args['звание'], abbr.rank )
if rank then
if rankTable[rank] then
if rankTable[rank].redirect then
rank = rankTable[rank].redirect
Args['звание'] = rank
end
else
return tools.errorMsg( 'упоминание',
'Неизвестное звание «' .. rank .. '» в параметре «звание»')
end
end
local ownDate = Args['дата']
local actionDate
if ownDate then
ownDate = tools.parseDate( ownDate )
if not ownDate then
return tools.errorMsg( 'упоминание',
'Некорректный формат даты в параметре «дата»')
end
if Doc.h2v['дата'] then
return tools.errorMsg( 'упоминание',
'В секции {{дата}} у шаблона не может быть собственного параметра «дата»' )
end
actionDate = ownDate
else
actionDate = Doc.date
end
-- -- сборка примечания
-- local refers = {}
-- refers[#refers+1] = Args['сноска']
-- refers[#refers+1] = global.get( 'gUniref-Документ' )
-- refers = table.concat( refers, '¶' )
-- -- собрали примечание
local referTable = {}
local ownRef, usedRef = refTools.collect( Args, 'сноска' ), {}
refTools.absorb( referTable, global.get( 'gUniref-Документ' ) )
refTools.absorb( referTable, ownRef )
if rank then
if not noCargo then
cargoQ = cargoQ .. toRank {
nLast = fio_l,
nFirst = fio_f,
nMiddle = fio_m,
nDisambig = fio_d,
nFull = fio,
nPrecision = fio_precision,
cDate = actionDate, --+ Doc.date, -- упоминание — на дату составления документа
rank = rank,
origin = 3, --+ tmp,
reference = table.concat(referTable['звание'] or {}, '¶' ),
alias = DocAlias,
isVolatile = porno,
}
end
usedRef['звание'] = true
end
if segment == '-' then
segment = nil
end
if pos or unit or segment then
if not noCargo then
cargoQ = cargoQ .. frame:expandTemplate{ title = 'Cargo:Designations', args = {
nLast = fio_l,
nFirst = fio_f,
nMiddle = fio_m,
nDisambig = fio_d,
nFull = fio,
nPrecision = fio_precision,
cDate = actionDate, --+ Doc.date, -- упоминание — на дату составления документа
unit = unit,
position = pos,
segment = segment,
origin = 3, --+ tmp,
reference = table.concat(referTable['должность'] or {}, '¶' ),
alias = DocAlias,
isVolatile = porno,
} }
end
usedRef['должность'] = true
end
if not noCargo and Args['пояснение'] then
cargoQ = cargoQ .. frame:expandTemplate{ title = 'Cargo:Mentions', args = {
nLast = fio_l,
nFirst = fio_f,
nMiddle = fio_m,
nDisambig = fio_d,
nFull = fio,
nPrecision = fio_precision,
cDate = actionDate,
reference = table.concat(referTable['common'] or {}, '¶' ),
comment = Args['пояснение'],
alias = DocAlias,
isVolatile = porno,
} }
end
if Args['пояснение'] then
usedRef['common'] = true
end
for i, _ in pairs( ownRef ) do
if not usedRef[i] then
return tools.errorMsg( 'упоминание', 'указана сноска к незаданному параметру «' .. i .. '»')
end
end
local out, suffix = Args[2], ''
if out == '-' then
out = ''
elseif out == '+' then
if rank then
suffix = ', ' .. tools.db( rankTable, rank, 'кто' ) -- rank
end
if pos or unit or segment then
tmp = {}
if pos then
tmp[#tmp+1] = pos
end
if unit then
tmp[#tmp+1] = unit
end
if segment then
tmp[#tmp+1] = tools.segment( segment )
end
suffix = suffix .. ' (' .. table.concat( tmp, '; ' ) .. ')'
end
if ownDate then
suffix = suffix .. ' [по сост. на ' .. tools.reparseDate( ownDate ) .. ']'
end
out = fio
elseif out == '' then
out = fio
end
if out ~= '' then
if dry then
out = '<span class="nkvd-doc-mention-dry">' .. out .. '</span>'
else
out = '[[' .. fio .. '|<span class="nkvd-doc-mention">' .. out .. '</span>]]'
end
out = out .. suffix
end
if referTable.common then
debugTxt = '[[Категория:Универсальные сноски]]' .. debugTxt
end
if fio_precision then
out = out .. ' <span class="nkvd-idx"><i class="fa fa-question fa-lg">'
.. '</i></span>'
end
if #fio_warn ~= 0 then
for _, warn in ipairs( fio_warn ) do
out = out .. ' <i class="fa fa-warning fa-lg" style="color: #f05f1a;"'
.. ' title="' .. warn .. '"></i>'
end
out = out .. '[[Категория:Неаккуратные ссылки на персоналии]]'
end
if not dry then
out = out .. '[[' .. fio .. '|<span class="fa fa-external-link nkvd-doc-mention-flag" title="Упоминание — ' .. fio .. '"></span>]]'
end
return debugTxt .. out .. refTools.makeRef( refTools.toline( ownRef ) ) .. cargoQ
end
return pp