مواد ڏانھن هلو

ماڊيول:Unsubst

کليل ڄاڻ چيڪلي، وڪيپيڊيا مان


مينٽيننس سانچا، جهڙوڪ {{Citation needed}} يا {{Refimprove}}، ڪڏهن به substitute نه ڪيا وڃن. ان کان بچڻ جو هڪ طريقو اهو آهي ته سانچي کي اهڙي صورت ۾ substitute ڪيو وڃي جو اهو پنهنجي transcluded صورت ۾ تبديل ٿي وڃي. هي ماڊيول اهو طريقو لاڳو ڪري ٿو.

Infobox لاءِ Module:Unsubst-infobox استعمال ٿيڻ گهرجي، ۽ اهڙن ٻين سانچن لاءِ به جيڪي عام طور بلاڪ فارميٽ ۾ پيراميٽر ڏيکارين ٿا.

استعمال

[سنواريو]

ڪنهن سانچي کي self-substituting template بڻائڻ لاءِ، موجوده سانچي جي ڪوڊ کي هن ريت wrap ڪريو:

{{safesubst:<noinclude />#invoke: Unsubst||$B=

 [ ... موجوده سانچي جو ڪوڊ ... ]

}}

جيڪو وڪي ٽيڪسٽ substitute نه ٿيڻ جي حالت ۾ ڏيکارڻو آهي، اهو "$B" طور ڏنو وڃي. #invoke ڏانهن پاس ڪيل ٻيا سڀ پيراميٽر default قدر طور پيدا ٿيندڙ template invocation ۾ شامل ڪيا ويندا. جيڪڏهن انهن مان ڪنهن default پيراميٽر جي قيمت __DATE__ هجي، ته پيدا ٿيندڙ template invocation ۾ اها موجوده مهينو ۽ سال سان بدلجي ويندي.

ڪجهه سانچن ۾ <noinclude> هوندو آهي پر آخر ۾ </noinclude> نه هوندو. اهڙي حالت ۾، ختم ٿيندڙ }} کان اڳ گم ٿيل </noinclude> شامل ڪرڻ ضروري آهي.

اعليٰ استعمال

[سنواريو]
{{safesubst:<noinclude />#invoke: Unsubst||$params=[ parameters ]|$aliases=[ aliases ]|$flags=[ flags ]|$B=

 [ ... موجوده سانچي جو ڪوڊ ... ]

}}

Lua جي حدن سبب، جڏهن سانچو substitute ٿئي ٿو ته پيراميٽر عام طور بي ترتيب ترتيب ۾ اچن ٿا. |$params= استعمال ڪري پيراميٽر ترتيب سان لسٽ ڪري سگهجن ٿا (ڪاما سان جدا ٿيل). نمبر وارا پيراميٽر لسٽ جي شروعات ۾ هجڻ گهرجن. باقي پيراميٽر آخر ۾ شامل ٿيندا.

پيراميٽر aliases |$aliases= ۾ ڏنا وڃن ٿا (۽ انهن کي |$params= ۾ شامل نه ڪيو وڃي)، ۽ اهي پاڻمرادو بدلجي ويندا. هر alias ۽ ان جي متبادل کي هن شڪل ۾ لکڻ گهرجي: alias>replacement ۽ انهن کي ڪاما سان جدا ڪيو وڃي.

|$flags= سان ماڊيول جي ٻين خاصيتن کي تبديل ڪري سگهجي ٿو. صحيح flags هي آهن:

  • override – #invoke ۾ ڏنل پيراميٽر اصل template invocation تي ترجيح وٺندا
  • keep-whitespace – بغير نالي پيراميٽرن مان whitespace ختم نه ڪندو
  • remove-empty – خالي پيراميٽر ختم ڪندو

اهي پيراميٽر parser functions سان گڏ به استعمال ڪري سگهجن ٿا ته جيئن وڌيڪ پيچيده اختيار مهيا ڪري سگهجن.

|$template-name= پيراميٽر سان substitute ٿيل template جو نالو override ڪري سگهجي ٿو.

مثال

[سنواريو]

فرض ڪريو Template:Example ۾ هي ڪوڊ هجي:

{{safesubst:<noinclude />#invoke: Unsubst||foo=bar |date=__DATE__ |$B=

 [ ... Template code ... ]

}}
اصل نتيجو
{{subst:example}} {{Example|date=جُونِ 2026|foo=bar}}
{{subst:example|foo=X}} {{Example|date=جُونِ 2026|foo=X}}
{{subst:example|baz=X}} {{Example|baz=X|date=جُونِ 2026|foo=bar}}
{{subst:example|date=January 2001}} {{Example|date=January 2001|foo=bar}}



