모듈:InfoboxImage: 두 판 사이의 차이

위키백과>Darkbosal
새 문서: -- Inputs: -- image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link -- size - size to display the image -- maxsize -...
 
imported>Ykhwong
m "모듈:InfoboxImage" 문서를 보호했습니다: 훼손시 영향이 큰 틀이나 모듈 ([편집=자동 인증된 사용자만 허용] (무기한) [이동=자동 인증된 사용자만 허용] (무기한))
 
(사용자 14명의 중간 판 36개는 보이지 않습니다)
1번째 줄: 1번째 줄:
-- Inputs:
-- Inputs:
--    image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link
--    image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link
--    page - page to display for multipage images (DjVu)
--    size - size to display the image
--    size - size to display the image
--    maxsize - maximum size for image
--    maxsize - maximum size for image
--    sizedefault - default size to display the image if size param is blank
--    sizedefault - default size to display the image if size param is blank
--    alt - alt text for image
--    alt - alt text for image
--    title - title text for image
--    border - set to yes if border
--    center - set to yes, if the image has to be centered
--    upright - upright image param
--    suppressplaceholder - if yes then checks to see if image is a placeholder and suppresses it
--    suppressplaceholder - if yes then checks to see if image is a placeholder and suppresses it
--    link - page to visit when clicking on image
-- Outputs:
-- Outputs:
--    Formatted image.
--    Formatted image.
-- More details available at the "Module:InfoboxImage/doc" page
-- More details available at the "Module:InfoboxImage/doc" page
 
local i = {};
local i = {};
 
local placeholder_image = {
local placeholder_image = {
     "Blue - Replace this image female.svg",
     "Blue - Replace this image female.svg",
38번째 줄: 44번째 줄:
     "Silver - Replace this image female.svg",
     "Silver - Replace this image female.svg",
     "Silver - Replace this image male.svg",
     "Silver - Replace this image male.svg",
    "Replace this image.svg",
"Cricket no pic.png",
"CarersLogo.gif",
"Diagram Needed.svg",
"Example.jpg",
"Image placeholder.png",
"No male portrait.svg",
"Nocover-upload.png",
"NoDVDcover copy.png",
"Noribbon.svg",
"No portrait-BFD-test.svg",
"Placeholder barnstar ribbon.png",
"Project Trains no image.png",
"Image-request.png",
"Sin bandera.svg",
"Sin escudo.svg",
"Replace this image - temple.png",
"Replace this image butterfly.png",
"Replace this image.svg",
"Replace this image1.svg",
"Resolution angle.png",
"Image-No portrait-text-BFD-test.svg",
"Insert image here.svg",
"No image available.png",
"NO IMAGE YET square.png",
"NO IMAGE YET.png",
"No Photo Available.svg",
"No Screenshot.svg",
"No-image-available.jpg",
"Null.png",
"PictureNeeded.gif",
"Place holder.jpg",
"Unbenannt.JPG",
"UploadACopyrightFreeImage.svg",
"UploadAnImage.gif",
"UploadAnImage.svg",
"UploadAnImageShort.svg",
"CarersLogo.gif",
"Diagram Needed.svg",
"No male portrait.svg",
"NoDVDcover copy.png",
"Placeholder barnstar ribbon.png",
"Project Trains no image.png",
"Image-request.png",
"Noimage.gif",
}
}
 
