Jump to content
Toggle menu
  • 8 articles
  • 75 files
  • 7 users
  • 37.8K edits
Neodyland Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:ISOdate: Difference between revisions

From Neodyland Wiki
Created page with 'local p = {} function p.isodate(frame) local input = frame.args[1] local lang = frame.args["lang"] -- Iteratively extract the parts -- (We can't use one...'
 
No edit summary
Line 1: Line 1:
--[[ 
This module is intended for processing of date strings.
Please do not modify this code without applying the changes first at Module:Date/sandbox and testing
at Module:Date/sandbox/testcases and Module talk:Date/sandbox/testcases.
Authors and maintainers:
* User:Parent5446 - original version of the function mimicking template:ISOdate
* User:Jarekt - original version of the functions mimicking template:Date and template:ISOyear
]]
local p = {}
local p = {}


function p.isodate(frame)
-- =======================================
-- === Dependencies ======================
-- =======================================
local D = require('Module:Date')
 
--[[
ISOyear
This function returns year part of date string.
Usage:
{{#invoke:Date|ISOyear|target_string}}
Parameters
    1: The date string
Error Handling:
  If the string does not look like it contain the year than the function will not return anything.
  That is the preferred treatment for the template:Creator which is the main (only?) template calling it.
]]
function p.ISOyear( frame )
local input = frame.args[1]
local input = frame.args[1]
local lang = frame.args["lang"]
if not input then
input = frame.args["s"]
-- Iteratively extract the parts
end
-- (We can't use one single pattern due to Lua restrictions)
input = mw.text.trim( input )
local year = input:match( "^(%d+)" )
   
local month = input:match( "^%d+-(%d+)" )
-- if empty string then return it
local day = input:match( "^%d+-%d+-(%d+)" )
if input == "" then
return input
local hour = input:match( "^%d+-%d+-%d+ (%d+)" )
end
local minute = input:match( "^%d+-%d+-%d+ %d+:(%d+)" )
   
local second = input:match( "^%d+-%d+-%d+ %d+:%d+:(%d+)" )
-- if number then return it
if tonumber( input ) then
-- {{date|year|month|day|form=|class=}}
return mw.ustring.format( '%04i', input )
local retval = frame:expandTemplate{ title="date", args={
end
[1]=year,
   
[2]=month,
-- otherwise use regular expression match
[3]=day,
input = mw.ustring.match( input, '^(-?%d%d?%d?%d?)-' )
["form"]=frame.args["form"],
if input then
["class"]=frame.args["class"]
return mw.ustring.format( '%04i', input )
} }
else
return ''
end
end
 
--[[
ISOdate
This function is the core part of the ISOdate template.
Usage:
{{#invoke:Date|ISOdate|target_string|lang=}}
Parameters:
    1: The date string
  lang: The language to display it in
  form: Language format (genitive, etc.) for some languages
class: CSS class for the <time> node


-- Handle the time
Error Handling:
if hour ~= nil and minute ~= nil then
  If the string does not look like it contain the proper ISO date than the function will return the original string.
retval = retval .. ", "
 
  That is the preferred treatment for the template:Information (and similar templates) which calling it.
]]
function p.ISOdate(frame)


if lang == "ml-old"
-- pattern: regexp - regular expresion to test; dlen - number of date elements; tail = which element is a "tail" if any
or lang == "mn"
-- regexp hints:
or lang == "te"
--  1) Strings starting with "^" and ending with "$" indicate whole string match
or lang == "th"
--  2) optional tail part copied as-is and following the main parsed part of the date have to be separated from the date by a whitespace, so "(\s.+)?"
then
local pattern = {
-- Unfortunately these require more complicated parsing
-- strings starting with YYYY-MM-DD HH:MM:SS. Year 4 digits (if we know seconds than it was within the last 100 years), the rest 1-2
local formattedHour = frame:callParserFunction( "#time", { "H", input, lang } )
-- date and time can be separated by space or "T" and there could be a "Z" on the end indicating "Zulu" time zone
local formattedMin = frame:callParserFunction( "#time", { "i", input, lang } )
{dlen=6, tail=7, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?):(%d%d?)Z?(%s.*)"},  
local formattedSec = frame:callParserFunction( "#time", { "s", input, lang } )
{dlen=6, tail=0, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?):(%d%d?)Z?$"},  
-- strings starting with YYYY-MM-DD HH:MM. Year 4 digits, the rest 1-2
retval = retval
{dlen=5, tail=6, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?)(%s.+)"},
.. frame:expandTemplate{ title="formatnum4", args={ formattedHour } }
{dlen=5, tail=0, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?)$"},
.. frame:expandTemplate{ title="formatnum4", args={ formattedMin } }
-- strings starting with YYYY-MM-DD. Year 3-4 digits, the rest 1-2
.. frame:expandTemplate{ title="formatnum4", args={ formattedSec } }
{dlen=3, tail=4, regexp="^(%d%d?%d?%d?)-(%d%d?)-(%d%d?)(%s.+)"},
{dlen=3, tail=0, regexp="^(%d%d?%d?%d?)-(%d%d?)-(%d%d?)$"},
else
-- strings starting with YYYY-MM. Year 3-4 digits, month 1-2 digits
local separator = ":"
{dlen=2, tail=3, regexp="^(%d%d?%d?%d?)-(%d%d?)(%s.+)"},  
-- If necessary, choose a different separator
{dlen=2, tail=0, regexp="^(%d%d?%d?%d?)-(%d%d)$"},  
if lang == "sl" then
-- string starts with a number -> it has to be 3 or 4 digit long to be a year
separator = "."
{dlen=1, tail=2, regexp="^(%d%d%d%d?)(%s.+)"},
end
-- if whole string is a number (1-4 digit long) than it will be interpreted as a year
{dlen=1, tail=0, regexp="^(%d%d?%d?%d?)$"},
local format = "H" .. separator .. "i"
}
if second ~= nil then
format = format .. separator .. "s"
-- create datevec based on which variables are provided
local input = mw.text.trim( frame.args[1] )
local datevec = {'','','','','',''}
local tail = ''
local vec, pat
local debugStr = ''
for i, pat in ipairs( pattern ) do
vec = {input:match( pat.regexp )}
if vec and vec[1]~=nil then
for j=1,pat.dlen do
datevec[j] = vec[j]
end
end
if pat.tail>0 and vec[pat.tail]~=nil then
if lang == "bn"
tail = vec[pat.tail]
or lang == "bpy"
or lang == "kn"
or lang == "hi"
or lang == "mr"
or lang == "new"
or lang == "pa"
or lang == "gu"
or lang == "lo"
or lang == "or"
or lang == "bo"
then
-- Do nothing
-- These languages are handled by {{#time}} directly
elseif lang == "ckb"
or lang == "ks"
or lang == "arabic-indic"
then
lang = "ks"
elseif lang == "fa"
or lang == "glk"
or lang == "mzn"
or lang == "ur"
then
lang = "fa"
else
-- Other languages just reset to nil
lang = nil
end
end
debugStr = string.format(' (%i)', i)
-- {{#time: format|input|lang}}
break
retval = retval .. frame:callParserFunction( "#time", { format, input, lang } )
end
end
end
if datevec[1]=='' or datevec[1]==nil then
-- quickly return if input does not look like date (it could be a template)
return input
end
end


return retval
-- call p._Date function to format date string
local succeded, datestr
succeded, datestr = pcall(
D._Date, -- call p._Date function with following arguments:
datevec, -- {year, month, day, hour, minute, second} strings packed in a vector
frame.args["lang"], -- language
frame.args["case"]  or '', -- allows to specify grammatical case for the month for languages that use them
frame.args["class"] or 'dtstart', -- allows to set the html class of the time node where the date is included. This is useful for microformats.
frame.args["trim_year"] or '100-999'-- by default pad one and 2 digit years to be 4 digit long, while keeping 3 digit years as is
)
if succeded and datestr~='' then
tail = mw.ustring.gsub(' ' .. tail, ' +', ' ')
return mw.text.trim( datestr .. tail)
else
-- in case of errors return the original string
return input
end
end
end


return p
return p

Revision as of 03:45, 30 December 2014

Module documentation[ create · purge ]
This documentation is transcluded from Module:ISOdate/doc.
--[[  
 
This module is intended for processing of date strings.

Please do not modify this code without applying the changes first at Module:Date/sandbox and testing 
at Module:Date/sandbox/testcases and Module talk:Date/sandbox/testcases.

Authors and maintainers:
* User:Parent5446 - original version of the function mimicking template:ISOdate
* User:Jarekt - original version of the functions mimicking template:Date and template:ISOyear

]]

 
local p = {}

-- =======================================
-- === Dependencies ======================
-- =======================================
local D = require('Module:Date')

--[[
ISOyear
 
This function returns year part of date string.
 
Usage:
{{#invoke:Date|ISOyear|target_string}}
 
Parameters
    1: The date string 
 
Error Handling:
   If the string does not look like it contain the year than the function will not return anything.
   That is the preferred treatment for the template:Creator which is the main (only?) template calling it.
]]
function p.ISOyear( frame )
	local input = frame.args[1]
	if not input then
		input = frame.args["s"]
	end
	input = mw.text.trim( input )
    
	-- if empty string then return it
	if input == "" then
		return input
	end
    
	-- if number then return it
	if tonumber( input ) then
		return mw.ustring.format( '%04i', input )
	end
    
	-- otherwise use regular expression match
	input = mw.ustring.match( input, '^(-?%d%d?%d?%d?)-' )
	if input then
		return mw.ustring.format( '%04i', input )
	else
		return ''
	end
end

--[[
ISOdate
 
This function is the core part of the ISOdate template. 
 
Usage:
{{#invoke:Date|ISOdate|target_string|lang=}}
 
Parameters:
     1: The date string 
  lang: The language to display it in
  form: Language format (genitive, etc.) for some languages
 class: CSS class for the <time> node

 Error Handling:
   If the string does not look like it contain the proper ISO date than the function will return the original string.
   
   That is the preferred treatment for the template:Information (and similar templates) which calling it.
]]
function p.ISOdate(frame)

	-- pattern: regexp - regular expresion to test; dlen - number of date elements; tail = which element is a "tail" if any
	-- regexp hints:
	--  1) Strings starting with "^" and ending with "$" indicate whole string match
	--  2) optional tail part copied as-is and following the main parsed part of the date have to be separated from the date by a whitespace, so "(\s.+)?"
	local pattern = {
		-- strings starting with YYYY-MM-DD HH:MM:SS. Year 4 digits (if we know seconds than it was within the last 100 years), the rest 1-2
		-- date and time can be separated by space or "T" and there could be a "Z" on the end indicating "Zulu" time zone
		{dlen=6, tail=7, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?):(%d%d?)Z?(%s.*)"}, 
		{dlen=6, tail=0, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?):(%d%d?)Z?$"}, 
		-- strings starting with YYYY-MM-DD HH:MM. Year 4 digits, the rest 1-2
		{dlen=5, tail=6, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?)(%s.+)"},
		{dlen=5, tail=0, regexp="^(%d%d%d%d)-(%d%d?)-(%d%d?)[ T](%d%d?):(%d%d?)$"},
		-- strings starting with YYYY-MM-DD. Year 3-4 digits, the rest 1-2
		{dlen=3, tail=4, regexp="^(%d%d?%d?%d?)-(%d%d?)-(%d%d?)(%s.+)"},
		{dlen=3, tail=0, regexp="^(%d%d?%d?%d?)-(%d%d?)-(%d%d?)$"},
		-- strings starting with YYYY-MM. Year 3-4 digits, month 1-2 digits
		{dlen=2, tail=3, regexp="^(%d%d?%d?%d?)-(%d%d?)(%s.+)"}, 
		{dlen=2, tail=0, regexp="^(%d%d?%d?%d?)-(%d%d)$"}, 
		-- string starts with a number -> it has to be 3 or 4 digit long to be a year
		{dlen=1, tail=2, regexp="^(%d%d%d%d?)(%s.+)"},	
		 -- if whole string is a number (1-4 digit long) than it will be interpreted as a year
		{dlen=1, tail=0, regexp="^(%d%d?%d?%d?)$"},
	}
	
	-- create datevec based on which variables are provided
	local input = mw.text.trim( frame.args[1] )
	local datevec = {'','','','','',''}
	local tail = ''
	local vec, pat
	local debugStr = ''
	for i, pat in ipairs( pattern ) do
		vec = {input:match( pat.regexp )}
		if vec and vec[1]~=nil then
			for j=1,pat.dlen do
				datevec[j] = vec[j]
			end
			if pat.tail>0 and vec[pat.tail]~=nil then
				tail = vec[pat.tail]
			end
			debugStr = string.format(' (%i)', i)
			break
		end
	end	
	if datevec[1]=='' or datevec[1]==nil then
		-- quickly return if input does not look like date (it could be a template)
		return input
	end

	-- call p._Date function to format date string
	local succeded, datestr
	succeded, datestr = pcall( 
		D._Date,							-- call p._Date function with following arguments:
		datevec,							-- {year, month, day, hour, minute, second} strings packed in a vector
		frame.args["lang"],					-- language
		frame.args["case"]  or '',			-- allows to specify grammatical case for the month for languages that use them
		frame.args["class"] or 'dtstart',	-- allows to set the html class of the time node where the date is included. This is useful for microformats.
		frame.args["trim_year"] or '100-999'-- by default pad one and 2 digit years to be 4 digit long, while keeping 3 digit years as is
	)
	if succeded and datestr~='' then
		tail = mw.ustring.gsub(' ' .. tail, ' +', ' ')
		return mw.text.trim( datestr .. tail)
	else
		-- in case of errors return the original string
		return input
	end	
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.