وحدة:Date: الفرق بين النسختين

[نسخة منشورة][نسخة منشورة]
تم حذف المحتوى تمت إضافة المحتوى
الرجوع عن التعديل 38552911 بواسطة وهراني (نقاش) هذه ليست ويكي الفرنسية
وسم: رجوع
ط استرجاع تعديلات Sakiv (نقاش) حتى آخر نسخة بواسطة وهراني
وسم: استرجاع
سطر 1:
local fun = {}
-- Date functions for use by other modules.
-- I18N and time zones are not supported.
 
local Outils = require 'Module:Outils'
local MINUS = '−' -- Unicode U+2212 MINUS SIGN
-- chargement de la base de donnée répertoriant certaines pages existant ou n'existant pas pour éviter les "ifexist".
local floor = math.floor
local dataLiens
local success, resultat = pcall ( mw.loadData, 'Module:Date/Data' )
if success then
dataLiens = resultat
else
-- protection au cas ou le sous module serait mal modifié
dataLiens = { [''] = { mois = { aucun = 1000, tous = { 1773, 2014 } }, } }
end
 
-- nettoie un paramètre non nommé (vire les espaces au début et à la fin)
local Date, DateDiff, diffmt -- forward declarations
-- retourne nil si le texte est vide ou n'est pas du texte. Attention c'est important pour les fonction qui l'utilise.
local uniq = { 'unique identifier' }
local trim = Outils.trim
 
-- Fonction destiné à mettre la première lettre du mois en majuscule du mois :
local function is_date(t)
-- utilisation de string car aucun mois ne commance par une lettre non ascii en français ou anglais.
-- The system used to make a date read-only means there is no unique
local function ucfirst( str )
-- metatable that is conveniently accessible to check.
return typestr:sub(t) ==1, 'table'1 and):upper() t._id. ==str:sub( uniq2 )
end
 
local modelePremier = '<abbr class="abbr" title="premier">1<sup>er</sup></abbr>'
local function is_diff(t)
return type(t) == 'table' and getmetatable(t) == diffmt
end
 
local function _list_join(list, sep)
return table.concat(list, sep)
end
 
-- liste des mois, écriture exacte et alias, en minuscule
local function collection()
local listeMois = {
-- Return a table to hold items.
{ num = 1, nJour = 31, abrev = 'يناير', nom = 'يناير', alias = {"يناير", "جانفي", 'jan.', 'janv.', 'jan', 'janv', 'january' } },
return {
{ num = 2, nJour = 29, abrev = 'فبراير', nom = 'فبراير', alias = { "فبراير", "فيفري",'fevrier', 'fev.', 'fev', 'fév.', 'fév', 'févr', 'févr.', 'february', 'feb', 'feb.' } },
n = 0,
{ num = 3, nJour = 31, abrev = 'مارس', nom = 'مارس', alias = { "مارس", 'mar.', 'mar', 'march' } },
add = function (self, item)
{ num = 4, nJour = 30, abrev = 'أبريل', nom = 'أبريل', alias = { "أبريل", "أفريل",'avr.', 'avr', 'apr', 'april'} },
self.n = self.n + 1
{ num = 5, nJour = 31, abrev = 'مايو', nom = 'مايو', alias = { "مايو", "ماي",'may' } },
self[self.n] = item
{ num = 6, nJour = 30, abrev = 'يونيو', nom = 'يونيو', alias = { "يونيو", "جوان",'jun', 'june' } },
end,
{ num = 7, nJour = 31, abrev = 'يوليو', nom = 'يوليو', alias = { "يوليو", "جويلية",'juil.', 'juil', 'juill.', 'juill', 'jul', 'july' } },
join = _list_join,
{ num = 8, nJour = 31, abrev = 'أغسطس', nom = 'أغسطس', alias = { "أغسطس", "أوت",'aoû', 'aug', 'august' } },
}
{ num = 9, nJour = 30, abrev = 'سبتمبر', nom = 'سبتمبر', alias = { "سبتمبر", 'sept.', 'sept', 'sep.', 'sep', 'september' } },
end
{ num = 10, nJour = 31, abrev = 'أكتوبر', nom = 'أكتوبر', alias = { "أكتوبر", 'oct.', 'oct', 'october' } },
{ num = 11, nJour = 30, abrev = 'نوفمبر', nom = 'نوفمبر', alias = { "نوفمبر", 'nov.', 'nov', 'november' } },
{ num = 12, nJour = 31, abrev = 'ديسمبر', nom = 'ديسمبر', alias = { "ديسمبر", 'decembre', 'déc.', 'dec.', 'dec', 'déc', 'december' } },
aout = { num = 8, nJour = 31, abrev = 'aout', nom = 'aout', alias = { "أغسطس", "أوت",'aou' } },
}
 
-- ajoute les noms, abreviations et alias en tant que clé de listeMois
local function strip_to_nil(text)
for i = 1, 12 do
-- If text is a string, return its trimmed content, or nil if empty.
local mois = listeMois[ i ]
-- Otherwise return text (convenient when Date fields are provided from
listeMois[ tostring( i ) ] = mois
-- another module which may pass a string, a number, or another type).
listeMois[ '0' .. i ] = mois
if type(text) == 'string' then
listeMois[ mois.nom ] = mois
text = text:match('(%S.-)%s*$')
listeMois[ mois.abrev ] = mois
for _, n in ipairs( mois.alias ) do
listeMois[ n ] = mois
end
return text
end
for _, n in ipairs( listeMois.aout.alias ) do
listeMois[ n ] = listeMois.aout
end
fun.listeMois = listeMois
 
local liste_saisons = {
local function is_leap_year(year, calname)
{ 'ربيع','printemps', 'spring', },
-- Return true if year is a leap year.
{ 'صيف','été', 'summer', },
if calname == 'Julian' then
{ 'خريف','automne', 'autumn', },
return year % 4 == 0
{ 'شتاء','hiver', 'winter', },
}
 
---
-- valide que la chaîne passée est un mois valide.
-- retourne le nom complet ou nil si non reconnu
-- si reconnu, retourne aussi le numéro du mois [1-12]
function fun.valideMois( mois )
local m = trim( mois )
if m then
m = mw.ustring.lower( m )
if listeMois[ m ] then
return listeMois[ m ].nom, listeMois[ m ].num
end
end
return (year % 4 == 0 and year % 100 ~= 0) or year % 400 == 0
end
 
---
local function days_in_month(year, month, calname)
-- valide que la chaîne passée est une saison valide.
-- Return number of days (1..31) in given month (1..12).
-- retourne le nom complet ou nil si non reconnu
if month == 2 and is_leap_year(year, calname) then
function fun.valideSaison( saison )
return 29
local s = trim( saison )
if s then
s = mw.ustring.lower( s )
for i = 1, 4 do
for _, n in ipairs( liste_saisons[i] ) do
if s == n then
return liste_saisons[i][1]
end
end
end
end
return ({ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 })[month]
end
 
---
local function h_m_s(time)
-- determinationMois trouve le numéro du mois et son nom,
-- Return hour, minute, second extracted from fraction of a day.
-- à partir de son nom, de son numéro ou d'une expression mathématique.
time = floor(time * 24 * 3600 + 0.5) -- number of seconds
-- Si le deuxième paramètre est vrai, les nombres supérieur à 12 ou non entiers sont acceptés.
local second = time % 60
function fun.determinationMois( mois, mod, boucle )
time = floor(time / 60)
local num, nom
return floor(time / 60), time % 60, second
if tonumber( mois ) then
end
num = math.floor( tonumber( mois ) )
 
if mod then
local function hms(date)
-- si le nombre du mois est calculé par une exression, le résultat peut être supérieur à 12, ou inférieur à 1
-- Return fraction of a day from date's time, where (0 <= fraction < 1)
num = math.fmod( num + 239, 12 ) + 1 -- +239 car fmod(-1) = -1 et non 11
-- if the values are valid, but could be anything if outside range.
elseif num < 1 or num > 12 then
return (date.hour + (date.minute + date.second / 60) / 60) / 24
num = nil
end
end
 
elseif trim( mois ) then
local function julian_date(date)
nom, num = fun.valideMois( mois )
-- Return jd, jdz from a Julian or Gregorian calendar date where
if nom == nil and boucle == nil then
-- jd = Julian date and its fractional part is zero at noon
-- essai de détermination d'un nombre avec le parser #expr de Mediawiki.
-- jdz = same, but assume time is 00:00:00 if no time given
-- le paramètre boucle évite de tourner en boucle.
-- http://www.tondering.dk/claus/cal/julperiod.php#formula
nom, num = fun.determinationMois( mw.getCurrentFrame():callParserFunction( '#expr', mois ), true, true )
-- Testing shows this works for all dates from year -9999 to 9999!
end
-- JDN 0 is the 24-hour period starting at noon UTC on Monday
-- 1 January 4713 BC = (-4712, 1, 1) Julian calendar
-- 24 November 4714 BC = (-4713, 11, 24) Gregorian calendar
local offset
local a = floor((14 - date.month)/12)
local y = date.year + 4800 - a
if date.calendar == 'Julian' then
offset = floor(y/4) - 32083
else
offset = floor(y/4) - floor(y/100) + floor(y/400) - 32045
end
if num and not nom then
local m = date.month + 12*a - 3
nom = listeMois[ num ].nom
local jd = date.day + floor((153*m + 2)/5) + 365*y + offset
if date.hastime then
jd = jd + hms(date) - 0.5
return jd, jd
end
return jdnom, jd - 0.5num
end
 
 
local function set_date_from_jd(date)
-- fonction interne à modeleDate, pour déterminer si on peut se passer de faire un ifexit
-- Set the fields of table date from its Julian date field.
local function existDate( dataQualificatif, annee, mois )
-- Return true if date is valid.
local data
-- http://www.tondering.dk/claus/cal/julperiod.php#formula
if mois then
-- This handles the proleptic Julian and Gregorian calendars.
data = dataQualificatif.mois
-- Negative Julian dates are not defined but they work.
local calname = date.calendar
local low, high -- min/max limits for date ranges −9999-01-01 to 9999-12-31
if calname == 'Gregorian' then
low, high = -1930999.5, 5373484.49999
elseif calname == 'Julian' then
low, high = -1931076.5, 5373557.49999
else
data = dataQualificatif.annee
return
end
if type( data ) ~= 'table' then
local jd = date.jd
-- si data n'existe pas c'est que l'on considère qu'il n'y a pas de lien.
if not (type(jd) == 'number' and low <= jd and jd <= high) then
return
end
-- le qualificatif est remplacer par celui de la base de donnée, ce qui permet des alias.
local jdn = floor(jd)
local lien = annee
if date.hastime then
if dataQualificatif.qualificatif then
local time = jd - jdn -- 0 <= time < 1
lien = lien .. ' ' .. dataQualificatif.qualificatif
if time >= 0.5 then -- if at or after midnight of next day
jdn = jdn + 1
time = time - 0.5
else
time = time + 0.5
end
date.hour, date.minute, date.second = h_m_s(time)
else
date.second = 0
date.minute = 0
date.hour = 0
end
local b,seul c= annee
if calname == 'Julian'mois then
lien = mois .. ' ' .. lien
b = 0
seul = ucfirst( mois ) .. ' ' .. annee
c = jdn + 32082
else -- Gregorian
local a = jdn + 32044
b = floor((4*a + 3)/146097)
c = a - floor(146097*b/4)
end
local daucun = floortonumber((4*c +data.aucun 3)/1461)
if aucun and annee <= aucun then
local e = c - floor(1461*d/4)
-- si la l'année est dans la partie 'aucun' on teste s'il y a malgré tout un lien isolé
local m = floor((5*e + 2)/153)
if type( data.seul ) == 'table' then
date.day = e - floor((153*m + 2)/5) + 1
for i, v in ipairs( data.seul ) do
date.month = m + 3 - 12*floor(m/10)
if seul == v or seul == tonumber( v ) then
date.year = 100*b + d - 4800 + floor(m/10)
return truelien
end
 