function i.IsPlaceholder(image)
function i.IsPlaceholder(image)
     -- change underscores to spaces
     -- change underscores to spaces
     image = mw.ustring.gsub(image, "_", " ");
     image = mw.ustring.gsub(image, "_", " ");
    assert(image ~= nil, 'mw.ustring.gsub(image, "_", " ") must not return nil')
     -- if image starts with [[ then remove that and anything after |
     -- if image starts with [[ then remove that and anything after |
     if mw.ustring.sub(image,1,2) == "[[" then
     if mw.ustring.sub(image,1,2) == "[[" then
         image = mw.ustring.sub(image,3);
         image = mw.ustring.sub(image,3);
         image = mw.ustring.gsub(image, "([^|]*)|.*", "%1");
         image = mw.ustring.gsub(image, "([^|]*)|.*", "%1");
        assert(image ~= nil, 'mw.ustring.gsub(image, "([^|]*)|.*", "%1") must not return nil')
     end
     end
     -- Trim spaces
     -- Trim spaces
     image = mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1');
     image = mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1');
     -- remove file: or image: prefix if exists
    assert(image ~= nil, "mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1') must not return nil")
     if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "file:" then
     -- remove prefix if exists
        image = mw.ustring.sub(image,6,mw.ustring.len(image));
     local allNames = mw.site.namespaces[6].aliases
    end
    allNames[#allNames + 1] = mw.site.namespaces[6].name
    if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "image:" then
    allNames[#allNames + 1] = mw.site.namespaces[6].canonicalName
        image = mw.ustring.sub(image,7,mw.ustring.len(image));
    for i, name in ipairs(allNames) do
        if mw.ustring.lower(mw.ustring.sub(image, 1, mw.ustring.len(name) + 1)) == mw.ustring.lower(name .. ":") then
            image = mw.ustring.sub(image, mw.ustring.len(name) + 2);
            break
        end
     end
     end
     -- Trim spaces
     -- Trim spaces
61번째 줄: 118번째 줄:
     -- capitalise first letter
     -- capitalise first letter
     image = mw.ustring.upper(mw.ustring.sub(image,1,1)) .. mw.ustring.sub(image,2);
     image = mw.ustring.upper(mw.ustring.sub(image,1,1)) .. mw.ustring.sub(image,2);
 
     for i,j in pairs(placeholder_image) do
     for i,j in pairs(placeholder_image) do
         if image == j then
         if image == j then
69번째 줄: 126번째 줄:
     return false
     return false
end
end
 
function i.InfoboxImage(frame)
function i.InfoboxImage(frame)
     local image = frame.args["image"];
     local image = (frame.args["그림"] or frame.args["image"]);
   
     if image == "" or image == nil then
     if image == "" or image == nil then
         return "";
         return "";
79번째 줄: 136번째 줄:
         return image;
         return image;
     end
     end
     if frame.args["suppressplaceholder"] == "yes" then
     if frame.args["suppressplaceholder"] ~= "no" or
      frame.args["suppressplaceholder"] ~= "아니오" or
      frame.args["그림숨김"] ~= "아니오" or
      frame.args["그림숨김"] ~= "no" then
         if i.IsPlaceholder(image) == true then
         if i.IsPlaceholder(image) == true then
             return "";
             return "";
         end
         end
     end
     end
 
     if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "http:" then
     if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "http:" then
         return "";
         return "";
94번째 줄: 154번째 줄:
         return "";
         return "";
     end
     end
    if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "https:" then
        return "";
    end
    if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[https:" then
        return "";
    end
    if mw.ustring.lower(mw.ustring.sub(image,1,8)) == "[[https:" then
        return "";
    end
 
     if mw.ustring.sub(image,1,2) == "[[" then
     if mw.ustring.sub(image,1,2) == "[[" then
         -- search for thumbnail images and add to tracking cat if found
         -- search for thumbnail images and add to tracking cat if found
         if mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*thumb%s*[|%]]") or mw.ustring.find(image, "|%s*thumbnail%s*[|%]]")) then
         if mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*thumb%s*[|%]]") or mw.ustring.find(image, "|%s*thumbnail%s*[|%]]")) then
             return image .. "[[Category:Pages using infoboxes with thumbnail images]]";
             return image .. "[[분류:섬네일 그림이 있는 정보 상자를 사용하는 문서]]";
        elseif mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*섬네일%s*[|%]]") or mw.ustring.find(image, "|%s*썸네일%s*[|%]]")) then
            return image .. "[[분류:섬네일 그림이 있는 정보 상자를 사용하는 문서]]";
        elseif mw.title.getCurrentTitle().namespace == 0 then
            return image .. "[[분류:오래된 그림 구조를 사용하고 있는 문서]]";
         else
         else
             return image;
             return image;
107번째 줄: 180번째 줄:
         return image;
         return image;
     elseif mw.ustring.sub(image,1,5) == mw.ustring.char(127).."UNIQ" then
     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
         -- Found strip marker at begining, so pass don't process at all
         return image;
         return image;
     else
     else
         local result = "";
         local result = "";
         local size = frame.args["size"];
        local page = (frame.args["문서"] or frame.args["page"]);
         local maxsize = frame.args["maxsize"];
         local size = (frame.args["크기"] or frame.args["size"]);
         local sizedefault = frame.args["sizedefault"];
         local maxsize = (frame.args["최대크기"] or frame.args["maxsize"]);
         local alt = frame.args["alt"];
         local sizedefault = (frame.args["기본"] or frame.args["sizedefault"]);
         local border = frame.args["border"];
         local alt = (frame.args["설명"] or frame.args["alt"]);
        local link = (frame.args["연결"] or frame.args["link"]);
         -- remove file: or image: prefix if exists
        local title = (frame.args["제목"] or frame.args["title"]);
         if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "file:" then
         local border = (frame.args["테두리"] or frame.args["border"]);
            image = mw.ustring.sub(image,6,mw.ustring.len(image));
        local upright = frame.args["upright"] or "";
        end
        local thumbtime = frame.args["thumbtime"] or "";
        if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "image:" then
        local center= (frame.args["가운데"] or frame.args["center"]);
            image = mw.ustring.sub(image,7,mw.ustring.len(image));
       
         -- remove prefix if exists
         local allNames = mw.site.namespaces[6].aliases
        allNames[#allNames + 1] = mw.site.namespaces[6].name
        allNames[#allNames + 1] = mw.site.namespaces[6].canonicalName
        for i, name in ipairs(allNames) do
            if mw.ustring.lower(mw.ustring.sub(image, 1, mw.ustring.len(name) + 1)) == mw.ustring.lower(name .. ":") then
                image = mw.ustring.sub(image, mw.ustring.len(name) + 2);
                break
            end
         end
         end
       
         if maxsize ~= "" and maxsize ~= nil then
         if maxsize ~= "" and maxsize ~= nil then
             -- if no sizedefault then set to maxsize
             -- if no sizedefault then set to maxsize
133번째 줄: 218번째 줄:
             if size ~= "" and size ~= nil then
             if size ~= "" and size ~= nil then
                 local sizenumber = tonumber(mw.ustring.match(size,"%d*")) or 0;
                 local sizenumber = tonumber(mw.ustring.match(size,"%d*")) or 0;
                 local maxsizenumber = tonumber(mw.ustring.match(maxsize,"%d*"));
                 local maxsizenumber = tonumber(mw.ustring.match(maxsize,"%d*")) or 0;
                 if sizenumber>maxsizenumber and maxsizenumber>0 then
                 if sizenumber>maxsizenumber and maxsizenumber>0 then
                     size = maxsize;
                     size = maxsize;
143번째 줄: 228번째 줄:
             size = size .. "px";
             size = size .. "px";
         end
         end
        -- add px to sizedefault if just a number
        if (tonumber(sizedefault) or 0) > 0 then
            sizedefault = sizedefault .. "px";
        end
       
         result = "[[File:" .. image;
         result = "[[File:" .. image;
        if page ~= "" and page ~= nil then
            result = result .. "|page=" .. page;
        end
         if size ~= "" and size ~= nil then
         if size ~= "" and size ~= nil then
             result = result .. "|" .. size;
             result = result .. "|" .. size;
151번째 줄: 243번째 줄:
         else
         else
             result = result .. "|frameless";
             result = result .. "|frameless";
        end
        if center == "yes" then
            result = result .. "|center"
         end
         end
         if alt ~= "" and alt ~= nil then
         if alt ~= "" and alt ~= nil then
             result = result .. "|alt=" .. alt;
             result = result .. "|alt=" .. alt;
         end
         end
         if border == "yes" then
         if link ~= "" and link ~= nil then
            result = result .. "|link=" .. link;
        end
        if border == "예" or border == "yes" then
             result = result .. "|border";
             result = result .. "|border";
        end
        if upright == "예" or upright == "yes" then
            result = result .. "|upright";
        elseif upright ~= "" then
            result = result .. "|upright=" .. upright;
        end
        if thumbtime ~= "" then
            result = result .. "|thumbtime=" .. thumbtime;
        end
        -- if alt value is a keyword then do not use as a description
        if alt == "thumbnail" or alt == "thumb" or alt == "frameless" or alt == "left" or alt == "center" or alt == "right" or alt == "upright" or alt == "border" or mw.ustring.match(alt or "", '^[0-9]*px$', 1) ~= nil then
            alt = nil;
        end
        if title ~= "" and title ~= nil then
            -- does title param contain any templatestyles? If yes then set to blank.
            if mw.ustring.match(frame:preprocess(title), 'UNIQ%-%-templatestyles', 1) ~= nil then
                title = nil;
            end
        end
        if title ~= "" and title ~= nil then
            result = result .. "|" .. title;
        elseif alt ~= "" and alt ~= nil then
            result = result .. "|" .. alt;
         end
         end
         result = result .. "]]";
         result = result .. "]]";
       
         return result;
         return result;
     end
     end
end
end
 
return i;
return i;

2021년 8월 27일 (금) 08:30 기준 최신판

개요[원본 편집]

이 모듈은 이미지 변수를 처리하기 위해서, 그리고 결과물을 정리하기 위해서 정보상자 내에서 사용된다.

변수[원본 편집]

변수 설명
그림 필수. The main parameter that should be passed over which contains the image info.
크기 보여질 그림의 크기.
최대 이미지를 출력할 최대 크기. 주의: size나 sizedefault 변수가 지정되지 않았다면, 이미지는 maxsize로 보여진다.
기본 크기 지정 변수가 없다면 이미지가 사용할 크기. 기본은 프레임 없음.
설명 그림의 설명
테두리 그림의 테두리를 설정합니다. (예 / )
그림숨김 그림을 숨깁니다. 공간은 차지합니다. (예 / )

주의: maxsize 또는 sizedefault 변수를 사용하면, 숫자 뒤에 px를 반드시 지정해야 한다.

사용법[원본 편집]

|그림 = {{#invoke:InfoboxImage|InfoboxImage|그림={{{그림명|}}} | 크기={{{그림_크기|}}} | 기본=frameless | 설명={{{그림 설명|}}}}}

예제[원본 편집]

{{#invoke:InfoboxImage|InfoboxImage}}
{{#invoke:InfoboxImage|InfoboxImage|그림=}}
{{#invoke:InfoboxImage|InfoboxImage|그림=[[file:Gyeongbokgung-KeunJeongJeon.JPG|200px]]}} 파일:Gyeongbokgung-GeunJeongJeon.jpg
{{#invoke:InfoboxImage|InfoboxImage|그림=[[image:Gyeongbokgung-KeunJeongJeon.JPG|200px]]}} 파일:Gyeongbokgung-GeunJeongJeon.jpg
{{#invoke:InfoboxImage|InfoboxImage|그림=[[파일:Gyeongbokgung-KeunJeongJeon.JPG|200px]]}} 파일:Gyeongbokgung-GeunJeongJeon.jpg
{{#invoke:InfoboxImage|InfoboxImage|그림=[[그림:Gyeongbokgung-KeunJeongJeon.JPG|200px]]}} 파일:Gyeongbokgung-GeunJeongJeon.jpg
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=File:Gyeongbokgung-KeunJeongJeon.JPG}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=image:Gyeongbokgung-KeunJeongJeon.JPG}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=파일:Gyeongbokgung-KeunJeongJeon.JPG}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=그림:Gyeongbokgung-KeunJeongJeon.JPG}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|크기=100}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|크기=100px}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|기본=250px|설명=경복궁}} 경복궁
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|설명=경복궁}} 경복궁
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|크기=100px|설명=경복궁}} 경복궁
{{#invoke:InfoboxImage|InfoboxImage|그림=Bilbao.svg|크기=200|테두리=예}} 파일:Bilbao.svg
{{#invoke:InfoboxImage|InfoboxImage|그림=Replace this image male.svg|그림숨김=예}}
{{#invoke:InfoboxImage|InfoboxImage|그림=[[그림:replace this image male.svg|200px]]|그림숨김=예}}
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|크기=50px|최대=100px}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|크기=200px|최대=100px}} 파일:Gyeongbokgung-KeunJeongJeon.JPG
{{#invoke:InfoboxImage|InfoboxImage|그림=Gyeongbokgung-KeunJeongJeon.JPG|최대=100px}} 파일:Gyeongbokgung-KeunJeongJeon.JPG

-- Inputs:
--    image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link
--    page - page to display for multipage images (DjVu)
--    size - size to display the image
--    maxsize - maximum size for image
--    sizedefault - default size to display the image if size param is blank
--    alt - alt text for image
--    title - title text for image
--    border - set to yes if border
--    center - set to yes, if the image has to be centered
--    upright - upright image param
--    suppressplaceholder - if yes then checks to see if image is a placeholder and suppresses it
--    link - page to visit when clicking on image
-- Outputs:
--    Formatted image.
-- More details available at the "Module:InfoboxImage/doc" page

local i = {};

local placeholder_image = {
    "Blue - Replace this image female.svg",
    "Blue - Replace this image male.svg",
    "Female no free image yet.png",
    "Flag of None (square).svg",
    "Flag of None.svg",
    "Flag of.svg",
    "Green - Replace this image female.svg",
    "Green - Replace this image male.svg",
    "Image is needed female.svg",
    "Image is needed male.svg",
    "Location map of None.svg",
    "Male no free image yet.png",
    "Missing flag.png",
    "No flag.svg",
    "No free portrait.svg",
    "No portrait (female).svg",
    "No portrait (male).svg",
    "Red - Replace this image female.svg",
    "Red - Replace this image male.svg",
    "Replace this image female (blue).svg",
    "Replace this image female.svg",
    "Replace this image male (blue).svg",
    "Replace this image male.svg",
    "Silver - Replace this image female.svg",
    "Silver - Replace this image male.svg",
    "Replace this image.svg",
	"Cricket no pic.png",
	"CarersLogo.gif",
	"Diagram Needed.svg",
	"Example.jpg",
	"Image placeholder.png",
	"No male portrait.svg",
	"Nocover-upload.png",
	"NoDVDcover copy.png",
	"Noribbon.svg",
	"No portrait-BFD-test.svg",
	"Placeholder barnstar ribbon.png",
	"Project Trains no image.png",
	"Image-request.png",
	"Sin bandera.svg",
	"Sin escudo.svg",
	"Replace this image - temple.png",
	"Replace this image butterfly.png",
	"Replace this image.svg",
	"Replace this image1.svg",
	"Resolution angle.png",
	"Image-No portrait-text-BFD-test.svg",
	"Insert image here.svg",
	"No image available.png",
	"NO IMAGE YET square.png",
	"NO IMAGE YET.png",
	"No Photo Available.svg",
	"No Screenshot.svg",
	"No-image-available.jpg",
	"Null.png",
	"PictureNeeded.gif",
	"Place holder.jpg",
	"Unbenannt.JPG",
	"UploadACopyrightFreeImage.svg",
	"UploadAnImage.gif",
	"UploadAnImage.svg",
	"UploadAnImageShort.svg",
	"CarersLogo.gif",
	"Diagram Needed.svg",
	"No male portrait.svg",
	"NoDVDcover copy.png",
	"Placeholder barnstar ribbon.png",
	"Project Trains no image.png",
	"Image-request.png",
	"Noimage.gif",
}

function i.IsPlaceholder(image)
    -- change underscores to spaces
    image = mw.ustring.gsub(image, "_", " ");
    assert(image ~= nil, 'mw.ustring.gsub(image, "_", " ") must not return nil')
    -- if image starts with [[ then remove that and anything after |
    if mw.ustring.sub(image,1,2) == "[[" then
        image = mw.ustring.sub(image,3);
        image = mw.ustring.gsub(image, "([^|]*)|.*", "%1");
        assert(image ~= nil, 'mw.ustring.gsub(image, "([^|]*)|.*", "%1") must not return nil')
    end
    -- Trim spaces
    image = mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1');
    assert(image ~= nil, "mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1') must not return nil")
    -- remove prefix if exists
    local allNames = mw.site.namespaces[6].aliases
    allNames[#allNames + 1] = mw.site.namespaces[6].name
    allNames[#allNames + 1] = mw.site.namespaces[6].canonicalName
    for i, name in ipairs(allNames) do
        if mw.ustring.lower(mw.ustring.sub(image, 1, mw.ustring.len(name) + 1)) == mw.ustring.lower(name .. ":") then
            image = mw.ustring.sub(image, mw.ustring.len(name) + 2);
            break
        end
    end
    -- Trim spaces
    image = mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1');
    -- capitalise first letter
    image = mw.ustring.upper(mw.ustring.sub(image,1,1)) .. mw.ustring.sub(image,2);

    for i,j in pairs(placeholder_image) do
        if image == j then
            return true
        end
    end
    return false
end

function i.InfoboxImage(frame)
    local image = (frame.args["그림"] or frame.args["image"]);
    
    if image == "" or image == nil then
        return "";
    end
    if image == " " then
        return image;
    end
    if frame.args["suppressplaceholder"] ~= "no" or
       frame.args["suppressplaceholder"] ~= "아니오" or
       frame.args["그림숨김"] ~= "아니오" or
       frame.args["그림숨김"] ~= "no"  then
        if i.IsPlaceholder(image) == true then
            return "";
        end
    end

    if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "http:" then
        return "";
    end
    if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "[http:" then
        return "";
    end
    if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[[http:" then
        return "";
    end
    if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "https:" then
        return "";
    end
    if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[https:" then
        return "";
    end
    if mw.ustring.lower(mw.ustring.sub(image,1,8)) == "[[https:" then
        return "";
    end

    if mw.ustring.sub(image,1,2) == "[[" then
        -- search for thumbnail images and add to tracking cat if found
        if mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*thumb%s*[|%]]") or mw.ustring.find(image, "|%s*thumbnail%s*[|%]]")) then
            return image .. "[[분류:섬네일 그림이 있는 정보 상자를 사용하는 문서]]";
        elseif mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*섬네일%s*[|%]]") or mw.ustring.find(image, "|%s*썸네일%s*[|%]]")) then
            return image .. "[[분류:섬네일 그림이 있는 정보 상자를 사용하는 문서]]";
        elseif mw.title.getCurrentTitle().namespace == 0 then
            return image .. "[[분류:오래된 그림 구조를 사용하고 있는 문서]]";
        else
            return image;
        end
    elseif mw.ustring.sub(image,1,2) == "{{" and mw.ustring.sub(image,1,3) ~= "{{{" then
        return image;
    elseif mw.ustring.sub(image,1,1) == "<" then
        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;
    else
        local result = "";
        local page = (frame.args["문서"] or frame.args["page"]);
        local size = (frame.args["크기"] or frame.args["size"]);
        local maxsize = (frame.args["최대크기"] or frame.args["maxsize"]);
        local sizedefault = (frame.args["기본"] or frame.args["sizedefault"]);
        local alt = (frame.args["설명"] or frame.args["alt"]);
        local link = (frame.args["연결"] or frame.args["link"]);
        local title = (frame.args["제목"] or frame.args["title"]);
        local border = (frame.args["테두리"] or frame.args["border"]);
        local upright = frame.args["upright"] or "";
        local thumbtime = frame.args["thumbtime"] or "";
        local center= (frame.args["가운데"] or frame.args["center"]);
        
        -- remove prefix if exists
        local allNames = mw.site.namespaces[6].aliases
        allNames[#allNames + 1] = mw.site.namespaces[6].name
        allNames[#allNames + 1] = mw.site.namespaces[6].canonicalName
        for i, name in ipairs(allNames) do
            if mw.ustring.lower(mw.ustring.sub(image, 1, mw.ustring.len(name) + 1)) == mw.ustring.lower(name .. ":") then
                image = mw.ustring.sub(image, mw.ustring.len(name) + 2);
                break
            end
        end
        
        if maxsize ~= "" and maxsize ~= nil then
            -- if no sizedefault then set to maxsize
            if sizedefault == "" or sizedefault == nil then
                sizedefault = maxsize
            end
            -- check to see if size bigger than maxsize
            if size ~= "" and size ~= nil then
                local sizenumber = tonumber(mw.ustring.match(size,"%d*")) or 0;
                local maxsizenumber = tonumber(mw.ustring.match(maxsize,"%d*")) or 0;
                if sizenumber>maxsizenumber and maxsizenumber>0 then
                    size = maxsize;
                end
            end
        end
        -- add px to size if just a number
        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
        
        result = "[[File:" .. image;
        if page ~= "" and page ~= nil then
            result = result .. "|page=" .. page;
        end
        if size ~= "" and size ~= nil then
            result = result .. "|" .. size;
        elseif sizedefault ~= "" and sizedefault ~= nil then
            result = result .. "|" .. sizedefault;
        else
            result = result .. "|frameless";
        end
        if center == "yes" then
            result = result .. "|center"
        end
        if alt ~= "" and alt ~= nil then
            result = result .. "|alt=" .. alt;
        end
        if link ~= "" and link ~= nil then
            result = result .. "|link=" .. link;
        end
        if border == "예" or border == "yes" then
            result = result .. "|border";
        end
        if upright == "예" or upright == "yes" then
            result = result .. "|upright";
        elseif upright ~= "" then
            result = result .. "|upright=" .. upright;
        end
        if thumbtime ~= "" then
            result = result .. "|thumbtime=" .. thumbtime;
        end
        -- if alt value is a keyword then do not use as a description
        if alt == "thumbnail" or alt == "thumb" or alt == "frameless" or alt == "left" or alt == "center" or alt == "right" or alt == "upright" or alt == "border" or mw.ustring.match(alt or "", '^[0-9]*px$', 1) ~= nil then
            alt = nil;
        end
        if title ~= "" and title ~= nil then
            -- does title param contain any templatestyles? If yes then set to blank.
            if mw.ustring.match(frame:preprocess(title), 'UNIQ%-%-templatestyles', 1) ~= nil then
                title = nil;
            end
        end
        if title ~= "" and title ~= nil then
            result = result .. "|" .. title;
        elseif alt ~= "" and alt ~= nil then
            result = result .. "|" .. alt;
        end
        result = result .. "]]";
        
        return result;
    end
end

return i;

최근 바뀜

더 보기