মডিউল:প্রবেশদ্বার: সংশোধিত সংস্করণের মধ্যে পার্থক্য

বিষয়বস্তু বিয়োগ হয়েছে বিষয়বস্তু যোগ হয়েছে
Aftab1995 ব্যবহারকারী মডিউল:Portal পাতাটিকে মডিউল:প্রবেশদ্বার শিরোনামে কোনো পুনর্নির্দেশনা ছাড়াই...
হালনাগাদ, যে বাগ ছিল তা ঠিক করা হয়েছে
১ নং লাইন:
--[==[ Thisএই moduleমডিউল is a Lua implementation of the oldপুরানো {{Portalপ্রবেশদ্বার}} template.টেমপ্লেটের একটি লুয়া প্রয়োগ। ৯ অক্টোবর ২০১৩ অনুসারে ১০১০টি পাতায় "প্রবেশদ্বার" ব্যবহৃত হয়েছে।
-- Please take care when updating it! It outputs two functions: p.portal, which generates a table of portals, and p.image, which
-- produces the image name for an individual portal.
১৯ নং লাইন:
-- [[মডিউল:প্রবেশদ্বার/চিত্র/ম]] - "ম" দিয়ে শুরু প্রবেশদ্বারের নাম।
-- [[মডিউল:প্রবেশদ্বার/চিত্র/য]] - "য" দিয়ে শুরু প্রবেশদ্বারের নাম।
-- [[মডিউল:প্রবেশদ্বার/চিত্র/র]] - "র" দিয়ে শুরু প্রবেশদ্বারের নাম।
-- [[মডিউল:প্রবেশদ্বার/চিত্র/স]] - "স" দিয়ে শুরু প্রবেশদ্বারের নাম।
-- [[মডিউল:প্রবেশদ্বার/চিত্র/হ]] - "হ" দিয়ে শুরু প্রবেশদ্বারের নাম।
-- [[মডিউল:প্রবেশদ্বার/চিত্র/অন্যান্য]] - অন্য কোনো বর্ণ দিয়ে শুরু প্রবেশদ্বারের নামগুলি। এটিতে সংখ্যা,
-- অ-লাতিন বর্ণমালা, বৈশিষ্ট্যসূচক চিহ্নসহ অক্ষর, এবং ইংরেজি বর্ণমালা অন্তর্ভুক্ত করা হয়েছে।
-- [[মডিউল:প্রবেশদ্বার/চিত্র/উপনাম]] - বিদ্যমান প্রবেশদ্বার নামগুলির উপনামের যোগ করার জন্য। বানানের তারতম্য এবং বৈশিষ্ট্যসূচক চিহ্ন,.. ইত্যাদির
-- জন্য এই মডিউল পাতাটি ব্যবহার করুন। প্রবেশদ্বারের নাম কোন অক্ষর দিয়ে শুরু তা ব্যাপার নয়।
-- বাগঃ [[মডিউল:প্রবেশদ্বার/চিত্র/র]], [[মডিউল:প্রবেশদ্বার/চিত্র/হ]], [[মডিউল:প্রবেশদ্বার/চিত্র/স]] বর্তমানে কাজ করে না।
-- এই প্রবেশদ্বারের নাম [[মডিউল:প্রবেশদ্বার/চিত্র/অন্যান্য]] -এ যাবে।
--
-- The images data pages are separated by the first letter to reduce server load when images are added, changed, or removed.
৩১ ⟶ ৩২ নং লাইন:
]==]
 
local p = {}
local htmlBuilder = require( 'Module:HtmlBuilder' )
 
local function matchImagePage(s)
-- Finds the appropriate image subpage given a lower-case
-- Finds the appropriate image subpage given a lower-case
-- portal name plus the first letter of that portal name.
-- portal name plus the first letter of that portal name.
local function matchImagePage( s )
if type( s ) ~= 'string' or #s < 1 then return end
local firstLetter = mw.ustring.sub( s, 1, 1 )
local imagePage
if mw.ustring.find( firstLetter, '^[অ-য়অআইঈউঊঋএঐওঔকখগঘঙচছজঝঞটঠডঢণতথদধনপফবভমযরলশষসহড়ঢ়য়]' ) then
imagePage = 'Module:প্রবেশদ্বার/চিত্র/' .. firstLetter
else
imagePage imagePage= 'Module:প্রবেশদ্বার/চিত্র/অন্যান্য'
end
local images = return mw.loadData( imagePage )[s]
local image = images[ s ]
if image then
return image
end
end
 
