پودمان:Template link general: تفاوت میان نسخهها
Nazarzadeh (بحث | مشارکتها) جز ۱ نسخه واردشده |
Nazarzadeh (بحث | مشارکتها) جز ۱ نسخه واردشده |
||
(یک نسخهٔ میانی ویرایش شده توسط یک کاربر دیگر نشان داده نشد) | |||
خط ۱۱: | خط ۱۱: | ||
local function addTemplate(s) | local function addTemplate(s) | ||
local i, _ = | local i, _ = mw.ustring.find(s, ':', 1, true) | ||
if i == nil then | if i == nil then | ||
return ' | return 'الگو:' .. s | ||
end | end | ||
local ns = | local ns = mw.ustring.sub(s, 1, i - 1) | ||
if ns == '' or mw.site.namespaces[ns] then | if ns == '' or mw.site.namespaces[ns] then | ||
return s | return s | ||
else | else | ||
return ' | return 'الگو:' .. s | ||
end | end | ||
end | end | ||
local function trimTemplate(s) | local function trimTemplate(s) | ||
local needle = ' | local needle = 'الگو:' | ||
if s:sub(1, needle:len()):lower() == needle then | if s:sub(1, needle:len()):lower() == needle then | ||
return | return mw.ustring.sub(s, needle:len() + 1) | ||
else | else | ||
return s | return s | ||
خط ۴۱: | خط ۴۱: | ||
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'], 'الگو') | ||
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("الگو") 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 = 'جا:' .. textPart | ||
end | end | ||
خط ۹۱: | خط ۹۱: | ||
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 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 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 | ||
local k, v = | local k, v = mw.ustring.match(val, "(.*)=(.*)") | ||
if not k then | if not k then | ||
codeArguments[ | codeArguments[j] = val | ||
j = j + 1 | |||
else | else | ||
codeArguments[k] = v | codeArguments[k] = v | ||
end | end | ||
if italic then val = '<span style="font-style:italic;">' .. val .. '</span>' 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 | if show_result then | ||
local result = mw.getCurrentFrame():expandTemplate{title = " | local result = mw.getCurrentFrame():expandTemplate{title = addTemplate(args[1]), args = codeArguments} | ||
ret = ret .. " | ret = ret .. " ← " .. result | ||
end | |||
if expand then | |||
local query = mw.text.encode('{{' .. addTemplate(args[1]) .. mw.ustring.gsub(codeArgumentsString, textPartBuffer, "|") .. '}}') | |||
local url = mw.uri.fullUrl('special:ExpandTemplates', 'wpInput=' .. query) | |||
mw.log() | |||
ret = ret .. " [" .. tostring(url) .. "]" | |||
end | end | ||
return ret | return ret | ||
end | end | ||
return p | return p |