local function fix_numbers(numbers, y, m, d, H, M, S, partial, hastime, calendar)
-- Put the result of normalizing the given values in table numbers.
-- The result will have valid m, d values if y is valid; caller checks y.
-- The logic of PHP mktime is followed where m or d can be zero to mean
-- the previous unit, and -1 is the one before that, etc.
-- Positive values carry forward.
local date
if not (1 <= m and m <= 12) then
date = Date(y, 1, 1)
if not date then return end
date = date + ((m - 1) .. 'm')
y, m = date.year, date.month
end
local days_hms
if not partial then
if hastime and H and M and S then
if not (0 <= H and H <= 23 and
0 <= M and M <= 59 and
0 <= S and S <= 59) then
days_hms = hms({ hour = H, minute = M, second = S })
end
end
-- partie aucun et pas de lien => nil
if days_hms or not (1 <= d and d <= days_in_month(y, m, calendar)) then
return nil
date = date or Date(y, m, 1)
elseif type( data.tous ) == 'table' then
if not date then return end
local tous1, tous2 = tonumber( data.tous[1] ), tonumber( data.tous[2] )
date = date + (d - 1 + (days_hms or 0))
if tous1 and tous2 and annee >= tous1 and annee <= tous2 then
y, m, d = date.year, date.month, date.day
-- l'année est dans la partie 'tous' donc on retourne le lien
if days_hms then
return lien
H, M, S = date.hour, date.minute, date.second
end
end
end
-- l'annee n'est ni dans la partie aucun, ni dans la partie tous donc il faut tester si la page existe.
numbers.year = y
local cibleLien = mw.title.new( lien )
numbers.month = m
if cibleLien and cibleLien.exists then
numbers.day = d
return lien
if days_hms then
-- Don't set H unless it was valid because a valid H will set hastime.
numbers.hour = H
numbers.minute = M
numbers.second = S
end
end
 
---
local function set_date_from_numbers(date, numbers, options)
-- Supprime le jour de la semaine, et "le" avant une date
-- Set the fields of table date from numeric values.
function fun.nettoyageJour( jour )
-- Return true if date is valid.
if type(numbers jour ) ~== 'tablestring' then
local nomJour = { '[Ll]undi', '[Mm]ardi', '[Mm]ercredi', '[Jj]eudi', '[Vv]endredi',
return
'[Ss]amedi', '[Dd]imanche', '^ *[Ll]e' }
end
local premier = { '<abbr class="abbr" title="[Pp]remier" ?>1<sup>er</sup></abbr>', '1<sup>er</sup>', '1er' }
local y = numbers.year or date.year
for i, v in ipairs( nomJour ) do
local m = numbers.month or date.month
jour = jour:gsub( v, '' )
local d = numbers.day or date.day
local H = numbers.hour
local M = numbers.minute or date.minute or 0
local S = numbers.second or date.second or 0
local need_fix
if y and m and d then
date.partial = nil
if not (-9999 <= y and y <= 9999 and
1 <= m and m <= 12 and
1 <= d and d <= days_in_month(y, m, date.calendar)) then
if not date.want_fix then
return
end
need_fix = true
end
for i, v in ipairs( premier ) do
elseif y and date.partial then
jour = jour:gsub( v, '1' )
if d or not (-9999 <= y and y <= 9999) then
return
end
jour = trim( jour )
if m and not (1 <= m and m <= 12) then
if not date.want_fix then
return
end
need_fix = true
end
else
return
end
return jour
if date.partial then
end
H = nil -- ignore any time
 
