Open main menu
Home
Random
Donate
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Vgrtbl
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local p = {} local lang = mw.language.getContentLanguage() local function looksLikeYear(str) local success, result = pcall(lang.formatDate, lang, 'Y', '1-1-' .. str) return success and tonumber(result) == tonumber(str) end function p._text(dateText, name, v, s) local retval = '<span style="white-space:normal;">' local success, result = pcall(lang.formatDate, lang, 'c', dateText) if looksLikeYear(dateText) or not success then retval = retval .. dateText else if s then retval = retval .. '<span style="display:none">' .. lang:formatDate('Ym', dateText) .. '</span>' end local success2, result2 = pcall(lang.formatDate, lang, 'c', '1 ' .. dateText) if success2 and result == result2 then retval = retval .. lang:formatDate(v == '0' and 'Y-m' or 'F Y', dateText) else if s then retval = retval .. '<span style="display:none">' .. lang:formatDate('Ymd', dateText) .. '</span>' end local formatString if v == '0' then formatString = 'Y-m-d' elseif v == '2' then formatString = 'j F Y' else formatString = 'F j, Y' end retval = retval .. lang:formatDate(formatString, dateText) end end return retval .. '<small> (' .. name .. ')</small></span>' end function p.text(frame) local args = frame:getParent().args return p._text(args[1], args[2], args.v, args.s) end local function tryDate(str) local success, result = pcall(lang.formatDate, lang, 'c', str) if success then return result else return str end end function p.main(frame) local args = frame.args[1] and frame.args or frame:getParent().args local v = args.v or 1 if args.c == '0' then -- If collapse mode is off local retval = p._text(args[2], args[1], v, 1) local i = 3 while args[i] and mw.text.trim(args[i]) ~= '' do retval = retval .. '<br />' .. p._text(args[i + 1], args[i], v) i = i + 2 end return retval else -- If collapse mode is on local dates = {} local dateOrder = {} local i = 1 while args[i] and mw.text.trim(args[i]) ~= '' do local d = tryDate(args[i + 1]) if dates[d] then table.insert(dates[d], args[i]) else table.insert(dateOrder, d) dates[d] = { display = args[i + 1], args[i] } end i = i + 2 end local retval = '' for key, val in ipairs(dateOrder) do if key == 1 then retval = p._text(dates[val].display, table.concat(dates[val], '/'), v, 1) else retval = retval .. '<br />' .. p._text(dates[val].display, table.concat(dates[val], '/'), v) end end return retval end end return p
Summary:
Please note that all contributions to Stockhub may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Stockhub:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:Module other
(
edit
)
Template:Module rating
(
edit
)
Template:Ombox
(
edit
)
Template:Tl
(
edit
)
Module:Arguments
(
edit
)
Module:Message box
(
edit
)
Module:Message box/configuration
(
edit
)
Module:Message box/ombox.css
(
edit
)
Module:Vgrtbl/doc
(
edit
)
Module:Yesno
(
edit
)