کاربر ناشناس
پودمان:Template link general: تفاوت میان نسخهها
update from sandbox - fixes to _show_result and adding _expand
جزبدون خلاصۀ ویرایش |
imported>Primefac (update from sandbox - fixes to _show_result and adding _expand) |
||
| (۴ نسخهٔ میانی ویرایش شده توسط ۲ کاربر نشان داده نشد) | |||
| خط ۱۳: | خط ۱۳: | ||
local i, _ = s:find(':', 1, true) | local i, _ = s:find(':', 1, true) | ||
if i == nil then | if i == nil then | ||
return ' | return 'Template:' .. s | ||
end | end | ||
local ns = s:sub(1, i - 1) | local ns = s:sub(1, i - 1) | ||
| خط ۱۹: | خط ۱۹: | ||
return s | return s | ||
else | else | ||
return ' | return 'Template:' .. s | ||
end | end | ||
end | end | ||
local function trimTemplate(s) | local function trimTemplate(s) | ||
local needle = ' | local needle = 'template:' | ||
if s:sub(1, needle:len()):lower() == needle then | if s:sub(1, needle:len()):lower() == needle then | ||
return s:sub(needle:len() + 1) | return s:sub(needle:len() + 1) | ||
| خط ۴۱: | خط ۴۱: | ||
if args['1'] then | if args['1'] then | ||
-- This handles :Page and other NS | -- This handles :Page and other NS | ||
titleObj = mw.title.new(args['1'], ' | titleObj = mw.title.new(args['1'], 'Template') | ||
else | else | ||
titleObj = mw.title.getCurrentTitle() | titleObj = mw.title.getCurrentTitle() | ||
| خط ۵۲: | خط ۵۲: | ||
if not _ne(textPart) then | if not _ne(textPart) then | ||
if titleObj ~= nil then | if titleObj ~= nil then | ||
textPart = titleObj:inNamespace(" | textPart = titleObj:inNamespace("Template") and args['1'] or titleObj.fullText | ||
else | else | ||
-- redlink | -- redlink | ||
| خط ۶۱: | خط ۶۱: | ||
if _ne(args.subst) then | if _ne(args.subst) then | ||
-- HACK: the ns thing above is probably broken | -- HACK: the ns thing above is probably broken | ||
textPart = ' | textPart = 'subst:' .. textPart | ||
end | end | ||
| خط ۹۰: | خط ۹۰: | ||
local dontBrace = _ne(args.brace) or _ne(args.braceinside) | local dontBrace = _ne(args.brace) or _ne(args.braceinside) | ||
local code = _ne(args.code) or _ne(args.tt) | local code = _ne(args.code) or _ne(args.tt) | ||
local show_result = _ne(args._show_result) | |||
local expand = _ne(args._expand) | |||
-- Build the link part | -- Build the link part | ||
| خط ۹۸: | خط ۱۰۰: | ||
-- Build the arguments | -- Build the arguments | ||
local textPart = "" | local textPart = "" | ||
local textPartBuffer = "" | local textPartBuffer = "|" | ||
local codeArguments = {} | |||
local codeArgumentsString = "" | |||
local i = 2 | local i = 2 | ||
local j = 1 | |||
while args[i] do | while args[i] do | ||
local val = args[i] | local val = args[i] | ||
if val ~= "" then | if val ~= "" then | ||
if _ne(args.nowiki) then | if _ne(args.nowiki) then | ||
| خط ۱۰۹: | خط ۱۱۳: | ||
val = nw(mw.text.unstripNoWiki(val)) | val = nw(mw.text.unstripNoWiki(val)) | ||
end | end | ||
if italic then val = '<span style="font-style:italic;">' .. val .. '</span>' end | local k, v = string.match(val, "(.*)=(.*)") | ||
if not k then | |||
codeArguments[j] = val | |||
j = j + 1 | |||
else | |||
codeArguments[k] = v | |||
end | |||
codeArgumentsString = codeArgumentsString .. textPartBuffer .. val | |||
if italic then | |||
val = '<span style="font-style:italic;">' .. val .. '</span>' | |||
end | |||
textPart = textPart .. textPartBuffer .. val | textPart = textPart .. textPartBuffer .. val | ||
end | end | ||
i = i+1 | i = i + 1 | ||
end | end | ||
| خط ۱۳۳: | خط ۱۴۶: | ||
--]] | --]] | ||
if _ne(args.debug) then ret = ret .. '\n<pre>' .. mw.text.encode(mw.dumpObject(args)) .. '</pre>' end | if _ne(args.debug) then ret = ret .. '\n<pre>' .. mw.text.encode(mw.dumpObject(args)) .. '</pre>' end | ||
if show_result then | |||
local result = mw.getCurrentFrame():expandTemplate{title = addTemplate(args[1]), args = codeArguments} | |||
ret = ret .. " → " .. result | |||
end | |||
if expand then | |||
local query = mw.text.encode('{{' .. addTemplate(args[1]) .. string.gsub(codeArgumentsString, textPartBuffer, "|") .. '}}') | |||
local url = mw.uri.fullUrl('special:ExpandTemplates', 'wpInput=' .. query) | |||
mw.log() | |||
ret = ret .. " [" .. tostring(url) .. "]" | |||
end | |||
return ret | return ret | ||
end | end | ||
return p | return p | ||