local function getAlias(s)
-- Gets the image name for a given string.
-- Gets an alias from the image alias data page.
local function getImageName( s )
local aliasData = mw.loadData('Module:প্রবেশদ্বার/চিত্র/উপনাম')
if type( s ) ~= 'string' or #s < 1 then
for portal, aliases in pairs(aliasData) do
return 'Portal-puzzle.svg'
for _, alias in ipairs(aliases) do
end
if alias == s then
s = mw.ustring.lower( s )
return portal
local image = matchImagePage( s )
end
if image then
end
return image
end
else
local aliases = mw.loadData( 'Module:প্রবেশদ্বার/চিত্র/উপনাম' )
local alias = aliases[ s ]
image = matchImagePage( alias )
if image then
return image
else
return 'Portal-puzzle.svg'
end
end
end
 
local function getImageName(s)
-- This function builds the portal box used by the {{portal}} template.
-- Gets the image name for a given string.
local function _portal( portals, args )
if type(s) ~= 'string' or #s < 1 then
local root = htmlBuilder.create( 'div' )
return 'Portal-puzzle.svg'
root
end
.addClass( 'noprint' )
s = mw.ustring.lower(s)
.addClass( args.left and 'tleft' or 'tright' )
return matchImagePage(s) or matchImagePage(getAlias(s)) or 'Portal-puzzle.svg'
.addClass( 'portal' )
end
.css( 'border', 'solid #aaa 1px' )
.css( 'margin', args.margin or ( args.left == 'yes' and '0.5em 1em 0.5em 0' ) or '0.5em 0 0.5em 1em')
.newline()
 
function p._portal(portals, args)
-- Start the table. This corresponds to the start of the wikitext table in the old [[Template:Portal]].
-- This function builds the portal box used by the {{portal}} template.
local tableroot = root.tag( 'table' )
local root = mw.html.create('div')
.css( 'background', '#f9f9f9' )
:addClass('noprint portal')
.css( 'font-size', '85%' )
:addClass(args.left and 'tleft' or 'tright')
.css( 'line-height', '110%' )
. :css( 'max-widthborder', '175pxsolid #aaa 1px' )
. :css( 'widthmargin', typeargs.margin or ( args.boxsize )left == 'stringyes' and ( args'0.boxsize5em 1em 0..5em 0'px) or '0.5em )0 0.5em 1em')
:newline()
-- If no portals have been specified, display an error and add the page to a tracking category.
if not portals[ 1 ] then
tableroot.wikitext( '<strong class="error">কোন প্রবেশদ্বার নির্দিষ্ট করা হয়নি: অনুগ্রহ করে অন্তত একটি প্রবেশদ্বার উল্লেখ করুন</strong>[[Category:প্যারামিটারবিহীন প্রবেশদ্বার টেমপ্লেট]]' )
end
 
-- Start the table. This corresponds to the start of the wikitext table in the old [[Template:Portal]].
-- Display the portals specified in the positional arguments.
local tableroot = root:tag('table')
for i, portal in ipairs( portals ) do
:css('background', '#f9f9f9')
local image = getImageName( portal )
:css('font-size', '85%')
:css('line-height', '110%')
-- Generate the html for the image and the portal name.
:css('max-width', '175px')
tableroot
:css('width', type(args.boxsize) == 'string' and (args.boxsize .. 'px') or nil)
.newline()
 
.tag( 'tr' )
-- If no portals have been specified, display an error and add the page to a tracking category.
.attr( 'valign', 'middle' )
if not portals[1] then
.tag( 'td' )
tableroot:wikitext('<strong class="error">কোন প্রবেশদ্বার নির্দিষ্ট করা হয়নি: অনুগ্রহ করে অন্তত একটি প্রবেশদ্বার উল্লেখ করুন</strong>[[Category:প্যারামিটারবিহীন প্রবেশদ্বার টেমপ্লেট]]')
.css( 'text-align', 'center' )
end
.wikitext( mw.ustring.format( '[[File:%s|32x28px|alt=প্রবেশদ্বার আইকন]]', image ) )
 
.done()
-- Display the portals specified in the positional arguments.
.tag( 'td' )
for _, portal in ipairs(portals) do
.css( 'padding', '0 0.2em' )
local image = getImageName(portal)
.css( 'vertical-align', 'middle' )
 
