انتقل إلى المحتوى

الفرق بين المراجعتين لصفحة: «وحدة:Hatnote»

أُضيف ٧٥٥ بايت ،  ٣١ أغسطس ٢٠٢٤
ط
استرجع تعديلات Ali (نقاش) حتى آخر مراجعة لAdmin
لا ملخص تعديل
وسم: مسترجع
ط (استرجع تعديلات Ali (نقاش) حتى آخر مراجعة لAdmin)
وسم: استرجاع
 
سطر ١٩: سطر ١٩:
-- Helper functions
-- Helper functions
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local curNs = mw.title.getCurrentTitle().namespace
p.missingTargetCat =
--Default missing target category, exported for use in related modules
((curNs ==  0) or (curNs == 14)) and
'مقالات بقوالب ملاحظات تستهدف صفحة غير موجودة' or nil


local function getArgs(frame)
local function getArgs(frame)
سطر ٣٥: سطر ٢٩:
local function removeInitialColon(s)
local function removeInitialColon(s)
-- Removes the initial colon from a string, if present.
-- Removes the initial colon from a string, if present.
return mw.ustring.match(s, '^:?(.*)')
return s:match('^:?(.*)')
end
 
function p.defaultClasses(inline)
-- Provides the default hatnote classes as a space-separated string; useful
-- for hatnote-manipulation modules like [[Module:Hatnote group]].
return
(inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' ..
'navigation-not-searchable'
end
 
function p.disambiguate(page, disambiguator)
-- Formats a page title with a disambiguation parenthetical,
-- i.e. "Example" → "Example (disambiguation)".
checkType('disambiguate', 1, page, 'string')
checkType('disambiguate', 2, disambiguator, 'string', true)
disambiguator = disambiguator or 'disambiguation'
return mw.ustring.format('%s (%s)', page, disambiguator)
end
end


سطر ٤٨: سطر ٥٩:
link = removeInitialColon(link)
link = removeInitialColon(link)
end
end
local namespace = mw.ustring.match(link, '^(.-):')
local namespace = link:match('^(.-):')
if namespace then
if namespace then
local nsTable = mw.site.namespaces[namespace]
local nsTable = mw.site.namespaces[namespace]
سطر ٧٠: سطر ٨١:
local helpText
local helpText
if helpLink then
if helpLink then
helpText = ' ([[' .. helpLink .. '| مساعدة]])'
helpText = ' ([[' .. helpLink .. '|help]])'
else
else
helpText = ''
helpText = ''
سطر ٨٠: سطر ٩١:
and yesno(addTrackingCategory) ~= false -- Allow opting out
and yesno(addTrackingCategory) ~= false -- Allow opting out
then
then
category = 'قالب:رأس به خطأ'
category = 'Hatnote templates with errors'
category = mw.ustring.format(
category = mw.ustring.format(
'[[%s:%s]]',
'[[%s:%s]]',
سطر ٩٠: سطر ١٠١:
end
end
return mw.ustring.format(
return mw.ustring.format(
'<strong class="error">خطأ: %s%s.</strong>%s',
'<strong class="error">Error: %s%s.</strong>%s',
msg,
msg,
helpText,
helpText,
سطر ٩٧: سطر ١٠٨:
end
end


function p.disambiguate(page, disambiguator)
local curNs = mw.title.getCurrentTitle().namespace
-- Formats a page title with a disambiguation parenthetical,
p.missingTargetCat =
-- i.e. "Example" "Example (disambiguation)".
--Default missing target category, exported for use in related modules
checkType('disambiguate', 1, page, 'string')
((curNs ==  0) or (curNs == 14)) and
checkType('disambiguate', 2, disambiguator, 'string', true)
'Articles with hatnote templates targeting a nonexistent page' or nil
disambiguator = disambiguator or 'توضيح'
 
return mw.ustring.format('%s (%s)', page, disambiguator)
function p.quote(title)
--Wraps titles in quotation marks. If the title starts/ends with a quotation
--mark, kerns that side as with {{-'}}
local quotationMarks = {
["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['']=true, ["’"]=true
}
local quoteLeft, quoteRight = -- Test if start/end are quotation marks
quotationMarks[string.sub(title, 1, 1)],
quotationMarks[string.sub(title, -1, -1)]
if quoteLeft or quoteRight then
title = mw.html.create("span"):wikitext(title)
end
if quoteLeft  then title:css("padding-left", "0.15em") end
if quoteRight then title:css("padding-right", "0.15em") end
return '"' .. tostring(title) .. '"'
end
end


سطر ١١٧: سطر ١٤٢:
if not s then
if not s then
return p.makeWikitextError(
return p.makeWikitextError(
'لم يُحدد نص',
'no text specified',
'قالب:ملاحظة علوية#أخطاء',
'Template:Hatnote#Errors',
args.category or args['category']
args.category
)
)
end
end
return p._hatnote(s, {
return p._hatnote(s, {
extraclasses = args.extraclasses or args['extraclasses'],
extraclasses = args.extraclasses,
selfref = args.selfref or args['selfref']
selfref = args.selfref
})
})
end
end
سطر ١٤١: سطر ١٦٦:
hatnote
hatnote
:attr('role', 'note')
:attr('role', 'note')
:addClass(inline == 1 and 'hatnote-inline' or 'hatnote')
:addClass(p.defaultClasses(inline))
:addClass('navigation-not-searchable')
:addClass(extraclasses)
:addClass(extraclasses)
:addClass(options.selfref and 'selfref')
:addClass(options.selfref and 'selfref' or nil)
:wikitext(s)
:wikitext(s)
 
return mw.getCurrentFrame():extensionTag{
return mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' }
name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' }