M = nil
---
S = nil
-- Sépare une chaine date en un table contenant les champs jour, mois et annee.
else
-- la date doit contenir le mois.
if H then
function fun.separationJourMoisAnnee( date )
-- It is not possible to set M or S without also setting H.
date.hastime = truetrim( date )
if date then
else
local function erreur( periode, valeur )
H = 0
return false, '<span class="error">' .. periode .. ' invalide (' .. valeur .. ')</span>'
end
local jour, mois, annee, masquerMois, masquerAnnee, separateur
if not (0 <= H and H <= 23 and
-- variable pour construire les regex
0 <= M and M <= 59 and
0local j <= S'([0-3]?%d)' and S <= 59) then -- jour
local m = '([01]?%d)' -- mois numérique
if date.want_fix then
local mmm = '([^%s%p%d]+[.]?)' -- mois en toute lettre
need_fix = true
local aj = '(%-?%d+)' -- année ou jour
local s = '[ ./-]+' -- séparateur simple
local sep = '([ ./-]+)' -- séparateur avec capture, pour le détecter deux fois
local moins = '(%-?)' -- signe moins pour signifier qu'il ne faut pas afficher cette donnée
local regexb = {
jmmm = '^'..j..s..mmm..moins..'$',
mmmjva = '^'..mmm..s..j..', ?'..aj..'$',
}
date = fun.nettoyageJour( date )
-- suppression catégorie, liens, balises
date = mw.ustring.gsub( date, '%[%[[Cc]at[ée]gor[yi]e?:.-%]%]', '' )
date = date :gsub( '%b<>', '' )
:gsub( '%[%[([^%[%]|]*)|?([^%[%]]*)%]%]', function ( l, t ) return trim( t ) or l end )
-- suppression des espaces insécables
-- nbsp
:gsub( '\194\160', ' ' )
:gsub( '&nbsp;', ' ' )
:gsub( '&#160;', ' ' )
-- narrow nbsp
:gsub( '\226\128\175', ' ' )
:gsub( '&#8239;', ' ' )
-- thin space
:gsub( '\226\128\137', ' ' )
:gsub( '&thinsp;', ' ' )
:gsub( '&#8201;', ' ' )
-- simple space
:gsub( '&#32;', ' ' )
-- plusieurs espaces
:gsub( ' +', ' ' )
-- réduction av. J-C pour simplifier un peu les regex :
:gsub( '(%d+) ?[Aa][Vv]%.? ?[Jj][ .-]*[Cc]%.?', '-%1' )
-- supression de l'heure dans les date ISO
:gsub( '^+?([%d-]*%d%d%-%d%d)T%d%d[%d:,.+-]*Z?$' , '%1')
-- test année seule
if date:match( '^'..aj..'$' ) then
annee = date:match( '^'..aj..'$' )
elseif date:match( '^'..aj..s..aj..moins..'$' ) then
-- jj/mm, mm/aaaa ou aaaa/mm
local a, separateur, b, sb = date:match( '^'..aj..sep..aj..moins..'$' )
a, b = tonumber( a ), tonumber( b )
if separateur:match( '^.+%-$' ) then
-- probablement mm/-aaaa, année av.JC
b = 0 - b
end
if a > 12 and ( b < 1 or b > 31 ) or
b > 12 and ( a < 1 or a > 31 ) then
return erreur( 'Date', date )
elseif b < 1 or b > 31 then
mois, annee, masquerAnnee = a, b, sb
elseif a < 1 or a > 31 then
annee, mois = a, b
elseif b > 12 then
return erreur( 'Mois', b )
else
jour, mois, masquerMois = a, b, sb
return
end
elseif date:match( '^'..aj..sep..m..moins..'%2'..aj..moins..'$' ) then
end
-- jj/mm/aaaa ou aaaa/mm/jj
end
jour, separateur, mois, masquerMois, annee, masquerAnnee = date:match( '^'..aj..sep..m..moins..'%2'..aj..moins..'$' )
date.want_fix = nil
if separateur == '-' and masquerMois == '-' and masquerAnnee == '' and tonumber( annee ) > 0 then
if need_fix then
-- date au format jj-mm--aaaa type 17-06--44 pour 17 juin 44 av. JC
fix_numbers(numbers, y, m, d, H, M, S, date.partial, date.hastime, date.calendar)
masquerMois = nil
return set_date_from_numbers(date, numbers, options)
annee = 0 - annee
end
end
date.year = y -- -9999 to 9999 ('n BC' → year = 1 - n)
elseif date:match( '^'..j..sep..mmm..moins..'%2'..aj..moins..'$' ) then
date.month = m -- 1 to 12 (may be nil if partial)
-- jj mmm aaaa
date.day = d -- 1 to 31 (* = nil if partial)
jour, separateur, mois, masquerMois, annee, masquerAnnee = date:match( '^'..j..sep..mmm..moins..'%2'..aj..moins..'$' )
date.hour = H -- 0 to 59 (*)
elseif date:match( '^'..mmm..s..aj..moins..'$' ) then
date.minute = M -- 0 to 59 (*)
-- mmm aaaa
date.second = S -- 0 to 59 (*)
mois, separateur, annee, masquerAnnee = date:match( '^'..mmm..sep..aj..moins..'$' )
if type(options) == 'table' then
if separateur:match( '^.+%-$' ) then
for _, k in ipairs({ 'am', 'era', 'format' }) do
annee = '-' .. annee
if options[k] then
date.options[k] = options[k]
end
elseif date:match( '^'..j..s..mmm..moins..'$' ) then
-- jj mmmm
jour, mois, masquerMois = date:match( '^'..j..s..mmm..moins..'$' )
elseif date:match( '^'..mmm..s..j..', ?'..aj..'$') then
-- mmm jj, aaaa (format anglo-saxon)
mois, jour, annee = date:match( '^'..mmm..s..j..', ?'..aj..'$')
elseif date:match( '^'..mmm..'$' ) then
mois = date
else
return erreur( 'Date', date )
end
local jn, an = tonumber( jour ), tonumber( annee )
if jn and an and ( jn > 31 or jn < 0 or #jour >= 3 ) and an <= 31 then
-- cas notamment des date ISO 2015-06-17, -0044-06-17 et -0002-06-17
-- inversion du jour et de l'année
local temp = annee
annee = jour
jour = temp
end
return fun.validationJourMoisAnnee{
jour, mois, annee,
masquerAnnee = trim( masquerAnnee ) and true or nil,
masquerMois = ( trim( masquerAnnee ) or not annee ) and trim( masquerMois ) and true or nil,
-- or nil sert juste à éviter de trainer une valeur false dans tous les tests unitaires.
}
else
return true, {}
end
return true
end
 
 
local function make_option_table(options1, options2)
---
-- If options1 is a string, return a table with its settings, or
-- validationJourMoisAnnee vérifie les paramètres correspondent à une date valide.
-- if it is a table, use its settings.
-- la date peut être dans les paramètre 1 à 3, ou dans des paramètres jour, mois et annee.
-- Missing options are set from table options2 or defaults.
-- La fonction retourne true suivit d'une table avec la date en paramètres nommé (sans accent sur année)
-- If a default is used, a flag is set so caller knows the value was not intentionally set.
-- ou false suivit d'un message d'erreur.
-- Valid option settings are:
function fun.validationJourMoisAnnee( frame )
-- am: 'am', 'a.m.', 'AM', 'A.M.'
local args = Outils.extractArgs( frame )
-- 'pm', 'p.m.', 'PM', 'P.M.' (each has same meaning as corresponding item above)
local jour, mois, numMois, annee
-- era: 'BCMINUS', 'BCNEGATIVE', 'BC', 'B.C.', 'BCE', 'B.C.E.', 'AD', 'A.D.', 'CE', 'C.E.'
local bjour = args[1] or args['jour'] or ''
-- Option am = 'am' does not mean the hour is AM; it means 'am' or 'pm' is used, depending on the hour,
local bmois = tostring( args[2] or args['mois'] or '' )
-- and am = 'pm' has the same meaning.
local bannee = args[3] or args['annee'] or args['année'] or ''
-- Similarly, era = 'BC' means 'BC' is used if year <= 0.
-- BCMINUS displays a MINUS if year < 0 and the display format does not include %{era}.
local function erreur( periode, valeur )
-- BCNEGATIVE is similar but displays a hyphen.
return false, '<span class="error">' .. periode .. ' invalide (' .. valeur .. ')</span>'
local result = { bydefault = {} }
if type(options1) == 'table' then
result.am = options1.am
result.era = options1.era
elseif type(options1) == 'string' then
-- Example: 'am:AM era:BC' or 'am=AM era=BC'.
for item in options1:gmatch('%S+') do
local lhs, rhs = item:match('^(%w+)[:=](.+)$')
if lhs then
result[lhs] = rhs
end
end
end
options2 = type(options2) == 'table' and options2 or {}
-- on traite l'année
local defaults = { am = 'am', era = 'BC' }
if Outils.notEmpty( bannee ) then
for k, v in pairs(defaults) do
annee = tonumber( bannee )
if not result[k] then
if annee == nil and type( bannee ) == 'string' then
if options2[k] then
-- test si l'année contient av. J.-C.
result[k] = options2[k]
annee = string.match( string.upper( bannee ), '^(%d+) ?[Aa][Vv]%.? ?[Jj][ .-]*[Cc]%.?' )
annee = tonumber( annee )
if annee then
annee = 0 - annee
else
return erreur( 'Année', bannee )
result[k] = v
result.bydefault[k] = true
end
elseif annee == 0 then
return erreur( 'Année', 0 )
end
else
annee = nil
end
return result
-- on traite le mois
end
if Outils.notEmpty( bmois ) then
 
mois, numMois = fun.determinationMois( bmois )
local ampm_options = {
if mois == nil then
-- lhs = input text accepted as an am/pm option
mois = fun.valideSaison( bmois )
-- rhs = code used internally
if mois == nil then
['am'] = 'am',
return erreur( 'Mois', bmois )
['AM'] = 'AM',
['a.m.'] = 'a.m.',
['A.M.'] = 'A.M.',
['pm'] = 'am', -- same as am
['PM'] = 'AM',
['p.m.'] = 'a.m.',
['P.M.'] = 'A.M.',
}
 
local era_text = {
-- Text for displaying an era with a positive year (after adjusting
-- by replacing year with 1 - year if date.year <= 0).
-- options.era = { year<=0 , year>0 }
['BCMINUS'] = { 'BC' , '' , isbc = true, sign = MINUS },
['BCNEGATIVE'] = { 'BC' , '' , isbc = true, sign = '-' },
['BC'] = { 'BC' , '' , isbc = true },
['B.C.'] = { 'B.C.' , '' , isbc = true },
['BCE'] = { 'BCE' , '' , isbc = true },
['B.C.E.'] = { 'B.C.E.', '' , isbc = true },
['AD'] = { 'BC' , 'AD' },
['A.D.'] = { 'B.C.' , 'A.D.' },
['CE'] = { 'BCE' , 'CE' },
['C.E.'] = { 'B.C.E.', 'C.E.' },
}
 
local function get_era_for_year(era, year)
return (era_text[era] or era_text['BC'])[year > 0 and 2 or 1] or ''
end
 
local function strftime(date, format, options)
-- Return date formatted as a string using codes similar to those
-- in the C strftime library function.
local sformat = string.format
local shortcuts = {
['%c'] = '%-I:%M %p %-d %B %-Y %{era}', -- date and time: 2:30 pm 1 April 2016
['%x'] = '%-d %B %-Y %{era}', -- date: 1 April 2016
['%X'] = '%-I:%M %p', -- time: 2:30 pm
}
if shortcuts[format] then
format = shortcuts[format]
end
local codes = {
a = { field = 'dayabbr' },
A = { field = 'dayname' },
b = { field = 'monthabbr' },
B = { field = 'monthname' },
u = { fmt = '%d' , field = 'dowiso' },
w = { fmt = '%d' , field = 'dow' },
d = { fmt = '%02d', fmt2 = '%d', field = 'day' },
m = { fmt = '%02d', fmt2 = '%d', field = 'month' },
Y = { fmt = '%04d', fmt2 = '%d', field = 'year' },
H = { fmt = '%02d', fmt2 = '%d', field = 'hour' },
M = { fmt = '%02d', fmt2 = '%d', field = 'minute' },
S = { fmt = '%02d', fmt2 = '%d', field = 'second' },
j = { fmt = '%03d', fmt2 = '%d', field = 'dayofyear' },
I = { fmt = '%02d', fmt2 = '%d', field = 'hour', special = 'hour12' },
p = { field = 'hour', special = 'am' },
}
options = make_option_table(options, date.options)
local amopt = options.am
local eraopt = options.era
local function replace_code(spaces, modifier, id)
local code = codes[id]
if code then
local fmt = code.fmt
if modifier == '-' and code.fmt2 then
fmt = code.fmt2
end
else
local value = date[code.field]
-- on traite le jour si présent
if not value then
if Outils.notEmpty( bjour ) then
return nil -- an undefined field in a partial date
jour = tonumber( bjour )
end
if jour == nil then
local special = code.special
jour = tonumber( fun.nettoyageJour( bjour ) )
if special then
if special == 'hour12' then
value = value % 12
value = value == 0 and 12 or value
elseif special == 'am' then
local ap = ({
['a.m.'] = { 'a.m.', 'p.m.' },
['AM'] = { 'AM', 'PM' },
['A.M.'] = { 'A.M.', 'P.M.' },
})[ampm_options[amopt]] or { 'am', 'pm' }
return (spaces == '' and '' or '&nbsp;') .. (value < 12 and ap[1] or ap[2])
end
if jour == nil then
return erreur( 'Jour', bjour )
end
-- on valide que le jour est correct
if jour < 1 or jour > 31 then
return erreur( 'Jour', bjour )
elseif jour > listeMois[numMois].nJour then
return erreur( 'Jour', bjour .. ' ' .. mois )
elseif jour == 29 and numMois == 2 and annee and ( math.fmod( annee, 4 ) ~= 0 ) then
-- l'année bisextile sur les siècles est toujours acceptée pour être compatible avec les dates juliennes.
return erreur( 'Jour', '29 février ' .. annee )
end
else
-- S'il n'y a pas de jour on regarde si la première lettre du mois est en majuscule
if bmois:match( '^%u' ) then
-- oui, on passe la première lettre en majuscule
mois = ucfirst( mois )
end
-- s'il n'y a pas d'année non plus on retourne le mois simple
end
end
if code.field == 'year' then
else
local sign = (era_text[eraopt] or {}).sign
-- on teste le jour si présent
if not sign or format:find('%{era}', 1, true) then
if Outils.notEmpty( bjour ) then
sign = ''
if value <= 0annee then
return erreur( 'Mois', 'absent' )
value = 1 - value
else
bjour = fun.nettoyageJour( bjour )
jour = tonumber( bjour )
if jour then
if jour > 31 or jour < 1 then
annee = jour
jour = nil
else
return erreur( 'Date', 'jour seul : ' .. bjour )
end
else
ifreturn valueerreur( >='Jour', 0bjour then)
sign = ''
else
value = -value
end
end
return spaces .. sign .. sformat(fmt, value)
end
end
return spaces .. (fmt and sformat(fmt, value) or value)
end
end
local function replace_property(spaces, id)
-- vérification de l'absence d'un décalage
if id == 'era' then
if annee and annee < 13 and annee > 0 and not jour and ( tonumber( bmois ) or (not mois and tonumber( args[4] ) ) ) then
-- Special case so can use local era option.
return false, '<span class="error">année improbable (' .. annee .. ')</span>'
local result = get_era_for_year(eraopt, date.year)
if result == '' then
return ''
end
return (spaces == '' and '' or '&nbsp;') .. result
end
local result = date[id]
if type(result) == 'string' then
return spaces .. result
end
if type(result) == 'number' then
return spaces .. tostring(result)
end
if type(result) == 'boolean' then
return spaces .. (result and '1' or '0')
end
-- This occurs if id is an undefined field in a partial date, or is the name of a function.
return nil
end
local PERCENT = '\127PERCENT\127'
local resultat = {
return (format
jour = jour,
:gsub('%%%%', PERCENT)
mois = mois,
:gsub('(%s*)%%{(%w+)}', replace_property)
numMois = numMois,
:gsub('(%s*)%%(%-?)(%a)', replace_code)
annee = annee,
:gsub(PERCENT, '%%')
masquerAnnee = args.masquerAnnee,
)
masquerMois = args.masquerMois,
}
return true, resultat
end
 
 
local function _date_text(date, fmt, options)
---
-- Return a formatted string representing the given date.
-- émule le modèle {{m|Date}}.
if not is_date(date) then
-- Paramètres :
error('date:text: need a date (use "date:text()" with a colon)', 2)
-- 1 : jour (numéro ou "1er") ou la date complète
end
-- 2 : mois (en toutes lettres) ou spécialité de l'année
if type(fmt) == 'string' and fmt:match('%S') then
-- 3 : année (nombre)
if fmt:find('%', 1, true) then
-- 4 : spécialité de l'année
return strftime(date, fmt, options)
-- julien : date dans le calendrier julien
-- compact : affiche le mois sous forme d'abréviation
-- avJC : non pour désactiver l'affichage de « av. J.-C. » pour les date négatives
-- âge : ajout la durée depuis cette date
-- nolinks : ne met pas de lien sur la date
-- onerror : en cas d'erreur, valeur à retourner à la place du message d'erreur ; la valeur spéciale "input" fait retourner le 1er argument inchangé
-- naissance : ajoute la class "bday"
-- mort : ajoute la class "dday"
function fun.modeleDate( frame )
local args = Outils.extractArgs( frame )
local cat, resultat = ''
-- analyse des paramètres non nommés (ou paramètres de la date jour, mois, annee)
local test, params
local arg1, arg2, arg3 = fun.nettoyageJour( args[1] ), trim( args[2] ), trim( args[3] )
if type( arg1 ) == 'string' and arg3 == nil and ( arg1:match( '[^ ./-][ ./-]+[^ ./-]' ) or arg2 == nil or dataLiens[arg2] or mw.ustring.match( arg2, '%a %a' ) ) then
-- la date est dans le premier paramètre
test, params = fun.separationJourMoisAnnee( arg1 )
if test then
params.qualificatif = arg2
end
elseif date.partial then
fmt = date.month and 'my' or 'y'
else
local function masquerParam( p )
fmt = 'dmy'
-- sépare le signe moins final éventuel signifiant que le paramètre ne doit pas être affiché.
if date.hastime then
fmt =if type(date.second >p 0) and~= 'hms string' or 'hm ') .. fmtthen
return p, nil
end
local value, mask = p:match( '^%s*(.-)(%-?)%s*$' )
return value, ( mask == '-' or nil )
end
local cleanArgs = { arg1 or args.jour }
cleanArgs[2], cleanArgs.masquerMois = masquerParam( args[2] or args.mois )
cleanArgs[3], cleanArgs.masquerAnnee = masquerParam( args[3] or args.annee or args['annee'] )
test, params = fun.validationJourMoisAnnee( cleanArgs )
if test then
params.qualificatif = trim( args[4] )
end
end
local function bad_format()
-- analyse des paramètres nommés
-- For consistency with other format processing, return given format
if test then
-- (or cleaned format if original was not a string) if invalid.
local Yesno = require 'Module:Yesno'
return mw.text.nowiki(fmt)
params.qualificatif = params.qualificatif or args.qualificatif
end
-- julien peut avoir trois valeurs: inactif, format standard (true), format court
if date.partial then
params.julien = Yesno( args.julien, 'court', false )
-- Ignore days in standard formats like 'ymd'.
params.avJC = Yesno( args.avJC )
if fmt == 'ym' or fmt == 'ymd' then
params.republicain = Yesno( args['républicain'], 'liens', false)
fmt = date.month and '%Y-%m %{era}' or '%Y %{era}'
elseif fmt == 'my' or fmt == 'dmy' or fmt == 'mdy' then
local listeParam = {
fmt = date.month and '%B %-Y %{era}' or '%-Y %{era}'
elseif fmt age == 'yâge' then,
['âge'] = 'âge',
fmt = date.month and '%-Y %{era}' or '%-Y %{era}'
naissance = 'naissance',
else
mort = 'mort',
return bad_format()
['décès'] = 'mort',
apJC = 'apJC',
nolinks = 'nolinks',
compact = 'compact',
compacte = 'compact',
}
for n, v in pairs( listeParam ) do
params[v] = params[v] or Yesno( args[n], true, false ) or nil
end
return strftime(date, fmt, options)
-- sortie pour les tests unitaire, ou pour débuger
end
if args.debug then
local function hm_fmt()
return params
local plain = make_option_table(options, date.options).bydefault.am
end
return plain and '%H:%M' or '%-I:%M %p'
end
resultat = fun._modeleDate( params )
local need_time = date.hastime
 