.css( 'font-style', 'italic' )
-- Generate the html for the image and the portal name.
.css( 'font-weight', 'bold' )
tableroot
.wikitext(mw.ustring.format( '[[Portal:%s|%s%sপ্রবেশদ্বার]]', portal, portal, args[ 'break' ] and '<br />' or ' ' ) )
:newline()
end
:tag('tr')
return tostring( root )
:css('vertical-align', 'middle')
:tag('td')
:css('text-align', 'center')
:wikitext(string.format('[[File:%s|32x28px|alt=প্রবেশদ্বার আইকন|class=noviewer]]', image))
:done()
:tag('td')
:css('padding', '0 0.2em')
:css('vertical-align', 'middle')
:css('font-style', 'italic')
:css('font-weight', 'bold')
:wikitext(string.format('[[প্রবেশদ্বার:%s|%s%sপ্রবেশদ্বার]]', portal, portal, args['break'] and '<br />' or ' '))
end
return tostring(root)
end
 
function p._image(portals)

-- Wrapper function to allow getImageName() to be accessed through #invoke.
local return function _imagegetImageName( portals [1])
return getImageName( portals[ 1 ] )
end
 
-- Returns an array containing all image subpages (minus aliases) as loaded by mw.loadData.
local function getAllImageTables()
-- Returns an array containing all image subpages (minus aliases) as loaded by mw.loadData.
local images = {}
local images = {}
local subpages = { 'অ', 'আ', 'ই', 'ঈ', 'উ', 'ঊ', 'ঋ', 'এ', 'ঐ', 'ও', 'ঔ', 'ক', 'খ', 'গ', 'ঘ', 'ঙ', 'চ', 'ছ', 'জ', 'ঝ', 'ঞ', 'ট', 'ঠ', 'ড', 'ঢ', 'ণ', 'ত', 'থ', 'দ', 'ধ', 'ন', 'প', 'ফ', 'ব', 'ভ', 'ম', 'য', 'র', 'ল', 'শ', 'ষ', 'স', 'হ', 'ড়', 'ঢ়', 'য়', 'অন্যান্য' }
for i, subpage in ipairs{'অ', 'আ', 'ই', 'ঈ', 'উ', 'ঊ', 'ঋ', 'এ', 'ঐ', 'ও', 'ঔ', 'ক', 'খ', 'গ', 'ঘ', 'ঙ', 'চ', 'ছ', 'জ', 'ঝ', 'ঞ', 'ট', 'ঠ', 'ড', 'ঢ', 'ণ', 'ত', 'থ', 'দ', 'ধ', 'ন', 'প', 'ফ', 'ব', 'ভ', 'ম', 'য', 'র', 'ল', 'শ', 'ষ', 'স', 'হ', 'ড়', 'ঢ়', 'য়', 'অন্যান্য'} do
for i, subpage in ipairs( subpages ) do
images[i] table.insert( images,= mw.loadData( 'Module:প্রবেশদ্বার/চিত্র/' .. subpage ) )
end
return images
end
 
function p._displayAll(portals, args)
-- This function displays all portals that have portal images. This function is for maintenance purposes and should not be used in
-- articles, for two reasons: 1) there are over 1500 portals with portal images, and 2) the module doesn't record how the portal
-- names are capitalized, so the portal links may be broken.
local lang = mw.language.getContentLanguage()
local function _displayAll( portals, args )
local count = 1
local lang = mw.language.getContentLanguage()
for _, imageTable in local images = ipairs(getAllImageTables()) do
for portal in pairs(imageTable) do
local count = 1
portals[count] = lang:ucfirst(portal)
for i, imageTable in ipairs( images ) do
count = count + 1
for portal in pairs( imageTable ) do
end
portals[ count ] = lang:ucfirst( portal )
end
count = count + 1
return p._portal(portals, args)
end
end
return _portal( portals, args )
end
 