local checkType = require('libraryUtil').checkType

local p = {}

local BODY_PARAM = '$B'

local specialParams = {
	['$params'] = 'parameter list',
	['$aliases'] = 'parameter aliases',
	['$flags'] = 'flags',
	['$B'] = 'template content',
	['$template-name'] = 'template invocation name override',
}

function p.main(frame, body)
	-- If we are substing, this function returns a template invocation, and if
	-- not, it returns the template body. The template body can be specified in
	-- the body parameter, or in the template parameter defined in the
	-- BODY_PARAM variable. This function can be called from Lua or from
	-- #invoke.

	-- Return the template body if we aren't substing.
	if not mw.isSubsting() then
		if body ~= nil then
			return body
		elseif frame.args[BODY_PARAM] ~= nil then
			return frame.args[BODY_PARAM]
		else
			error(string.format(
				"no template content specified (use parameter '%s' from #invoke)",
				BODY_PARAM
			), 2)
		end
	end

	-- Sanity check for the frame object.
	if type(frame) ~= 'table'
		or type(frame.getParent) ~= 'function'
		or not frame:getParent()
	then
		error(
			"argument #1 to 'main' must be a frame object with a parent " ..
			"frame available",
			2
		)
	end

	-- Find the invocation name.
	local mTemplateInvocation = require('Module:Template invocation')
	local name

	if frame.args['$template-name'] and '' ~= frame.args['$template-name'] then
		name = frame.args['$template-name']										-- override whatever the template name is with this name
	else
		name = mTemplateInvocation.name(frame:getParent():getTitle())
	end

	-- Combine passed args with passed defaults
	local args = {}
	if string.find( ','..(frame.args['$flags'] or '')..',', ',%s*override%s*,' ) then
		for k, v in pairs( frame:getParent().args ) do
			args[k] = v
		end
		for k, v in pairs( frame.args ) do
			if not specialParams[k] then
				if v == '__DATE__' then
					v = mw.getContentLanguage():formatDate( 'F Y' )
				end
				args[k] = v
			end
		end
	else
		for k, v in pairs( frame.args ) do
			if not specialParams[k] then
				if v == '__DATE__' then
					v = mw.getContentLanguage():formatDate( 'F Y' )
				end
				args[k] = v
			end
		end
		for k, v in pairs( frame:getParent().args ) do
			args[k] = v
		end
	end

	-- Trim parameters, if not specified otherwise
	if not string.find( ','..(frame.args['$flags'] or '')..',', ',%s*keep%-whitespace%s*,' ) then
		for k, v in pairs( args ) do args[k] = mw.ustring.match(v, '^%s*(.*)%s*$') or '' end
	end

	-- Pull information from parameter aliases
	local aliases = {}
	if frame.args['$aliases'] then
		local list = mw.text.split( frame.args['$aliases'], '%s*,%s*' )
		for k, v in ipairs( list ) do
			local tmp = mw.text.split( v, '%s*>%s*' )
			aliases[tonumber(mw.ustring.match(tmp[1], '^[1-9][0-9]*$')) or tmp[1]] = ((tonumber(mw.ustring.match(tmp[2], '^[1-9][0-9]*$'))) or tmp[2])
		end
	end
	for k, v in pairs( aliases ) do
		if args[k] and ( not args[v] or args[v] == '' ) then
			args[v] = args[k]
		end
		args[k] = nil
	end

	-- Remove empty parameters, if specified
	if string.find( ','..(frame.args['$flags'] or '')..',', ',%s*remove%-empty%s*,' ) then
		local tmp = 0
		for k, v in ipairs( args ) do
			if v ~= '' or ( args[k+1] and args[k+1] ~= '' ) or ( args[k+2] and args[k+2] ~= '' ) then
				tmp = k
			else
				break
			end
		end
		for k, v in pairs( args ) do
			if v == '' then
				if not (type(k) == 'number' and k < tmp) then args[k] = nil end
			end
		end
	end

	-- Order parameters
	if frame.args['$params'] then
		local params, tmp = mw.text.split( frame.args['$params'], '%s*,%s*' ), {}
		for k, v in ipairs(params) do
			v = tonumber(mw.ustring.match(v, '^[1-9][0-9]*$')) or v
			if args[v] then tmp[v], args[v] = args[v], nil end
		end
		for k, v in pairs(args) do tmp[k], args[k] = args[k], nil end
		args = tmp
	end

	return mTemplateInvocation.invocation(name, args)
end

p[''] = p.main -- For backwards compatibility

return p