local t = collection()
elseif args.onerror then
for item in fmt:gmatch('%S+') do
if args.onerror == 'input' then
local f
return args[1]
if item == 'hm' then
f = hm_fmt()
need_time = false
elseif item == 'hms' then
f = '%H:%M:%S'
need_time = false
elseif item == 'ymd' then
f = '%Y-%m-%d %{era}'
elseif item == 'mdy' then
f = '%B %-d, %-Y %{era}'
elseif item == 'dmy' then
f = '%-d %B %-Y %{era}'
else
return bad_format()args.onerror
end
t:add(f)
end
fmt = t:join(' ')
if need_time then
fmt = hm_fmt() .. ' ' .. fmt
end
return strftime(date, fmt, options)
end
 
else
local day_info = {
local namespaceCategorisation = { [0] = true, [4] = true, [10] = true, [14] = true, [100] = true }
-- 0=Sun to 6=Sat
if namespaceCategorisation[ mw.title.getCurrentTitle().namespace ] and not Outils.notEmpty( args.nocat ) then
[0] = { 'Sun', 'Sunday' },
cat = '[[تصنيف:صفحة تحتوي على خطأ في صيغة قالب تاريخ]]'
{ 'Mon', 'Monday' },
end
{ 'Tue', 'Tuesday' },
resultat = params .. cat
{ 'Wed', 'Wednesday' },
{ 'Thu', 'Thursday' },
{ 'Fri', 'Friday' },
{ 'Sat', 'Saturday' },
}
 
local month_info = {
-- 1=Jan to 12=Dec
{ 'Jan', 'January' },
{ 'Feb', 'February' },
{ 'Mar', 'March' },
{ 'Apr', 'April' },
{ 'May', 'May' },
{ 'Jun', 'June' },
{ 'Jul', 'July' },
{ 'Aug', 'August' },
{ 'Sep', 'September' },
{ 'Oct', 'October' },
{ 'Nov', 'November' },
{ 'Dec', 'December' },
}
 
local function name_to_number(text, translate)
if type(text) == 'string' then
return translate[text:lower()]
end
return resultat or ''
end
 
local function day_numberfun._modeleDate(text args )
local annee, mois, numMois, jour = args.annee, args.mois, args.numMois, args.jour
return name_to_number(text, {
local qualificatif = args.qualificatif
sun = 0, sunday = 0,
mon = 1, monday = 1,
if ( annee or mois or jour ) == nil then
tue = 2, tuesday = 2,
return
wed = 3, wednesday = 3,
thu = 4, thursday = 4,
fri = 5, friday = 5,
sat = 6, saturday = 6,
})
end
 
local function month_number(text)
return name_to_number(text, {
jan = 1, january = 1,
feb = 2, february = 2,
mar = 3, march = 3,
apr = 4, april = 4,
may = 5,
jun = 6, june = 6,
jul = 7, july = 7,
aug = 8, august = 8,
sep = 9, september = 9, sept = 9,
oct = 10, october = 10,
nov = 11, november = 11,
dec = 12, december = 12,
})
end
 
local function _list_text(list, fmt)
-- Return a list of formatted strings from a list of dates.
if not type(list) == 'table' then
error('date:list:text: need "list:text()" with a colon', 2)
end
local result = { join = _list_join }
-- on traite l'age, naissance et mort
for i, date in ipairs(list) do
local age = args['âge'] and fun.age( annee, numMois, jour )
result[i] = date:text(fmt)
local naissance = args.naissance
end
local mort = args.mort
return result
end
-- on traite le calendrier
 