function p._imageDupes()
-- This function searches the image subpages to find duplicate images. If duplicate images exist, it is not necessarily a bad thing,
-- This function searches the image subpages to find duplicate images. If duplicate images exist, it is not necessarily a bad thing,
-- as different portals might just happen to choose the same image. However, this function is helpful in identifying images that
-- as different portals might just happen to choose the same image. However, this function is helpful in identifying images that
-- should be moved to a portal alias for ease of maintenance.
-- should be moved to a portal alias for ease of maintenance.
local function _findImageDupes()
local exists, dupes = {}, {}
for _, imageTable in local images = ipairs(getAllImageTables()) do
for iportal, imageTableimage in ipairspairs( images imageTable) do
if not exists[image] then
for portal, image in pairs( imageTable ) do
if not exists[ image] ]= thenportal
else
exists[ image ] = portal
table.insert(dupes, string.format('"[[:File:%s|%s]]" চিত্রটি "%s" এবং "%s" উভয় প্রবেশদ্বারে ব্যবহার করা হয়েছে।', image, image, exists[image], portal))
else
end
table.insert( dupes, mw.ustring.format( '"[[:File:%s|%s]]" চিত্রটি "%s" এবং "%s" প্রবেশদ্বারের জন্য ব্যবহার করা হয়েছে।', image, image, exists[ image ], portal ) )
end
end
end
if #dupes < 1 endthen
return 'কোন সদৃশ চিত্র খুঁজে পাওয়া যায় নি।'
if #dupes < 1 then
else
return 'কোন সদৃশ চিত্র খুঁজে পাওয়া যায় নি।'
return 'নিম্নলিখিত সদৃশ চিত্রসমূহ পাওয়া গেছে:\n* ' .. table.concat(dupes, '\n* ')
else
end
return 'যেখানে নিম্নলিখিত সদৃশ চিত্র পাওয়া গেছে:\n* ' .. table.concat( dupes, '\n* ' )
end
end
 
local function processPortalArgs(args)
-- This function processes a table of arguments and returns two tables: an array of portal names for processing by ipairs, and a table of
-- This function processes a table of arguments and returns two tables: an array of portal names for processing by ipairs, and a table of
-- the named arguments that specify style options, etc. We need to use ipairs because we want to list all the portals in the order
-- the named arguments that specify style options, etc. We need to use ipairs because we want to list all the portals in the order
-- they were passed to the template, but we also want to be able to deal with positional arguments passed explicitly, for example
-- they were passed to the template, but we also want to be able to deal with positional arguments passed explicitly, for example
-- {{portal|2=Politics}}. The behaviour of ipairs is undefined if nil values are present, so we need to make sure they are all removed.
-- {{portal|2=Politics}}. The behaviour of ipairs is undefined if nil values are present, so we need to make sure they are all removed.
local function processPortalArgs( args )
args = type( args ) == 'table' and args or {}
local portals = {}
local namedArgs = {}
for k, v in pairs( args ) do
if type( k ) == 'number' and type( v ) == 'string' then -- Make sure we have no non-string portal names.
table.insert( portals, k )
elseif type( k ) ~= 'number' then
namedArgs[ k ] = v
end
end
table.sort( portals )
for i, v in ipairs( portals ) do
portals[ i ] = args[ v ]
end
return portals, namedArgs
end
 
local function makeWrapper(funcName)
-- Processes external arguments and sends them to the other functions.
return function (frame)
-- If called via #invoke, use the args passed into the invoking
-- template, or the args passed to #invoke if any exist. Otherwise
-- assume args are being passed directly in from the debug console
-- or from another Lua module.
local origArgs
if type(frame.getParent) == 'function' then
origArgs = frame:getParent().args
for k, v in pairs(frame.args) do
origArgs = frame.args
break
end
else
origArgs = frame
end
-- Trim whitespace and remove blank arguments.
local args = {}
for k, v in pairs(origArgs) do
if type(v) == 'string' then
v = mw.text.trim(v)
end
if v ~= '' then
args[k] = v
end
end
return p[funcName](processPortalArgs(args)) -- passes two tables to func: an array of portal names, and a table of named arguments.
end
end
 
for _, funcName in ipairs{'portal', 'image', 'imageDupes', 'displayAll'} do
-- Processes external arguments and sends them to the other functions.
local p[funcName] function= makeWrapper('_' func.. funcName)
return function ( frame )
-- If called via #invoke, use the args passed into the invoking
-- template, or the args passed to #invoke if any exist. Otherwise
-- assume args are being passed directly in from the debug console
-- or from another Lua module.
local origArgs
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
for k, v in pairs( frame.args ) do
origArgs = frame.args
break
end
else
origArgs = frame
end
-- Trim whitespace and remove blank arguments.
local args = {}
for k, v in pairs( origArgs ) do
if type( v ) == 'string' then
v = mw.text.trim( v )
end
if v ~= '' then
args[ k ] = v
end
end
return func( processPortalArgs( args ) ) -- passes two tables to func: an array of portal names, and a table of named arguments.
end
end
 
return {p
portal = makeWrapper( _portal ),
image = makeWrapper( _image ),
imageDupes = makeWrapper( _findImageDupes ),
displayAll = makeWrapper( _displayAll )
}