Module:Official website: Difference between revisions

Content deleted Content added
per talk page comment
If using Wikidata property, add an icon/link in the same format as Module:EditAtWikidata, as per discussion at Template talk:Official website. Tested with sandbox, module and template test cases, and previews in articles.
Line 71:
return e1
end
return ws1._index < ws2._index
end)
local url = quickPcall(function ()
Line 87:
-- Render the URL link, plus other visible output.
local function renderUrl(options)
if not options.url and not options.wikidataurl then
return '<strong class="error">' ..
'No URL found. Please specify a URL here or add one to Wikidata.' ..
Line 95:
ret[#ret + 1] = string.format(
'<span class="official-website">%s</span>',
makeUrl(options.url or options.wikidataurl, options.display)
)
if options.wikidataurl and not options.url then
local entity = mw.wikibase.getEntityObject() or {}
local qid = entity.id
if qid then
ret[#ret + 1] = '[[File:Blue pencil.svg |frameless |text-top |10px |alt=Edit this at Wikidata |link=https://www.wikidata.org/wiki/' .. qid .. '#P856|Edit this at Wikidata]]'
end
end
if options.format == 'flash' then
ret[#ret + 1] = mw.getCurrentFrame():expandTemplate{
Line 117 ⟶ 124:
if not url and not wikidataurl then
category = 'Official website missing URL'
elseif not url and wikidataurl then
return ''
elseif url and wikidataurl then
Line 130 ⟶ 137:
 
function p._main(args)
local url = args[1] or args.___URL or args.url or wikidataurl
local wikidataurl = fetchWikidataUrl()
local url = args[1] or args.___URL or args.url or wikidataurl
local formattedUrl = renderUrl{
url = url,
wikidataurl = wikidataurl,
display = args[2] or args.name or 'Official website',
mobileformat = args.mobileformat,
formatmobile = args.formatmobile
}
return formattedUrl .. renderTrackingCategory(url, wikidataurl)