Module:Search/sandbox: Difference between revisions
Appearance
Content deleted Content added
move over to https |
use module to keep classes in a certain place |
||
Line 12: | Line 12: | ||
end |
end |
||
local function addlink( |
local function addlink(url, unabbreviated, abbreviation) |
||
return '[' .. url .. ' <abbr title="' .. unabbreviated .. '">' .. abbreviation ..'</abbr>]' |
|||
local item = ll:tag('li') |
|||
⚫ | |||
item:tag('abbr') |
|||
:attr('title', a) |
|||
⚫ | |||
⚫ | |||
end |
end |
||
Line 31: | Line 26: | ||
local ret = mw.html.create('div') |
local ret = mw.html.create('div') |
||
:addClass('template-search') |
:addClass('template-search') |
||
:addClass('plainlist') |
|||
:addClass('plainlinks') |
:addClass('plainlinks') |
||
ll = ret:tag('ul') |
|||
local list1 = { |
|||
addlink('//en.wikipedia.org/w/index.php?title=Special:Search&search=' .. ssenc, 'Wikipedia', 'wp') |
|||
} |
|||
if long then |
if long then |
||
table.insert(list1, addlink('https://www.google.com/search?q=site%3Awikipedia.org+' .. ssenc, 'Wikipedia over Google', 'gwp')) |
|||
end |
end |
||
table.insert(list1, addlink('https://www.google.com/search?q=' .. ssenc, 'Google', 'g')) |
|||
if long then |
if long then |
||
table.insert(list1, addlink('https://www.bing.com/search?q=site%3Awikipedia.org+' .. ssenc, 'Wikipedia over Bing', 'bwp')) |
|||
table.insert(list1, addlink('https://www.bing.com/search?q=' .. ssenc, 'Bing', 'b')) |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
else |
|||
⚫ | |||
end |
end |
||
local list2 = long and { |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
} or { |
|||
⚫ | |||
} |
|||
local make_list = require('Module:List').makeList |
|||
⚫ | |||
:wikitext(make_list('unbulleted', list1)) |
|||
⚫ | |||
:wikitext(make_list('unbulleted', list2)) |
|||
⚫ | |||
return frame:extensionTag{ |
return frame:extensionTag{ |
Revision as of 02:50, 2 December 2022
![]() | This is the module sandbox page for Module:Search (diff). |
![]() | This module depends on the following other modules: |
![]() | This module uses TemplateStyles: |
Implements {{search}}
-- This module implements {{search}}
local p = {}
local ll = ''
local function urlencode(text)
-- Return equivalent of {{urlencode:text}}.
local function byte(char)
return string.format('%%%02X', string.byte(char))
end
return text:gsub('[^ %w%-._]', byte):gsub(' ', '+')
end
local function addlink(url, unabbreviated, abbreviation)
return '[' .. url .. ' <abbr title="' .. unabbreviated .. '">' .. abbreviation ..'</abbr>]'
end
function p.main(frame)
local args = require('Module:Arguments').getArgs(frame, {
wrappers = 'Template:Search'
})
local ss = args[1] or 'example phrase'
local ssenc = urlencode(ss)
local long = (args.long or '') ~= ''
local ret = mw.html.create('div')
:addClass('template-search')
:addClass('plainlinks')
local list1 = {
addlink('//en.wikipedia.org/w/index.php?title=Special:Search&search=' .. ssenc, 'Wikipedia', 'wp')
}
if long then
table.insert(list1, addlink('https://www.google.com/search?q=site%3Awikipedia.org+' .. ssenc, 'Wikipedia over Google', 'gwp'))
end
table.insert(list1, addlink('https://www.google.com/search?q=' .. ssenc, 'Google', 'g'))
if long then
table.insert(list1, addlink('https://www.bing.com/search?q=site%3Awikipedia.org+' .. ssenc, 'Wikipedia over Bing', 'bwp'))
table.insert(list1, addlink('https://www.bing.com/search?q=' .. ssenc, 'Bing', 'b'))
end
local list2 = long and {
addlink('https://www.britannica.com/search?nop&query=' .. ssenc, 'Encyclopaedia Britannica', 'eb'),
addlink('https://www.bartleby.com/cgi-bin/texis/webinator/65search?query=' .. ssenc, 'Columbia Encyclopedia', 'co'),
addlink('https://www.google.com/search?q=site%3Ahttp%3A%2F%2Fwww.pcmag.com%2Fencyclopedia_term%2F+' .. ssenc, 'PC Magazine Encyclopedia over Google', 'gct'),
addlink('https://scienceworld.wolfram.com/search/index.cgi?as_q=' .. ssenc, 'World of Science', 'sw'),
addlink('https://archive.org/search.php?query=' .. ssenc, 'Internet Archive', 'arc'),
addlink('https://babel.hathitrust.org/cgi/ls?field1=ocr;q1=' .. ssenc .. ';a=srchls;lmt=ft', 'HathiTrust', 'ht')
} or {
addlink('https://www.bing.com/search?q=' .. ssenc, 'Bing', 'b')
}
local make_list = require('Module:List').makeList
ret:wikitext('(')
:wikitext(make_list('unbulleted', list1))
:wikitext(' | ')
:wikitext(make_list('unbulleted', list2))
:wikitext(')')
return frame:extensionTag{
name = 'templatestyles', args = { src = 'Module:Search/styles.css' }
} .. tostring(ret)
end
return p