Type a search term to find related articles by LIMS subject matter experts gathered from the most trusted and dynamic collaboration tools in the laboratory informatics industry.
يمكن إنشاء صفحة توثيق الوحدة في وحدة:Ancient Olympiads/شرح
-- This module implements {{Ancient Olympiads}}. It converts a year in the Gregorian
-- calendar to the equivalent year of the ancient Greek era organized by Olympiads.
local data = mw.loadData( 'Module:Ancient Olympiads/data' )
local lang = mw.language.getContentLanguage()
local p = {}
function p._main( inputYear )
-- Convert the input to an integer if possible. Return "N/A" if the input could
-- not be converted, or if the converted input is too big or too small.
inputYear = tonumber( inputYear )
if not inputYear or inputYear > tonumber( lang:formatDate( 'Y' ) ) then
return "''N/A''"
end
-- Find the length of the data.
-- We need the length of the data so that we can loop through it backwards.
-- Normally we can get the length of tables with the # operator, but this
-- doesn't work with mw.loadData, as mw.loadData uses a metatable, and the
-- # operator doesn't work for tables that use metatables.
local dataLength = 0
for i, t in ipairs( data ) do
dataLength = i
end
-- Find the year in the data page and display the output.
for i = dataLength, 1, -1 do
local t = data[i]
if inputYear - 1 == t.year then
-- year of the Olympiad, test with = p._main( -495 )
-- The input year in the calendar is one after the expected (-775 for the year 776 BC). This is why all values need to be corrected by 1.
-- Year of Olympiad creates autolink to same page, therefore eliminated here
return string.format(
'ال[[اوليمبيا]] %s ([[%s|المنتصر]][[Winner of the Stadion race|)¹]]',
t.numberOl, t.winner
)
end
if inputYear > t.year then
-- Years 2-4 of the Olympiad, test with = p._main( -494 ) etc.
-- It would be nice, if the string could be as follows:
-- 'ال[[اوليمبيا]] [[%s]] ،[[%d ق م|سنة %d]]',
-- t.numberOl, inputYear * - 1 + 1, inputYear - t.year
-- but unfortunately it links to the very same page and won't be displayed as a link but in bold.
return string.format(
'ال[[اوليمبيا]] [[%s|%s]]، %d سنة',
t.yearBC, t.numberOl, inputYear - t.year
)
end
end
-- If input year is before 776 BC (-775), the year of the first Olympiad.
return string.format(
'%d قبل ال[[اوليمبيا]] [[776 ق م|الأولى]]',
inputYear * -1 - 775
)
end
function p.main( frame )
-- If you only want to run this module from another Lua module, you can get
-- rid of this function entirely. This function is only used if you want to
-- run this individual module from a template.
local args = require( 'Module:Arguments' ).getArgs( frame, {
parentOnly = true
} )
return p._main( args[ 1 ] )
end
return p