ผลต่างระหว่างรุ่นของ "มอดูล:InfoboxImage"

เนื้อหาที่ลบ เนื้อหาที่เพิ่ม
sync from enwiki
just to make sure I didn't break anything
ป้ายระบุ: ทำกลับ
บรรทัด 88:
"Project Trains no image.png",
"Image-request.png",
"Noimage.gif",
}
 
เส้น 163 ⟶ 162:
if mw.ustring.sub(image,1,2) == "[[" then
-- search for thumbnail images and add to tracking cat if found
local cat = "";
if mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*thumb%s*[|%]]") or mw.ustring.find(image, "|%s*thumbnail%s*[|%]]")) then
catreturn =image .. "[[Category:Pages using infoboxes with thumbnail images]]";
endelse
elseif mw.title.getCurrentTitle().namespace == 0 then
cat = "[[Category:Pages using deprecatedreturn image syntax]]";
end
return image .. cat;
elseif mw.ustring.sub(image,1,2) == "{{" and mw.ustring.sub(image,1,3) ~= "{{{" then
return image;
เส้น 175 ⟶ 172:
return image;
elseif mw.ustring.sub(image,1,5) == mw.ustring.char(127).."UNIQ" then
-- Found strip marker at begining, so pass don't process at all
return image;
elseif mw.ustring.sub(image,4,9) == "`UNIQ-" then
-- Found strip marker at begining, so pass don't process at all
return image;
เส้น 222 ⟶ 216:
if (tonumber(size) or 0) > 0 then
size = size .. "px";
end
-- add px to sizedefault if just a number
if (tonumber(sizedefault) or 0) > 0 then
sizedefault = sizedefault .. "px";
end