وحدة:RawImage
المظهر
توثيق الوحدة [أنشئ] [محو الاختزان][استخدامات] [قوالب]
RawImage = {};
function RawImage.rawimage(frame)
inpage = mw.title.getCurrentTitle():inNamespace("Page")
pagename = frame.args["pagename"]
-- check if the pagename hasn't been passed
if pagename == nil then
return '<span style="color:red;">\'\'\'Error: invoke with {{raw image|' .. mw.title.getCurrentTitle().text .. '}}\'\'\'</span>'
end
if pagename == '' then
return '<span style="color:red;">\'\'\'Error: invoke with {{raw image|' .. mw.title.getCurrentTitle().text .. '}}\'\'\'</span>'
end
-- check if the pagename has been given with "Page:" in front. If so, strip it
if pagename:sub(1,5) == 'Page:' then
pagename = pagename:sub(6)
end
-- find the last / in the pagename
slash = string.reverse(pagename):find('/')
if slash ~= nil then
slash = #pagename - slash + 1
end
if slash == nil then
-- there is no slash, this page corresponds to a single-page image
if inpage then
category = 'صفحات مع صور خام'
else
category = 'نصوص مع صور خام'
end
return '[[ملف:' .. pagename .. '|frameless|center|360px]][[تصنيف:' .. category .. ']]'
else
-- this page title contains a slash, so compose the name of the hi-res file.
pagebase = pagename:sub(0,slash-1)
pagenum = pagename:sub(slash+1)
hiRes = 'File:' .. pagebase .. '-' .. pagenum .. '.png'
-- check if the hi-ref version exists
if mw.title.new(hiRes).exists then
-- hi-res version exists, let's link to it
if inpage then
category = 'صفحات مع صور خام (فحص hi-res متاح)'
else
category = 'نصوص مع صور خام'
end
return frame:expandTemplate{title='block center',args={'[[' .. hiRes .. '|frameless|center|360px]]' .. frame:expandTemplate{title='right', args={frame:expandTemplate{title='x-smaller block', args={'([[:' .. hiRes .. '|Improve this image]])'}}}}}} .. '[[تصنيف:' .. category .. ']]'
else
-- hi-res version doesn't exists, let's link to source page
if inpage then
category = 'صفحات مع صور خام'
else
category = 'نصوص مع صور خام'
end
return frame:expandTemplate{title='block center',args={'[[ملف:' .. pagebase .. '|page=' .. pagenum .. '|frameless|center|360px]]' .. frame:expandTemplate{title='right', args={frame:expandTemplate{title='x-smaller block', args={'(Upload an image to replace this placeholder.)'}}}}}} .. '[[تصنيف:' .. category .. ']]'
end
end
end
return RawImage