local gannee, gmois, gjour = annee, numMois, jour -- date suivant le calendrier grégorien pour <time>
local function _date_list(date, spec)
local jannee, jmois, jjour = annee, mois, jour -- date suivant le calendrier julien si necessaire
-- Return a possibly empty numbered table of dates meeting the specification.
local julienDate, julienSup, julienSep -- servira éventuellement à a afficher la date selon le calendrier julien
-- Dates in the list are in ascending order (oldest date first).
local gregAprMois, gregAprAn, gregFin -- message de calendrier gégorien lorsque la date est selon le calendrier julien
-- The spec should be a string of form "<count> <day> <op>"
if annee and jour then
-- where each item is optional and
local amj = annee * 10000 + numMois * 100 + jour
-- count = number of items wanted in list
if amj < 15821014 then
-- day = abbreviation or name such as Mon or Monday
if annee > 0 then
-- op = >, >=, <, <= (default is > meaning after date)
gannee, gmois, gjour = fun.julianToGregorian( annee, numMois, jour )
-- If no count is given, the list is for the specified days in date's month.
else
-- The default day is date's day.
-- calendrier grégorien proleptique avec année 0.
-- The spec can also be a positive or negative number:
gannee, gmois, gjour = fun.julianToGregorian( annee + 1, numMois, jour )
-- -5 is equivalent to '5 <'
-- 5 is equivalent to '5' which is '5 >'
if not is_date(date) then
error('date:list: need a date (use "date:list()" with a colon)', 2)
end
local list = { text = _list_text }
if date.partial then
return list
end
local count, offset, operation
local ops = {
['>='] = { before = false, include = true },
['>'] = { before = false, include = false },
['<='] = { before = true , include = true },
['<'] = { before = true , include = false },
}
if spec then
if type(spec) == 'number' then
count = floor(spec + 0.5)
if count < 0 then
count = -count
operation = ops['<']
end
args.julien = false
elseif type(spec) == 'string' then
local num, day, op = spec:match('^%s*(%d*)%s*(%a*)%s*([<>=]*)%s*$')
ifelseif not numargs.julien then
gannee, gmois, gjour = fun.julianToGregorian( annee, numMois, jour )
return list
annee, mois, jour = gannee, listeMois[gmois].nom, gjour
if jjour == 1 then
--jjour = modelePremier
end
if num ~= ''args.compact then
jmois = listeMois[ jmois ].abrev
count = tonumber(num)
end
if dayargs.julien ~== 'court' then
julienDate = jjour .. ' ' .. jmois .. ' '
local dow = day_number(day:gsub('[sS]$', '')) -- accept plural days
julienSup = '<sup>[[calendrier julien|jul.]]</sup>'
if not dow then
if jannee == annee then
return list
gregAprMois = '<sup>[[calendrier grégorien|grég.]]</sup>'
else
julienDate = julienDate .. jannee .. ' '
gregAprAn = '<sup>[[calendrier grégorien|grég.]]</sup>'
end
offsetjulienSep = dow' -/ date.dow'
else
julienDate = jjour .. ' ' .. jmois .. ' ' .. jannee
julienSep = ' ('
gregFin = ' [[Passage du calendrier julien au calendrier grégorien|dans le calendrier grégorien]])'
end
operation = ops[op]
elseif args.republicain then
else
local DateRep = require 'Module:Date républicaine'
return list
if args.republicain == 'liens' then
end
RepSansLiens = false
end
else
offset = offset or 0
RepSansLiens = true
operation = operation or ops['>']
local datefrom, dayfirst, daylast
if operation.before then
if offset > 0 or (offset == 0 and not operation.include) then
offset = offset - 7
end
if count then
if count > 1 then
offset = offset - 7*(count - 1)
end
datefrom = date + offset
else
daylast = date.day + offset
dayfirst = daylast % 7
if dayfirst == 0 then
dayfirst = 7
end
dateRepublicaine = DateRep._date_republicaine(
RepSansLiens,
{ fun.formatRepCal( fun.do_toRepCal{gannee, gmois, gjour} ) }
)
end
else
if offsetannee <and 0annee or (offset ==< 0 and not operation.include) then
offsetgannee = offsetgannee + 71
end
args.julien = false
if count then
args.republicain=false
datefrom = date + offset
end
-- on génère le résultat
-- Déclarations des variables
local wikiListe = {} -- reçois le texte affiché pour chaque paramètre
local iso = {} -- reçois le format date ISO de ce paramètre
local texteMois = mois -- texte du mois qui sera affiché (éventuellement l'abréviation)
if args.compact then
if args.nolinks then
texteMois = '<abbr class=abbr title="' .. mois .. '">' .. listeMois[ mois ].abrev .. '</abbr>'
else
dayfirsttexteMois = date.daylisteMois[ +mois offset].abrev
daylast = date.monthdays
end
end
mois = mois and mois:gsub( 'aout', 'août' )
if not count then
if daylast < dayfirst then
local dataQualificatif, dataCat
return list
if not args.nolinks then
dataQualificatif = dataLiens[qualificatif or '']
if type( dataQualificatif ) ~= 'table' then
-- si le qualifiquatif n'est pas dans la base de donnée, on crée une table minimum,
-- qui imposera un test sur l'annee, mais considère qu'il n'y a pas de lien sur le jour ou le mois
dataQualificatif = { qualificatif = ' ' .. qualificatif, annee = { } }
end
dataCat = dataLiens[dataQualificatif.cat]
if type( dataCat ) ~= 'table' or dataCat == dataQualificatif then
dataCat = { qualificatif = '' }
end
count = floor((daylast - dayfirst)/7) + 1
datefrom = Date(date, {day = dayfirst})
end
local function wikiLien( lien, texte )
for i = 1, count do
if notlien datefrom== texte then break end -- exceeds date limits
return '[[' .. texte .. ']]'
list[i] = datefrom
else
datefrom = datefrom + 7
return '[[' .. lien .. '|' .. texte .. ']]'
end
end
return list
end
 
-- le jour si présent
-- A table to get the current date/time (UTC), but only if needed.
local currentqualifJour = setmetatable({}, {''
if jour then
__index = function (self, key)
local dtexteJour = os.date('!*t')jour
if args.nolinks then
self.year = d.year
if jour == 1 then
self.month = d.month
--jour = modelePremier
self.day = d.day
self.hour = d.hour
self.minute = d.min
self.second = d.sec
return rawget(self, key)
end })
 
local function extract_date(newdate, text)
-- Parse the date/time in text and return n, o where
-- n = table of numbers with date/time fields
-- o = table of options for AM/PM or AD/BC or format, if any
-- or return nothing if date is known to be invalid.
-- Caller determines if the values in n are valid.
-- A year must be positive ('1' to '9999'); use 'BC' for BC.
-- In a y-m-d string, the year must be four digits to avoid ambiguity
-- ('0001' to '9999'). The only way to enter year <= 0 is by specifying
-- the date as three numeric parameters like ymd Date(-1, 1, 1).
-- Dates of form d/m/y, m/d/y, y/m/d are rejected as potentially ambiguous.
local date, options = {}, {}
if text:sub(-1) == 'Z' then
-- Extract date/time from a Wikidata timestamp.
-- The year can be 1 to 16 digits but this module handles 1 to 4 digits only.
-- Examples: '+2016-06-21T14:30:00Z', '-0000000180-00-00T00:00:00Z'.
local sign, y, m, d, H, M, S = text:match('^([+%-])(%d+)%-(%d%d)%-(%d%d)T(%d%d):(%d%d):(%d%d)Z$')
if sign then
y = tonumber(y)
if sign == '-' and y > 0 then
y = -y
end
table.insert( wikiListe, jour )
if y <= 0 then
else
options.era = 'BCE'
qualifJour = dataQualificatif.jour and dataQualificatif.qualificatif
or dataCat.jour and dataCat.qualificatif
or ''
local lien = jour .. ' ' .. mois .. ' ' .. qualifJour
if jour == 1 then
--jour = '1<sup>er</sup>'
--lien = '1er ' .. mois .. ' ' .. qualifJour
end
-- s'il n'y a pas de lien sur le mois, il sera affiché avec le jour.
date.year = y
table.insert( wikiListe, wikiLien( lien, jour ) )
m = tonumber(m)
table.insert( wikiListe, wikiLien( lien, jour .. ' '.. texteMois ) )
d = tonumber(d)
end
H = tonumber(H)
table.insert( iso, 1, string.sub( '0' .. gjour, -2 ) )
M = tonumber(M)
end
S = tonumber(S)
if m == 0 then
-- le mois
newdate.partial = true
if mois then
return date, options
if #wikiListe == 0 and annee == nil then
return texteMois
end
if args.nolinks then
if not args.masquerMois then
table.insert( wikiListe, texteMois )
end
else
date.month = m
local lien
if d == 0 then
if annee then
newdate.partial = true
lien = existDate( dataQualificatif, annee, mois ) or existDate( dataCat, annee, mois )
return date, options
if lien == nil and qualificatif and qualifJour == '' then
-- test nouveau test sans le qualificatif uniquement s'il n'y a pas d'éphémérides pour ce qualificatif.
lien = existDate( dataLiens[''], annee, mois )
end
end
if lien or args.masquerMois then
date.day = d
-- s'il y a un lien on retire le lien affichant 'jour mois' pour ajouter '[[mois annee|mois']]
if H > 0 or M > 0 or S > 0 then
datetable.hourremove( =wikiListe H)
if not args.masquerMois then
date.minute = M
table.insert( wikiListe, wikiLien( lien, texteMois ) )
date.second = S
end
elseif #wikiListe > 0 then
-- sinon on retire le lien affichant 'jour' pour ne garder que le lien 'jour mois'
table.remove( wikiListe, #wikiListe - 1 )
elseif args.masquerAnnee then
-- s'il n'y a pas de jour et que l'année n'est pas affichée, on insère le mois seul.
table.insert( wikiListe, texteMois )
end
return date, options
end
if gmois then
return
table.insert( iso, 1, string.sub( '0' .. gmois, -2 ) )
end
table.insert( wikiListe, gregAprMois )
end
local function extract_ymd(item)
-- l'année
-- Called when no day or month has been set.
if annee and not (args.julien == true and args.nolinks and jannee == annee ) then
local y, m, d = item:match('^(%d%d%d%d)%-(%w+)%-(%d%d?)$')
if ynot args.masquerAnnee then
local texteAnnee = annee
if date.year then
returnlocal lien
if annee < 0 then
local annneeAvJc = 0 - annee
lien = lien or ( annneeAvJc .. ' ق. م.' )
if args.avJC == false then
texteAnnee = annneeAvJc
else
texteAnnee = annneeAvJc .. ' <abbr class="abbr" title="'
.. annneeAvJc .. ' قبل الميلاد">ق. م.</abbr>'
end
elseif args.apJC then
texteAnnee = texteAnnee .. ' <abbr class="abbr" title="'
.. texteAnnee .. ' بعد الميلاد">م.</abbr>'
end
if args.nolinks then -- seulement si on doit l'affichée
if m:match('^%d%d?$') then
table.insert( wikiListe, texteAnnee )
m = tonumber(m)
else
lien = existDate( dataQualificatif, annee ) or existDate( dataCat, annee ) or lien or annee
m = month_number(m)
if mois and #wikiListe == 0 then
end
-- si le mois n'a pas de lien et n'est pas affiché avec le jour, il est affiché avec l'année.
if m then
texteAnnee = texteMois .. ' ' .. texteAnnee
date.year = tonumber(y)
date.month = mend
table.insert( wikiListe, wikiLien( lien, texteAnnee ) )
date.day = tonumber(d)
return true
end
end
end
if annee then
local function extract_day_or_year(item)
if gannee > 999 then
-- Called when a day would be valid, or
table.insert( iso, 1, gannee )
-- when a year would be valid if no year has been set and partial is set.
elseif gannee > -1 then
local number, suffix = item:match('^(%d%d?%d?%d?)(.*)$')
table.insert( iso, 1, string.sub( '000' .. gannee , -4 ) )
if number then
elseif gannee > -999 then
local n = tonumber(number)
-- calendrier grégorien proleptique avec année 0.
if #number <= 2 and n <= 31 then
table.insert( iso, 1, 'U-' .. string.sub( '000' .. ( 0 - gannee ), -4 ) )
suffix = suffix:lower()
else
if suffix == '' or suffix == 'st' or suffix == 'nd' or suffix == 'rd' or suffix == 'th' then
table.insert( iso, 1, 'U' .. gannee )
date.day = n
return true
end
elseif suffix == '' and newdate.partial and not date.year then
date.year = n
return true
end
end
end
table.insert( wikiListe, gregAprAn )
local function extract_month(item)
 
-- A month must be given as a name or abbreviation; a number could be ambiguous.
-- l'age
local m = month_number(item)
if type( age ) == 'number' and age >= 0 and ( not naissance or age < 120 ) then
if m then
date.monthif age == 0 mthen
age = '(أقل من\194\160سنة)'
return true
elseif age == 1 then
age = '(سنة\194\160واحدة)'
elseif (age > 1 and age <=10) then
age = '(' .. age .. '\194\160سنوات)'
else
age = '(' .. age .. '\194\160سنة)'
end
else
age = false
end
local function extract_time(item)
local h, m, s = item:match('^(%d%d?):(%d%d)(:?%d*)$')
-- compilation du résultat
if date.hour or not h then
local wikiTexte = table.concat( wikiListe, ' ' )
return
local isoTexte = table.concat( iso, '-' )
end
if s ~= '' then
-- On ajoute un peu de sémantique.
s = s:match('^:(%d%d)$')
local wikiHtml = mw.html.create( '' )
if not s then
return
if julienDate then
wikiHtml:tag( 'span')
:addClass( 'nowrap' )
:attr( 'data-sort-value', isoTexte )
:wikitext( julienDate )
:node( julienSup )
:done()
:wikitext( julienSep )
end
local dateHtml = wikiHtml:tag( 'time' )
:wikitext( wikiTexte )
if wikiTexte:match( ' ' ) then
dateHtml:addClass( 'nowrap' )
end
if isoTexte ~= wikiTexte then
dateHtml:attr( 'datetime', isoTexte )
:attr( 'data-sort-value', isoTexte )
end
if not args.nolinks then
dateHtml:addClass( 'date-lien' )
end
if naissance then
dateHtml:addClass( 'bday' )
elseif mort then
dateHtml:addClass( 'dday' )
end
wikiHtml:wikitext( gregFin )
if args.republicain then
wikiHtml:wikitext( ' (', dateRepublicaine, ')' )
end
if age then
wikiHtml:wikitext( ' ' )
:tag( 'span' )
:addClass( 'noprint')
:wikitext( age )
:done()
end
return tostring( wikiHtml )
end
 
 
---
-- fonction destinée aux infobox, notamment pour afficher les dates de naissance et de mort
-- les liens présent dans les dates fournies sont automatiquement supprimées pour gérer les cas ou
-- le paramètre contient déjà un modèle date.
-- Paramètres :
-- 1 : type de date à afficher (naissance / n, mort / m, ou date / d)
-- 1 : Date ou date de naissance
-- 2 : Date de mort si type n ou m
-- qualificatif = suffixe des page de date à lier (exemple : en musique)
-- nolinks : n'affiche pas de lien
-- préfixe : préfixe à afficher s'il y a un jour (par défaut '')
-- préfixe sans jour : préfixe à afficher s'il n'y a pas de jour (par défaut : '')
function fun.dateInfobox( frame )
local args = frame.args
if type( args ) ~= 'table' or not ( args[1] and args[2] ) then
return
end
-- analyseDate sépare la date du contenu qui suit, supprime les liens, et retourne si possible un table avec jour mois année
local function analyseDate( d )
if trim( d ) then
local analyse = d:match( ' ou ') or d:match( 'entre ' ) or d:match( 'vers ' ) or d:match( 'après ' ) or d:match( 'avant ' )
if analyse then
return d
end
analyse = d:match( 'datetime="([%d-]+)"' ) or d
end
-- sépare la date (avec ses liens) d'une référence ou contenu commençant par un espace)
date.hour = tonumber(h)
local debut, fin = analyse:match( '(.-%d%d%d%]*%-?)([\127 ].+)' )
date.minute = tonumber(m)
if not debut then
date.second = tonumber(s) -- nil if empty string
-- sépare la date du contenu commençant par <br>
return true
debut, fin = analyse:match( '(.-%d%d%d%]*%-?)(<br ?/?>.+)' )
end
end
local item_count = 0
analyse = debut or analyse
local index_time
-- supprime les lien
local function set_ampm(item)
analyse = analyse:gsub(
local H = date.hour
'%[%[([^%[%]|]*)|?([^%[%]]*)%]%]',
if H and not options.am and index_time + 1 == item_count then
function ( l, t )
options.am = ampm_options[item] -- caller checked this is not nil
return trim( t ) or l
if item:match('^[Aa]') then
if not (1 <= H and H <= 12) then
return
end
if H == 12 then
date.hour = 0
end
)
local t, r = fun.separationJourMoisAnnee( analyse )
if t then
return r, fin
else
return d, fin
if not (1 <= H and H <= 23) then
return
end
if H <= 11 then
date.hour = H + 12
end
end
return true
end
end
-- prefix ajoute un préfixe en fonction de la présence ou non du jour si le paramètre "préfixe sans jour" est défini
for item in text:gsub(',', ' '):gsub('&nbsp;', ' '):gmatch('%S+') do
local function prefix( dateString )
item_count = item_count + 1
if era_text[item]dateString then
local datetime = dateString:match( 'datetime="([U%d%-]+)"' )
-- Era is accepted in peculiar places.
if datetime and datetime:match('%-%d%d%-%d%d') and trim( args['préfixe'] ) then
if options.era then
return args['préfixe'] .. ' ' .. dateString
end
if trim( args['préfixe sans jour'] ) then
options.era = item
return args['préfixe sans jour'] .. ' ' .. dateString
elseif ampm_options[item] then
if not set_ampm(item) then
return
end
elseif item:find(':', 1, true) then
if not extract_time(item) then
return
end
index_time = item_count
elseif date.day and date.month then
if date.year then
return -- should be nothing more so item is invalid
end
if not item:match('^(%d%d?%d?%d?)$') then
return
end
date.year = tonumber(item)
elseif date.day then
if not extract_month(item) then
return
end
elseif date.month then
if not extract_day_or_year(item) then
return
end
elseif extract_month(item) then
options.format = 'mdy'
elseif extract_ymd(item) then
options.format = 'ymd'
elseif extract_day_or_year(item) then
if date.day then
options.format = 'dmy'
end
else
return
end
return dateString
end
if not date.year or date.year == 0 then
local naissance = args[1]:match( '^n' ) == 'n'
local mort = args[1]:match( '^m' ) or args[1]:match( 'décès' )
local affichageDate, qualificatif = args[2], args[4]
local affichageDateTab, resultatDate, complementDate
local dateNaissance, dateMort
if mort then
affichageDate = args[3]
end
if not trim( affichageDate ) then
return
end
if affichageDate:match( '</time>' ) then
local era = era_text[options.era]
-- S'il y a des liens il y a probablement déjà un modèle date, évitons de l'exècuter une 2e fois
if era and era.isbc then
if ( naissance or mort )
date.year = 1 - date.year
and ( affichageDate:match( 'wikidata%-linkback' )
end
or affichageDate:match('wikidata%.org%/wiki%/Q')) then
return date, options
dateNaissance = analyseDate( args[2] )
end
dateMort = analyseDate( args[3] )
 
resultatDate = affichageDate
local function autofill(date1, date2)
else
-- Fill any missing month or day in each date using the
return prefix( affichageDate )
-- corresponding component from the other date, if present,
-- or with 1 if both dates are missing the month or day.
-- This gives a good result for calculating the difference
-- between two partial dates when no range is wanted.
-- Return filled date1, date2 (two full dates).
local function filled(a, b)
local fillmonth, fillday
if not a.month then
fillmonth = b.month or 1
end
else
if not a.day then
affichageDateTab, complementDate = analyseDate( affichageDate )
fillday = b.day or 1
if type( affichageDateTab ) ~= 'table' then
return affichageDateTab
else
if naissance then
dateNaissance = affichageDateTab
dateMort = analyseDate( args[3] )
elseif mort then
dateNaissance = analyseDate( args[2] )
dateMort = affichageDateTab
else
qualificatif = args[3]
end
affichageDateTab.naissance = naissance
affichageDateTab.mort = mort
affichageDateTab.qualificatif = args.qualificatif or qualificatif
affichageDateTab.nolinks = args.nolinks
affichageDateTab.nocat = args.nocat
affichageDateTab.julien = args.julien
end
end
if fillmonth or fillday then -- need to create a new date
resultatDate = resultatDate or fun.modeleDate( affichageDateTab )
a = Date(a, { month = fillmonth, day = fillday })
local age, prefixAge, suffixAge, calculAge = '', ' <span class="noprint">(', ')</span>', nil
if naissance and
dateNaissance and
not dateMort and
type( dateNaissance ) == 'table'
then
calculAge = fun.age( dateNaissance.annee, dateNaissance.numMois, dateNaissance.jour )
if calculAge and calculAge > 120 then
calculAge = nil
end
elseif mort and
return a
dateNaissance and
dateMort and
type( dateNaissance ) == 'table'
and type( dateMort ) == 'table'
then
calculAge = fun.age(
dateNaissance.annee,
dateNaissance.numMois,
dateNaissance.jour,
dateMort.annee,
dateMort.numMois,
dateMort.jour
)
prefixAge = ' (à '
suffixAge = ')'
end
if tonumber( calculAge ) then
return filled(date1, date2), filled(date2, date1)
if calculAge > 2 and calculAge < 11 then
end
age = prefixAge .. calculAge .. '\194\160سنوات' .. suffixAge
 
elseif calculAge == 1 then
local function date_add_sub(lhs, rhs, is_sub)
age = prefixAge .. 'سنة\194\160واحدة' .. suffixAge
-- Return a new date from calculating (lhs + rhs) or (lhs - rhs),
elseif calculAge == 0 then
-- or return nothing if invalid.
age = prefixAge .. 'أقل من\194\160سنة' .. suffixAge
-- The result is nil if the calculated date exceeds allowable limits.
-- Caller ensures that lhs is a date; its properties are copied for the new date.
if lhs.partial then
-- Adding to a partial is not supported.
-- Can subtract a date or partial from a partial, but this is not called for that.
return
end
local function is_prefix(text, word, minlen)
local n = #text
return (minlen or 1) <= n and n <= #word and text == word:sub(1, n)
end
local function do_days(n)
local forcetime, jd
if floor(n) == n then
jd = lhs.jd
else
age = prefixAge .. calculAge .. '\194\160سنة' .. suffixAge
forcetime = not lhs.hastime
jd = lhs.jdz
end
if complementDate and complementDate:match( 'سنة ?%)' ) then
jd = jd + (is_sub and -n or n)
complementDate = ''
if forcetime then
jd = tostring(jd)
if not jd:find('.', 1, true) then
jd = jd .. '.0'
end
end
return Date(lhs, 'juliandate', jd)
end
if type(rhs) == 'number' then
return prefix( resultatDate ) .. ( complementDate or '' ) .. age
-- Add/subtract days, including fractional days.
end
return do_days(rhs)
 
 
---
-- la fonction dateISO renvoie un date au format aaaa-mm-jj (sans liens)
-- l'année peut être sous la forme 2013 ou [[2013 en litérature|2013]]
-- le mois peut être en lettre ou en chiffres
-- le jour peut être sous la forme '05', '{{1er}}' ou 'vendredi 13'
function fun.dateISO( frame )
local args = Outils.extractArgs( frame )
local annee = Outils.notEmpty( args['année'], args.annee, args.year, args.date )
-- extraction de l'année
if type( annee ) == 'string' then
annee = ( tonumber( annee ) -- match '2013'
or string.match ( annee, '%D(%d%d%d%d)%D' ) -- match '[[2013 en musique|2013]]'
or string.match ( annee, '%D(%d%d%d%d)$' ) -- match '17 septembre 2013'
or string.match ( annee, '^(%d%d%d%d)%D' ) -- match '2013-09-17'
)
end
annee = tonumber( annee )
if type(rhs) == 'string' then
-- rhs is a single component like '26m' or '26 months' (with optional sign).
-- le format de date iso est défini suivant le calendrier grégorien.
-- Fractions like '3.25d' are accepted for the units which are handled as days.
-- Avant l'année 1583 la date est calendrier est probablement du calendrier julien,
local sign, numstr, id = rhs:match('^%s*([+-]?)([%d%.]+)%s*(%a+)$')
-- donc autant s'abstenir.
if sign then
if signannee ==and annee > 1582 '-' then
local mois = Outils.notEmpty( args.mois, args.month )
is_sub = not (is_sub and true or false)
-- num mois trouve le numéro du mois, qu'il soit numérique ou texte, complet ou abrégé.
end
local nomMois, numMois = fun.determinationMois( mois )
local y, m, days
if numMois then
local num = tonumber(numstr)
mois = '-' .. string.sub( '0' .. numMois, -2 )
if not num then
return
local jour = Outils.notEmpty( args.jour, args.day, args['quantième'] )
if type( jour ) == 'string' then
jour = tonumber( jour ) or tonumber( string.match ( jour, '%d+') )
end
idjour = id:lowertonumber( jour )
if jour and jour <= listeMois[numMois].nJour then
if is_prefix(id, 'years') then
jour = '-' .. string.sub( '0' .. jour, -2 )
y = num
return annee .. mois .. jour
m = 0
elseif is_prefix(id, 'months') then
y = floor(num / 12)
m = num % 12
elseif is_prefix(id, 'weeks') then
days = num * 7
elseif is_prefix(id, 'days') then
days = num
elseif is_prefix(id, 'hours') then
days = num / 24
elseif is_prefix(id, 'minutes', 3) then
days = num / (24 * 60)
elseif is_prefix(id, 'seconds') then
days = num / (24 * 3600)
else
return annee .. mois
end
else
if days then
return do_daystostring(days annee )
end
if numstr:find('.', 1, true) then
return
end
if is_sub then
y = -y
m = -m
end
assert(-11 <= m and m <= 11)
y = lhs.year + y
m = lhs.month + m
if m > 12 then
y = y + 1
m = m - 12
elseif m < 1 then
y = y - 1
m = m + 12
end
local d = math.min(lhs.day, days_in_month(y, m, lhs.calendar))
return Date(lhs, y, m, d)
end
end
end
if is_diff(rhs) then
 
local days = rhs.age_days
---
if (is_sub or false) ~= (rhs.isnegative or false) then
-- Rang du jour dans l'année
days = -days
-- Usage : do_dayRank{année,mois,jour}
end
function fun.do_dayRank(arguments)
return lhs + days
local yr = tonumber(arguments.year or arguments[1]) or 1
local mt = tonumber(arguments.month or arguments[2]) or 1
local dy = tonumber(arguments.day or arguments[3]) or 1
-- Rangs des premiers des mois
local ranks = {0,31,59,90,120,151,181,212,243,273,304,334}
local rank = (ranks[mt] or 0) + dy - 1
if(fun.isLeapYear(yr) and (mt >= 3)) then
rank = rank+1
end
return rank
end
 
-- Nombre de jours entre deux années (du 1er janvier au 1er janvier)
local full_date_only = {
-- Suit le calendrier grégorien
dayabbr = true,
function fun.do_daysBetween(arguments)
dayname = true,
local yr1 = tonumber(arguments[1]) or 0
dow = true,
local yr2 = tonumber(arguments[2]) or 0
dayofweek = true,
dowiso = true,
return fun.daysSinceOrigin(yr2) - fun.daysSinceOrigin(yr1)
dayofweekiso = true,
end
dayofyear = true,
gsd = true,
juliandate = true,
jd = true,
jdz = true,
jdnoon = true,
}
 
-- Nombre de jours depuis l'année 1 (du 1er janvier au 1er janvier)
-- Metatable for a date's calculated fields.
function fun.daysSinceOrigin(year)
local datemt = {
local yr = year-1
__index = function (self, key)
return 365*yr + math.floor(yr/4) - math.floor(yr/100) + math.floor(yr/400)
if rawget(self, 'partial') then
end
if full_date_only[key] then return end
if key == 'monthabbr' or key == 'monthdays' or key == 'monthname' then
if not self.month then return end
end
end
local value
if key == 'dayabbr' then
value = day_info[self.dow][1]
elseif key == 'dayname' then
value = day_info[self.dow][2]
elseif key == 'dow' then
value = (self.jdnoon + 1) % 7 -- day-of-week 0=Sun to 6=Sat
elseif key == 'dayofweek' then
value = self.dow
elseif key == 'dowiso' then
value = (self.jdnoon % 7) + 1 -- ISO day-of-week 1=Mon to 7=Sun
elseif key == 'dayofweekiso' then
value = self.dowiso
elseif key == 'dayofyear' then
local first = Date(self.year, 1, 1, self.calendar).jdnoon
value = self.jdnoon - first + 1 -- day-of-year 1 to 366
elseif key == 'era' then
-- Era text (never a negative sign) from year and options.
value = get_era_for_year(self.options.era, self.year)
elseif key == 'format' then
value = self.options.format or 'dmy'
elseif key == 'gsd' then
-- GSD = 1 from 00:00:00 to 23:59:59 on 1 January 1 AD Gregorian calendar,
-- which is from jd 1721425.5 to 1721426.49999.
value = floor(self.jd - 1721424.5)
elseif key == 'juliandate' or key == 'jd' or key == 'jdz' then
local jd, jdz = julian_date(self)
rawset(self, 'juliandate', jd)
rawset(self, 'jd', jd)
rawset(self, 'jdz', jdz)
return key == 'jdz' and jdz or jd
elseif key == 'jdnoon' then
-- Julian date at noon (an integer) on the calendar day when jd occurs.
value = floor(self.jd + 0.5)
elseif key == 'isleapyear' then
value = is_leap_year(self.year, self.calendar)
elseif key == 'monthabbr' then
value = month_info[self.month][1]
elseif key == 'monthdays' then
value = days_in_month(self.year, self.month, self.calendar)
elseif key == 'monthname' then
value = month_info[self.month][2]
end
if value ~= nil then
rawset(self, key, value)
return value
end
end,
}
 
-- Test d'année bissextile (Suit le calendrier grégorien)
-- Date operators.
local function mt_date_addfun.isLeapYear(lhs, rhsyear)
local yr = tonumber(year) or 1
if not is_date(lhs) then
return (yr%4 == 0) and ((yr%100 ~= 0) or (yr%400 == 0))
lhs, rhs = rhs, lhs -- put date on left (it must be a date for this to have been called)
end
return date_add_sub(lhs, rhs)
end
 
-- Conversion d'un nombre en chiffres romains
local function mt_date_sub(lhs, rhs)
function fun.toRoman(number)
if is_date(lhs) then
local n = math.floor(number)
if is_date(rhs) then
local letters = {"I","V","X","L","C","D","M","",""}
return DateDiff(lhs, rhs)
local pattern = {"","0","00","000","01","1","10","100","1000","02"}
local result = ""
if(n<=0 or n>=4000) then
result = "---"
else
for i=1,7,2 do
local p = pattern[n%10 + 1]
for j=0,2 do
p = string.gsub(p,tostring(j),letters[i+j])
end
result = p .. result
n = math.floor(n/10)
end
return date_add_sub(lhs, rhs, true)
end
return result
end
 
-- Conversion et affichage d'une date dans le calendrier républicain
local function mt_date_concat(lhs, rhs)
function fun.dateRepublicain(frame)
return tostring(lhs) .. tostring(rhs)
local pframe = frame:getParent()
local arguments = pframe.args
return fun.formatRepCal(fun.do_toRepCal(arguments))
end
 
---
local function mt_date_tostring(self)
-- Calcul d'une date dans le calendrier républicain
return self:text()
-- On suppose que les années 4n+3 sont sextiles (3, 7, 11...)
function fun.do_toRepCal(arguments)
local yr = tonumber(arguments.year or arguments[1]) or 2000
-- rang absolu du jour demandé, le jour 0 étant le 22 septembre 1792 (1er jour de l'an I)
local repDays = fun.do_dayRank(arguments) + fun.do_daysBetween{1792,yr} - fun.do_dayRank{1792,9,22}
local repYear = math.floor((repDays+731)/365.25) - 1
local repDayRank = repDays - 365*(repYear-1) - math.floor(repYear/4)
local repMonth, repDay = math.floor(repDayRank/30)+1, (repDayRank%30)+1
return {repYear, repMonth, repDay}
end
 
---
local function mt_date_eq(lhs, rhs)
-- Formatage d'une date selon le calendrier républicain
-- Return true if dates identify same date/time where, for example,
-- Usage : fun.formatRepCal{année,mois,jour}
-- Date(-4712, 1, 1, 'Julian') == Date(-4713, 11, 24, 'Gregorian') is true.
function fun.formatRepCal(arguments)
-- This is called only if lhs and rhs have the same type and the same metamethod.
local months = {"Vendémiaire","Brumaire","Frimaire","Nivôse","Pluviôse","Ventôse","Germinal","Floréal","Prairial","Messidor","Thermidor","Fructidor"}
if lhs.partial or rhs.partial then
local extras = {"de la vertu","du génie","du travail","des récompenses","de l'opinion","de la révolution"}
-- One date is partial; the other is a partial or a full date.
local result = ""
-- The months may both be nil, but must be the same.
if(arguments[2] < 13) then
return lhs.year == rhs.year and lhs.month == rhs.month and lhs.calendar == rhs.calendar
result = result .. tostring(arguments[3]) .. "\194\160" .. months[arguments[2]]
else
result = result .. "jour " .. extras[arguments[3]]
end
result = result .. " de l'an " .. fun.toRoman(arguments[1])
return lhs.jdz == rhs.jdz
return result
end
 
---
local function mt_date_lt(lhs, rhs)
-- Voir Modèle:Âge
-- Return true if lhs < rhs, for example,
-- retourne l'age en fonction de la ou les dates fournies. La valeur retounée est de type 'number'
-- Date('1 Jan 2016') < Date('06:00 1 Jan 2016') is true.
-- Parammètres :
-- This is called only if lhs and rhs have the same type and the same metamethod.
-- 1, 2, 3 : année, mois jour de naissance (supposé dans le calendrier grégorien)
if lhs.partial or rhs.partial then
-- 4, 5, 6 : année, mois, joue du calcul (facultatif, par défaut la date UTC courante).
-- One date is partial; the other is a partial or a full date.
function fun.age( an, mn, jn, ac, mc, jc )
if lhs.calendar ~= rhs.calendar then
if ac == nil then
return lhs.calendar == 'Julian'
local today = os.date( '!*t' )
end
ac = today.year
if lhs.partial then
lhsmc = lhstoday.partial.firstmonth
jc = today.day
end
else
if rhs.partial then
ac = tonumber( ac )
rhs = rhs.partial.first
mc = tonumber( mc )
end
jc = tonumber( jc )
end
return lhs.jdz < rhs.jdz
end
 
local an = tonumber( an )
--[[ Examples of syntax to construct a date:
local mn = tonumber( mn )
Date(y, m, d, 'julian') default calendar is 'gregorian'
local jn = tonumber( jn )
Date(y, m, d, H, M, S, 'julian')
 
Date('juliandate', jd, 'julian') if jd contains "." text output includes H:M:S
if an == nil or ac == nil or mn == nil or mc == nil then
Date('currentdate')
-- pas de message d'erreur qui risque de faire planter la fonction appelante
Date('currentdatetime')
-- à elle de gérer ce retour.
Date('1 April 1995', 'julian') parse date from text
Date('1 April 1995 AD', 'julian') using an era sets a flag to do the same for output
Date('04:30:59 1 April 1995', 'julian')
Date(date) copy of an existing date
Date(date, t) same, updated with y,m,d,H,M,S fields from table t
Date(t) date with y,m,d,H,M,S fields from table t
]]
function Date(...) -- for forward declaration above
-- Return a table holding a date assuming a uniform calendar always applies
-- (proleptic Gregorian calendar or proleptic Julian calendar), or
-- return nothing if date is invalid.
-- A partial date has a valid year, however its month may be nil, and
-- its day and time fields are nil.
-- Field partial is set to false (if a full date) or a table (if a partial date).
local calendars = { julian = 'Julian', gregorian = 'Gregorian' }
local newdate = {
_id = uniq,
calendar = 'Gregorian', -- default is Gregorian calendar
hastime = false, -- true if input sets a time
hour = 0, -- always set hour/minute/second so don't have to handle nil
minute = 0,
second = 0,
options = {},
list = _date_list,
subtract = function (self, rhs, options)
return DateDiff(self, rhs, options)
end,
text = _date_text,
}
local argtype, datetext, is_copy, jd_number, tnums
local numindex = 0
local numfields = { 'year', 'month', 'day', 'hour', 'minute', 'second' }
local numbers = {}
for _, v in ipairs({...}) do
v = strip_to_nil(v)
local vlower = type(v) == 'string' and v:lower() or nil
if v == nil then
-- Ignore empty arguments after stripping so modules can directly pass template parameters.
elseif calendars[vlower] then
newdate.calendar = calendars[vlower]
elseif vlower == 'partial' then
newdate.partial = true
elseif vlower == 'fix' then
newdate.want_fix = true
elseif is_date(v) then
-- Copy existing date (items can be overridden by other arguments).
if is_copy or tnums then
return
end
is_copy = true
newdate.calendar = v.calendar
newdate.partial = v.partial
newdate.hastime = v.hastime
newdate.options = v.options
newdate.year = v.year
newdate.month = v.month
newdate.day = v.day
newdate.hour = v.hour
newdate.minute = v.minute
newdate.second = v.second
elseif type(v) == 'table' then
if tnums then
return
end
tnums = {}
local tfields = { year=1, month=1, day=1, hour=2, minute=2, second=2 }
for tk, tv in pairs(v) do
if tfields[tk] then
tnums[tk] = tonumber(tv)
end
if tfields[tk] == 2 then
newdate.hastime = true
end
end
else
local num = tonumber(v)
if not num and argtype == 'setdate' and numindex == 1 then
num = month_number(v)
end
if num then
if not argtype then
argtype = 'setdate'
end
if argtype == 'setdate' and numindex < 6 then
numindex = numindex + 1
numbers[numfields[numindex]] = num
elseif argtype == 'juliandate' and not jd_number then
jd_number = num
if type(v) == 'string' then
if v:find('.', 1, true) then
newdate.hastime = true
end
elseif num ~= floor(num) then
-- The given value was a number. The time will be used
-- if the fractional part is nonzero.
newdate.hastime = true
end
else
return
end
elseif argtype then
return
elseif type(v) == 'string' then
if v == 'currentdate' or v == 'currentdatetime' or v == 'juliandate' then
argtype = v
else
argtype = 'datetext'
datetext = v
end
else
return
end
end
end
if argtype == 'datetext' then
if tnums or not set_date_from_numbers(newdate, extract_date(newdate, datetext)) then
return
end
elseif argtype == 'juliandate' then
newdate.partial = nil
newdate.jd = jd_number
if not set_date_from_jd(newdate) then
return
end
elseif argtype == 'currentdate' or argtype == 'currentdatetime' then
newdate.partial = nil
newdate.year = current.year
newdate.month = current.month
newdate.day = current.day
if argtype == 'currentdatetime' then
newdate.hour = current.hour
newdate.minute = current.minute
newdate.second = current.second
newdate.hastime = true
end
newdate.calendar = 'Gregorian' -- ignore any given calendar name
elseif argtype == 'setdate' then
if tnums or not set_date_from_numbers(newdate, numbers) then
return
end
elseif not (is_copy or tnums) then
return
end
if tnums then
local age = ac - an
newdate.jd = nil -- force recalculation in case jd was set before changes from tnums
if mc == mn then
if not set_date_from_numbers(newdate, tnums) then
if jc == nil or jn == nil then
return
end
return age-tonumber( jc < jn and 1 or 0 )
end
if newdate.partial then
local year = newdate.year
local month = newdate.month
local first = Date(year, month or 1, 1, newdate.calendar)
month = month or 12
local last = Date(year, month, days_in_month(year, month), newdate.calendar)
newdate.partial = { first = first, last = last }
else
return age-tonumber( mc < mn and 1 or 0 )
newdate.partial = false -- avoid index lookup
end
setmetatable(newdate, datemt)
local readonly = {}
local mt = {
__index = newdate,
__newindex = function(t, k, v) error('date.' .. tostring(k) .. ' is read-only', 2) end,
__add = mt_date_add,
__sub = mt_date_sub,
__concat = mt_date_concat,
__tostring = mt_date_tostring,
__eq = mt_date_eq,
__lt = mt_date_lt,
}
return setmetatable(readonly, mt)
end
 
local function _diff_agefun.modeleAge(diff, code,frame options)
local args = frame:getParent().args
-- Return a tuple of integer values from diff as specified by code, except that
local age = fun.age (
-- each integer may be a list of two integers for a diff with a partial date, or
args[1] or args['année'] or args['سنة'],
-- return nil if the code is not supported.
args[2] or args['mois'] or args['شهر'],
-- If want round, the least significant unit is rounded to nearest whole unit.
args[3] or args['jour'] or args['يوم'],
-- For a duration, an extra day is added.
args[4],
local wantround, wantduration, wantrange
args[5],
if type(options) == 'table' then
args[6]
wantround = options.round
)
wantduration = options.duration
if age then
wantrange = options.range
return age
else
return '<span class="error">Paramètres incorrects ou insuffisants pour calculer l\'âge précis</span>'
wantround = options
end
if not is_diff(diff) then
local f = wantduration and 'duration' or 'age'
error(f .. ': need a date difference (use "diff:' .. f .. '()" with a colon)', 2)
end
if diff.partial then
-- Ignore wantround, wantduration.
local function choose(v)
if type(v) == 'table' then
if not wantrange or v[1] == v[2] then
-- Example: Date('partial', 2005) - Date('partial', 2001) gives
-- diff.years = { 3, 4 } to show the range of possible results.
-- If do not want a range, choose the second value as more expected.
return v[2]
end
end
return v
end
if code == 'ym' or code == 'ymd' then
if not wantrange and diff.iszero then
-- This avoids an unexpected result such as
-- Date('partial', 2001) - Date('partial', 2001)
-- giving diff = { years = 0, months = { 0, 11 } }
-- which would be reported as 0 years and 11 months.
return 0, 0
end
return choose(diff.partial.years), choose(diff.partial.months)
end
if code == 'y' then
return choose(diff.partial.years)
end
if code == 'm' or code == 'w' or code == 'd' then
return choose({ diff.partial.mindiff:age(code), diff.partial.maxdiff:age(code) })
end
return nil
end
local extra_days = wantduration and 1 or 0
if code == 'wd' or code == 'w' or code == 'd' then
local offset = wantround and 0.5 or 0
local days = diff.age_days + extra_days
if code == 'wd' or code == 'd' then
days = floor(days + offset)
if code == 'd' then
return days
end
return floor(days/7), days % 7
end
return floor(days/7 + offset)
end
local H, M, S = diff.hours, diff.minutes, diff.seconds
if code == 'dh' or code == 'dhm' or code == 'dhms' or code == 'h' or code == 'hm' or code == 'hms' then
local days = floor(diff.age_days + extra_days)
local inc_hour
if wantround then
if code == 'dh' or code == 'h' then
if M >= 30 then
inc_hour = true
end
elseif code == 'dhm' or code == 'hm' then
if S >= 30 then
M = M + 1
if M >= 60 then
M = 0
inc_hour = true
end
end
else
-- Nothing needed because S is an integer.
end
if inc_hour then
H = H + 1
if H >= 24 then
H = 0
days = days + 1
end
end
end
if code == 'dh' or code == 'dhm' or code == 'dhms' then
if code == 'dh' then
return days, H
elseif code == 'dhm' then
return days, H, M
else
return days, H, M, S
end
end
local hours = days * 24 + H
if code == 'h' then
return hours
elseif code == 'hm' then
return hours, M
end
return hours, M, S
end
if wantround then
local inc_hour
if code == 'ymdh' or code == 'ymwdh' then
if M >= 30 then
inc_hour = true
end
elseif code == 'ymdhm' or code == 'ymwdhm' then
if S >= 30 then
M = M + 1
if M >= 60 then
M = 0
inc_hour = true
end
end
elseif code == 'ymd' or code == 'ymwd' or code == 'yd' or code == 'md' then
if H >= 12 then
extra_days = extra_days + 1
end
end
if inc_hour then
H = H + 1
if H >= 24 then
H = 0
extra_days = extra_days + 1
end
end
end
local y, m, d = diff.years, diff.months, diff.days
if extra_days > 0 then
d = d + extra_days
if d > 28 or code == 'yd' then
-- Recalculate in case have passed a month.
diff = diff.date1 + extra_days - diff.date2
y, m, d = diff.years, diff.months, diff.days
end
end
if code == 'ymd' then
return y, m, d
elseif code == 'yd' then
if y > 0 then
-- It is known that diff.date1 > diff.date2.
diff = diff.date1 - (diff.date2 + (y .. 'y'))
end
return y, floor(diff.age_days)
elseif code == 'md' then
return y * 12 + m, d
elseif code == 'ym' or code == 'm' then
if wantround then
if d >= 16 then
m = m + 1
if m >= 12 then
m = 0
y = y + 1
end
end
end
if code == 'ym' then
return y, m
end
return y * 12 + m
elseif code == 'ymw' then
local weeks = floor(d/7)
if wantround then
local days = d % 7
if days > 3 or (days == 3 and H >= 12) then
weeks = weeks + 1
end
end
return y, m, weeks
elseif code == 'ymwd' then
return y, m, floor(d/7), d % 7
elseif code == 'ymdh' then
return y, m, d, H
elseif code == 'ymwdh' then
return y, m, floor(d/7), d % 7, H
elseif code == 'ymdhm' then
return y, m, d, H, M
elseif code == 'ymwdhm' then
return y, m, floor(d/7), d % 7, H, M
end
if code == 'y' then
if wantround and m >= 6 then
y = y + 1
end
return y
end
return nil
end
 
---
local function _diff_duration(diff, code, options)
-- calcul du jour julien à partir d'une date du calendrier grégorien
if type(options) ~= 'table' then
function fun.julianDay( year, month, day, hour, min, sec )
options = { round = options }
local julian
julian = math.floor( math.floor( ( year * 12 + month + 57609 ) / 12 - 1 ) * 1461 / 4 )
- math.floor( math.floor( ( year * 12 + month + 57609 ) / 12 - 1 ) / 100 )
+ math.floor( math.floor( ( year * 12 + month + 57609 ) / 12 - 1 ) / 400 )
+ math.floor( ( math.fmod( month + 57609, 12 ) + 4 ) * 153 / 5 )
+ day + ( hour or 12 ) / 24 + ( min or 0 ) / 1440 + ( sec or 0 ) / 86400
- 32167.5
return julian
end
 
---
-- calcul du jour julien à partir d'une date du calendrier julien
function fun.julianDayJulian( year, month, day, hour, min, sec )
local julian
julian = math.floor( math.floor( ( year * 12 + month + 57609 ) / 12 - 1 ) * 1461 / 4 )
+ math.floor( ( math.fmod( month + 57609, 12 ) + 4 ) * 153 / 5 )
+ day + ( hour or 12 ) / 24 + ( min or 0 ) / 1440 + ( sec or 0 ) / 86400
- 32205.5
return julian
end
 
---
-- calcul d'une date dans le calendrier grégorien à partir du jour julien
function fun.julianDayToGregorian( julianDay )
local base = math.floor( julianDay + 32044.5 ) -- 1 March -4800 (proleptic Gregorian date)
local nCentury = math.floor( ( base * 4 + 3 ) / 146097 )
local sinceCentury = base - math.floor( nCentury * 146097 / 4 )
local nYear = math.floor( ( sinceCentury * 4 + 3 ) / 1461 )
local sinceYear = sinceCentury - math.floor( nYear * 1461 / 4 )
local nMonth = math.floor( ( sinceYear * 5 + 2 ) / 153 )
local day = sinceYear - math.floor( ( nMonth * 153 + 2 ) / 5 ) + 1
local month = nMonth - math.floor( nMonth / 10 ) * 12 + 3
local year = math.floor( sinceYear / 306 ) + nYear + 100 * nCentury - 4800
return year, month, day
end
 
---
-- calcul d'une date dans le calendrier julien à partir du jour julien
-- calcul basé sur l'algorythme de la page fr.wikipedia.org/wiki/Jour_julien (1/10/2013)
function fun.julianDayToJulian( julianDay )
local year = math.modf( ( julianDay * 4 - 6884469 ) / 1461 )
local r2 = julianDay - math.modf( ( 1461 * year + 6884472 ) / 4 )
local month = math.modf( ( 5 * r2 + 461 ) / 153 )
local day = r2 - math.modf( ( 153 * month - 457 ) / 5 ) + 1
if month > 12 then
year = year + 1
month = month - 12
end
return year, month, day
options.duration = true
return _diff_age(diff, code, options)
end
 
---
-- Metatable for some operations on date differences.
-- calcul d'une date dans le calendrier grégorien à partir d'une date dans le calendrier julien
diffmt = { -- for forward declaration above
__concat = function fun.julianToGregorian(lhs year, rhsmonth, day )
return fun.julianDayToGregorian( fun.julianDayJulian( year, month, day ) )
return tostring(lhs) .. tostring(rhs)
end,
 
__tostring = function (self)
---
return tostring(self.age_days)
-- calcul d'une date dans le calendrier julien à partir d'une date dans le calendrier grégorien
end,
__index = function fun.gregorianToJulian(self year, keymonth, day )
year = tonumber(year)
local value
if month then month = tonumber(month) else month = 6 end --prend une valeur centrale pour donner un best "guess"
if key == 'age_days' then
if day then day = tonumber(day) else day = 15 end
if rawget(self, 'partial') then
return fun.julianDayToJulian( fun.julianDay( year, month, day ) )
local function jdz(date)
end
return (date.partial and date.partial.first or date).jdz
end
value = jdz(self.date1) - jdz(self.date2)
else
value = self.date1.jdz - self.date2.jdz
end
end
if value ~= nil then
rawset(self, key, value)
return value
end
end,
}
 
 
function DateDiff(date1, date2, options) -- for forward declaration above
--[[
-- Return a table with the difference between two dates (date1 - date2).
Cette fonction retourne "CET" ou "CEST" selon que dans la pseudo-timezone en cours
-- The difference is negative if date1 is older than date2.
c'est l'heure d'été ou l'heure d'hiver.
-- Return nothing if invalid.
Cette fonction n'a de sens a priori que pour des modèles utilisés en Europe
-- If d = date1 - date2 then
-- date1 = date2 + d
Paramètre optionnel non nommé : "sans lien" : retourne le texte CET/CEST. sinon
-- If date1 >= date2 and the dates have no H:M:S time specified then
retourne ce même texte avec un wikilien vers les articles correspondant
-- date1 = date2 + (d.years..'y') + (d.months..'m') + d.days
--]]
-- where the larger time units are added first.
function fun.CEST(frame)
-- The result of Date(2015,1,x) + '1m' is Date(2015,2,28) for
-- option : ne pas créer de wikilien
-- x = 28, 29, 30, 31. That means, for example,
local opt = trim(frame.args[1] or frame:getParent().args[1])
-- d = Date(2015,3,3) - Date(2015,1,31)
-- on récupère l'information dans la zone courante
-- gives d.years, d.months, d.days = 0, 1, 3 (excluding date1).
local t = mw.getContentLanguage():formatDate("I", nil, true)
if not (is_date(date1) and is_date(date2) and date1.calendar == date2.calendar) then
return
if (t == "1") then -- heure d'été
end
if (opt == "sans lien") then
local wantfill
return "CEST"
if type(options) == 'table' then
elseif (opt == "décalage") then
wantfill = options.fill
return "2"
end
local isnegative = false
local iszero = false
if date1 < date2 then
isnegative = true
date1, date2 = date2, date1
elseif date1 == date2 then
iszero = true
end
-- It is known that date1 >= date2 (period is from date2 to date1).
if date1.partial or date2.partial then
-- Two partial dates might have timelines:
---------------------A=================B--- date1 is from A to B inclusive
--------C=======D-------------------------- date2 is from C to D inclusive
-- date1 > date2 iff A > C (date1.partial.first > date2.partial.first)
-- The periods can overlap ('April 2001' - '2001'):
-------------A===B------------------------- A=2001-04-01 B=2001-04-30
--------C=====================D------------ C=2001-01-01 D=2001-12-31
if wantfill then
date1, date2 = autofill(date1, date2)
else
return "[[توقيت وسط أوروبا الصيفي|CEST]]"
local function zdiff(date1, date2)
local diff = date1 - date2
if diff.isnegative then
return date1 - date1 -- a valid diff in case we call its methods
end
return diff
end
local function getdate(date, which)
return date.partial and date.partial[which] or date
end
local maxdiff = zdiff(getdate(date1, 'last'), getdate(date2, 'first'))
local mindiff = zdiff(getdate(date1, 'first'), getdate(date2, 'last'))
local years, months
if maxdiff.years == mindiff.years then
years = maxdiff.years
if maxdiff.months == mindiff.months then
months = maxdiff.months
else
months = { mindiff.months, maxdiff.months }
end
else
years = { mindiff.years, maxdiff.years }
end
return setmetatable({
date1 = date1,
date2 = date2,
partial = {
years = years,
months = months,
maxdiff = maxdiff,
mindiff = mindiff,
},
isnegative = isnegative,
iszero = iszero,
age = _diff_age,
duration = _diff_duration,
}, diffmt)
end
else -- heure d'hiver (ou autre zone où ça ne s'applique pas)
end
if (opt == "sans lien") then
local y1, m1 = date1.year, date1.month
return "CET"
local y2, m2 = date2.year, date2.month
elseif (opt == "décalage") then
local years = y1 - y2
return "1"
local months = m1 - m2
local d1 = date1.day + hms(date1)
local d2 = date2.day + hms(date2)
local days, time
if d1 >= d2 then
days = d1 - d2
else
months = months - 1
-- Get days in previous month (before the "to" date) given December has 31 days.
local dpm = m1 > 1 and days_in_month(y1, m1 - 1, date1.calendar) or 31
if d2 >= dpm then
days = d1 - hms(date2)
else
return "[[توقيت وسط أوروبا|CET]]"
days = dpm - d2 + d1
end
end
if months < 0 then
years = years - 1
months = months + 12
end
days, time = math.modf(days)
local H, M, S = h_m_s(time)
return setmetatable({
date1 = date1,
date2 = date2,
partial = false, -- avoid index lookup
years = years,
months = months,
days = days,
hours = H,
minutes = M,
seconds = S,
isnegative = isnegative,
iszero = iszero,
age = _diff_age,
duration = _diff_duration,
}, diffmt)
end
 
return {fun
_current = current,
_Date = Date,
_days_in_month = days_in_month,
}