Перейти к содержанию
Главное меню
Главное меню
переместить в боковую панель
скрыть
Навигация
Заглавная страница
Указатели
Свежие правки
Случайная страница
Справка по MediaWiki
Народные Сказки
Поиск
Найти
Создать учётную запись
Войти
Персональные инструменты
Создать учётную запись
Войти
Страницы для неавторизованных редакторов
узнать больше
Вклад
Обсуждение
Редактирование:
Модуль:ФИО/песочница
Модуль
Обсуждение
English
Читать
Править код
История
Инструменты
Инструменты
переместить в боковую панель
скрыть
Действия
Читать
Править код
История
Общие
Ссылки сюда
Связанные правки
Служебные страницы
Сведения о странице
Внимание:
Вы не вошли в систему. Ваш IP-адрес будет общедоступен, если вы запишете какие-либо изменения. Если вы
войдёте
или
создадите учётную запись
, её имя будет использоваться вместо IP-адреса, наряду с другими преимуществами.
Анти-спам проверка.
Не
заполняйте это!
local get_args = require('Модуль:Arguments').getArgs local mHatnote = require('Модуль:Hatnote/песочница') local current_title = mw.title.getCurrentTitle().text local p = {} local hatnote_args = { hide_disambig = true, dot = true, empty_list_message = 'Не найдено ни одной страницы разрешения неоднозначности', preview_error = true } local templates = { '[сС]писок однофамильцев', '[сС]писок т[ёе]зок', '[сС]писок полных т[ёе]зок', '[сС]писок однофамильцев-т[её]зок', '[сС]писок т[её]зок-однофамильцев' } local disambig_box_names = { '[нН]еоднозначность', '[мМ]ногозначность', '[dD]isambig' } local disambig_box_params = { '[фФ]амилии', '[оО]днофамильцы', '[тТ][ёе]зки', '[оО]днофамильцы-т[ёе]зки', '[пП]олные т[ёе]зки' } local tracking_categories = { bad_link = 'РуСказки:Страницы с шаблоном ФИО со ссылкой на общие неоднозначности', no_links = 'РуСказки:Страницы с шаблоном ФИО без ссылок', disambig_not_found = 'РуСказки:Страницы с модулем ФИО со ссылкой на другую статью' } function is_surname_disambig(title) local page = mw.title.new(title) if not page.exists or mw.title.equals(page, mw.title.getCurrentTitle()) then return false end local mRedirect = require('Module:Redirect') if mRedirect.luaIsRedirect(title) then title = mRedirect.getTarget(page) page = mw.title.new(title) if not page.exists or mw.title.equals(page, mw.title.getCurrentTitle()) then return false end end local page_content = page:getContent():gsub('<[^>]*>', '') for i, template in ipairs(templates) do if mw.ustring.match(page_content, '{{' .. template) then return true end end for i, name in ipairs(disambig_box_names) do for j, param in ipairs(disambig_box_params) do if mw.ustring.match(page_content, string.format('{{%s[^}]*%s', name, param)) then return true end end end return false end function get_items(_title) local title = mHatnote.remove_precision{_title} local surname = title:match('^[^,]+') local surname_with_name = title:match('^[^,]+,%s[^%s]+') local full_name = title:match('^[^,]+,%s[^%s]+%s[^%s]+') return {surname, surname_with_name, full_name} end function find_disambig(title, categories, check_nil, nocat) local disambig_page local without = mHatnote.remove_precision{title} local with = without .. ' (значения)' if is_surname_disambig(title) then disambig_page = title elseif without ~= title and is_surname_disambig(without) then disambig_page = without elseif with ~= title and is_surname_disambig(with) then disambig_page = with elseif title ~= with and mHatnote.is_disambig{title} then categories:add('bad_link', nocat) disambig_page = title elseif mw.title.new(with).exists then categories:add('bad_link', nocat) disambig_page = with elseif without ~= title and mHatnote.is_disambig{without} then categories:add('bad_link', nocat) disambig_page = without end if not disambig_page and check_nil then categories:add('disambig_not_found', nocat) end return disambig_page, without end p['ФИО'] = function (frame) local args = get_args(frame) local title = args.title or args[1] or current_title local categories = mHatnote.define_categories(tracking_categories) local nocat = args.nocat hatnote_args.prefix = 'На РуСказках есть статьи о других людях с такой фамилией, см.' hatnote_args.list_sep = '; ' hatnote_args.natural_join = false hatnote_args.nocat = nocat local lNum = 0 for i, v in ipairs(get_items(title)) do link, label = find_disambig(v, categories, false, nocat) if link and link ~= title and link ~= current_title then lNum = lNum + 1 hatnote_args[lNum], hatnote_args['l' .. lNum] = link, label end end return mHatnote.main(hatnote_args, tracking_categories) .. categories end function template_by_type(frame, disambig_type, num) return function (frame) local args = get_args(frame) local categories = mHatnote.define_categories(tracking_categories) local nocat = args.nocat local prefixes = mw.loadData('Модуль:Другие значения/префиксы') local prefix = prefixes[disambig_type] if type(prefix) == 'table' then if args[2] then hatnote_args.prefix = prefix.plural else hatnote_args.prefix = prefix.singular end else hatnote_args.prefix = prefix end hatnote_args.nocat = nocat if not args[1] then local link = get_items(current_title)[num] local found_disambig, auto_label = find_disambig(link, categories, true, nocat) hatnote_args[1] = found_disambig or link hatnote_args['l1'] = args['l1'] or auto_label else local i = 1 while args[i] do local link, label = mHatnote.parse_link{args[i]} if link then local found_disambig, auto_label = find_disambig(link, categories, true, nocat) hatnote_args[i] = found_disambig or link hatnote_args['l' .. i] = label or args['l' .. i] or auto_label else hatnote_args[i] = args[i] end i = i + 1 end end return mHatnote.main(hatnote_args, tracking_categories) .. categories end end p['однофамильцы'] = template_by_type(frame, 'фамилия', 1) p['однофамильцы-тёзки'] = template_by_type(frame, 'имя и фамилия', 2) p['полные тёзки'] = template_by_type(frame, 'фио', 3) return p
Описание изменений:
Пожалуйста, учтите, что любой ваш вклад в проект «Народные Сказки» может быть отредактирован или удалён другими участниками. Если вы не хотите, чтобы кто-либо изменял ваши тексты, не помещайте их сюда.
Вы также подтверждаете, что являетесь автором вносимых дополнений, или скопировали их из источника, допускающего свободное распространение и изменение своего содержимого (см.
РуСказки:Авторские права
).
НЕ РАЗМЕЩАЙТЕ БЕЗ РАЗРЕШЕНИЯ ОХРАНЯЕМЫЕ АВТОРСКИМ ПРАВОМ МАТЕРИАЛЫ!
Отменить
Справка по редактированию
(в новом окне)
Отобразить/Скрыть ограниченную ширину содержимого