More languages
More actions
m (Removed restriction on date formatting for news citations) |
m (Attempt to define a more general "author" argument for the module) |
||
Line 12: | Line 12: | ||
local pframe = frame:getParent() | local pframe = frame:getParent() | ||
local | local Author = pframe.args.author | ||
pframe.args.journalist = Author | |||
local Date = pframe.args['date'] | local Date = pframe.args['date'] | ||
local Title = pframe.args.title | local Title = pframe.args.title | ||
Line 22: | Line 23: | ||
local Quote = pframe.args.quote | local Quote = pframe.args.quote | ||
if is_set ( | if is_set (Author) then | ||
if is_set (Date) then | if is_set (Date) then | ||
first_part = | first_part = Author .. " (" .. Date .. ")." | ||
else | else | ||
first_part = | first_part = Author .. "." | ||
end | end | ||
else | else | ||
Line 36: | Line 37: | ||
Title = "[" .. URL .. " " .. "\"" .. Title .. "\"" .. "]" | Title = "[" .. URL .. " " .. "\"" .. Title .. "\"" .. "]" | ||
end | end | ||
if not is_set ( | if not is_set (Author) then | ||
if is_set (Date) then | if is_set (Date) then | ||
Title = Title .. " (" .. Date .. ")." | Title = Title .. " (" .. Date .. ")." |
Revision as of 14:52, 31 March 2022
local p = {}
local function is_set (var)
return not (var == nil or var == '');
end
local function italics (var)
return "''" .. var .. "''"
end
function p.cite( frame )
local pframe = frame:getParent()
local Author = pframe.args.author
pframe.args.journalist = Author
local Date = pframe.args['date']
local Title = pframe.args.title
local URL = pframe.args.url
local Newspaper = pframe.args.newspaper
local ArchiveURL = pframe.args['archive-url']
local ArchiveDate = pframe.args['archive-date']
local Retrieved = pframe.args.retrieved
local Quote = pframe.args.quote
if is_set (Author) then
if is_set (Date) then
first_part = Author .. " (" .. Date .. ")."
else
first_part = Author .. "."
end
else
first_part = ""
end
if is_set (Title) then
if is_set (URL) then
Title = "[" .. URL .. " " .. "\"" .. Title .. "\"" .. "]"
end
if not is_set (Author) then
if is_set (Date) then
Title = Title .. " (" .. Date .. ")."
else
Title = Title .. "."
end
end
second_part = Title
else
second_part = ""
end
if is_set(Newspaper) then
third_part = "''" .. Newspaper .. "''."
else
third_part = ""
end
if is_set(ArchiveURL) then
if is_set(ArchiveDate) then
fourth_part = "[" .. ArchiveURL .. " " .. "Archived" .. "]" .. " " .. " from the original on" .. " " .. ArchiveDate .. "."
else
fourth_part = "[" .. ArchiveURL .. " " .. "Archived" .. "]" .. " from the original."
end
else
fourth_part = ""
end
if is_set (Retrieved) then
fifth_part = "Retrieved" .. " " .. Retrieved .. "."
else
fifth_part = ""
end
if is_set (Quote) then
Quote = "“" .. Quote .. "”"
local div = mw.html.create ('div')
div
:attr("style", "width:80%; margin-left:10%;")
:wikitext(Quote)
local br = mw.html.create ('br', selfClosing)
first_part = italics(tostring(div)) .. tostring(br) .. first_part
end
if is_set (first_part) then
first_part = first_part .. " "
end
if is_set (second_part) then
second_part = second_part .. " "
end
if is_set (third_part) then
third_part = third_part .. " "
end
if is_set (fourth_part) then
fourth_part = fourth_part .. " "
end
Render = first_part .. second_part .. third_part .. fourth_part .. fifth_part
return Render
end
return p