Modul:Vorlage:Auflistung: Unterschied zwischen den Versionen
K (Schützte „Modul:Vorlage:Auflistung“: https://de.wikipedia.org/w/index.php?title=Wikipedia:Administratoren/Anfragen&curid=6974524&diff=204979448&oldid=204979229 ([Bearbeiten=Nur Sichter] (unbeschränkt) [Verschieben=Nur Administratoren] (unbeschränkt))) |
(2020-11-02) |
||
| Zeile 1: | Zeile 1: | ||
local HorizontalList = { suite = "HorizontalList", | local HorizontalList = { suite = "HorizontalList", | ||
serial = "2020- | serial = "2020-11-02", | ||
item = 100938243 } | item = 100938243 } | ||
-- Horizontal list of items by HTML/CSS list | --[=[ | ||
Horizontal list of items by HTML/CSS list | |||
]=] | |||
local CSS = { classesBlock = { }, | local CSS = { classesBlock = { }, | ||
classesSep | classesPrefix = { }, | ||
classesSep = { } } | |||
local Failsafe = HorizontalList | local Failsafe = HorizontalList | ||
HorizontalList.f = function ( all, altogether, apart, frame ) | HorizontalList.f = function ( all, ahead, altogether, apart, frame ) | ||
-- Generate horizontal list from wikitext | -- Generate horizontal list from wikitext | ||
-- Parameter: | -- Parameter: | ||
-- all -- string, with wikitext | -- all -- string, with wikitext | ||
-- each line starting with one of * or # | -- each line starting with one of * or # | ||
-- ahead -- string, to prefix if desired | |||
-- altogether -- true, if nowrap around each regular item | -- altogether -- true, if nowrap around each regular item | ||
-- apart -- string, with separator, if desired | -- apart -- string, with separator, if desired | ||
| Zeile 42: | Zeile 46: | ||
end -- for i | end -- for i | ||
if got then | if got then | ||
local start | |||
if type( ahead ) == "string" and ahead ~= "" then | |||
start = ahead | |||
end | |||
r = HorizontalList.fiat( got, | r = HorizontalList.fiat( got, | ||
list, | list, | ||
start, | |||
altogether, | altogether, | ||
apart, | apart, | ||
| Zeile 63: | Zeile 72: | ||
HorizontalList.fiat = function ( all, advance, altogether, apart, frame ) | HorizontalList.fiat = function ( all, advance, ahead, | ||
altogether, apart, frame ) | |||
-- Generate horizontal list from item sequence | -- Generate horizontal list from item sequence | ||
-- Parameter: | -- Parameter: | ||
-- all -- table, with sequence of items | -- all -- table, with sequence of items | ||
-- each item is a string or a mw.html object | -- each item is a string or a mw.html object | ||
-- ahead -- string, to prefix if desired | |||
-- advance -- true, if ordered list requested | -- advance -- true, if ordered list requested | ||
-- altogether -- true, if nowrap around each item | -- altogether -- true, if nowrap around each item | ||
| Zeile 95: | Zeile 106: | ||
es:addClass( v ) | es:addClass( v ) | ||
end -- for k, v | end -- for k, v | ||
end | |||
if type( ahead ) == "string" then | |||
e = mw.html.create( "li" ) | |||
:wikitext( ahead ) | |||
for k, v in pairs( CSS.classesPrefix ) do | |||
e:addClass( v ) | |||
end -- for k, v | |||
ou:newline() | |||
:node( e ) | |||
end | end | ||
for i = 1, #all do | for i = 1, #all do | ||
| Zeile 151: | Zeile 171: | ||
-- -- table, with title object | -- -- table, with title object | ||
-- classesBlock -- class(es) for block element | -- classesBlock -- class(es) for block element | ||
-- -- string, with class(es) | |||
-- -- table, with particular mapping | |||
-- classesPrefix -- class(es) for prefix element | |||
-- -- string, with class(es) | -- -- string, with class(es) | ||
-- -- table, with particular mapping | -- -- table, with particular mapping | ||
| Zeile 265: | Zeile 288: | ||
p.f = function ( frame ) | p.f = function ( frame ) | ||
-- Template call | -- Template call | ||
HorizontalList.first( { styles | HorizontalList.first( { styles = frame.args.styles, | ||
classesBlock = frame.args.classesBlock, | classesBlock = frame.args.classesBlock, | ||
classesSep | classesPrefix = frame.args.classesPrefix, | ||
classesSep = frame.args.classesSep } ) | |||
return HorizontalList.f( frame.args[ 1 ], | return HorizontalList.f( frame.args[ 1 ], | ||
frame.args.prefix, | |||
frame.args.nowrap == "1", | frame.args.nowrap == "1", | ||
frame.args.sep, | frame.args.sep, | ||
Version vom 2. November 2020, 17:49 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Vorlage:Auflistung/doc erstellt werden
local HorizontalList = { suite = "HorizontalList",
serial = "2020-11-02",
item = 100938243 }
--[=[
Horizontal list of items by HTML/CSS list
]=]
local CSS = { classesBlock = { },
classesPrefix = { },
classesSep = { } }
local Failsafe = HorizontalList
HorizontalList.f = function ( all, ahead, altogether, apart, frame )
-- Generate horizontal list from wikitext
-- Parameter:
-- all -- string, with wikitext
-- each line starting with one of * or #
-- ahead -- string, to prefix if desired
-- altogether -- true, if nowrap around each regular item
-- apart -- string, with separator, if desired
-- frame -- object, if available
-- Returns string
local r
if type( all ) == "string" then
local story = mw.text.trim( all )
local s = story:sub( 1, 1 )
if s == "#" or s == "*" then
local list = ( s == "#" )
local items, got
if list then
s = "\n%s*#%s*"
else
s = "\n%s*%*%s*"
end
items = mw.text.split( story:sub( 2 ), s )
for i = 1, #items do
s = mw.text.trim( items[ i ] )
if s ~= "" then
got = got or { }
table.insert( got, s )
end
end -- for i
if got then
local start
if type( ahead ) == "string" and ahead ~= "" then
start = ahead
end
r = HorizontalList.fiat( got,
list,
start,
altogether,
apart,
frame )
else
r = ""
end
else
r = story
end
elseif all then
r = tostring( all )
else
r = ""
end
return r
end -- HorizontalList.f()
HorizontalList.fiat = function ( all, advance, ahead,
altogether, apart, frame )
-- Generate horizontal list from item sequence
-- Parameter:
-- all -- table, with sequence of items
-- each item is a string or a mw.html object
-- ahead -- string, to prefix if desired
-- advance -- true, if ordered list requested
-- altogether -- true, if nowrap around each item
-- apart -- string, with separator, if desired
-- frame -- object, if available
-- Returns string
local r
if type( all ) == "table" then
local e
if #all > 1 then
local es, ou, s
if advance then
s = "ol"
else
s = "ul"
end
ou = mw.html.create( s )
for k, v in pairs( CSS.classesBlock ) do
ou:addClass( v )
end -- for k, v
if type( apart ) == "string" then
es = mw.html.create( "span" )
:node( mw.html.create( "span" )
:attr( "aria-hidden", "true" )
:wikitext( apart ) )
for k, v in pairs( CSS.classesSep ) do
es:addClass( v )
end -- for k, v
end
if type( ahead ) == "string" then
e = mw.html.create( "li" )
:wikitext( ahead )
for k, v in pairs( CSS.classesPrefix ) do
e:addClass( v )
end -- for k, v
ou:newline()
:node( e )
end
for i = 1, #all do
e = mw.html.create( "li" )
s = all[ i ]
if type( s ) == "table" then
e:node( s )
else
e:wikitext( tostring( s ) )
end
if es and i < #all then
e:node( es )
end
if altogether then
e:css( "white-space", "nowrap" )
end
ou:newline()
:node( e )
end -- for i
if type( frame ) ~= "table" then
frame = mw.getCurrentFrame()
end
if CSS.styles then
r = frame:extensionTag( "templatestyles",
nil,
{ src = CSS.styles } )
else
r = ""
end
r = r .. tostring( ou )
else
r = all[ 1 ]
if altogether then
if type( r ) == "table" then
r:css( "white-space", "nowrap" )
else
r = mw.html.create( "span" )
:css( "white-space", "nowrap" )
:wikitext( tostring( r ) )
end
end
r = tostring( r )
end
end
return r or ""
end -- HorizontalList.fiat()
HorizontalList.first = function ( arglist )
-- Configure CSS environment
-- Parameter:
-- arglist -- table, with optional components
-- styles -- templatestyles page
-- -- string, with name
-- -- table, with title object
-- classesBlock -- class(es) for block element
-- -- string, with class(es)
-- -- table, with particular mapping
-- classesPrefix -- class(es) for prefix element
-- -- string, with class(es)
-- -- table, with particular mapping
-- classesSep -- class(es) for separator element
-- -- string, with class(es)
-- -- table, with particular mapping
if type( arglist ) == "table" then
local s, val
for k, v in pairs( CSS ) do
if type( v ) == "table" then
val = arglist[ k ]
s = type( val )
if s == "string" then
s = mw.text.trim( val )
if s ~= "" then
table.insert( v, s )
end
elseif s == "table" then
for kk, vv in pairs( val ) do
if type( vv ) == "string" then
s = mw.text.trim( vv )
if s == "" then
s = nil
end
else
s = nil
end
v[ kk ] = s
end -- for kk, vvv
end
end
end -- for k, v
val = arglist.styles
s = type( val )
if s == "string" then
s = mw.text.trim( val )
elseif s == "table" and
type( val.prefixedText ) == "string" and
type( val.exists ) == "boolean" and
val.exists then
s = val.prefixedText
else
s = false
end
if s and s:match( ".+:.+%.css$") then
CSS.styles = s
end
end
end -- HorizontalList.first()
Failsafe.failsafe = function ( atleast )
-- Retrieve versioning and check for compliance
-- Precondition:
-- atleast -- string, with required version
-- or "wikidata" or "~" or "@" or false
-- Postcondition:
-- Returns string -- with queried version/item, also if problem
-- false -- if appropriate
-- 2020-08-17
local since = atleast
local last = ( since == "~" )
local linked = ( since == "@" )
local link = ( since == "item" )
local r
if last or link or linked or since == "wikidata" then
local item = Failsafe.item
since = false
if type( item ) == "number" and item > 0 then
local suited = string.format( "Q%d", item )
if link then
r = suited
else
local entity = mw.wikibase.getEntity( suited )
if type( entity ) == "table" then
local seek = Failsafe.serialProperty or "P348"
local vsn = entity:formatPropertyValues( seek )
if type( vsn ) == "table" and
type( vsn.value ) == "string" and
vsn.value ~= "" then
if last and vsn.value == Failsafe.serial then
r = false
elseif linked then
if mw.title.getCurrentTitle().prefixedText
== mw.wikibase.getSitelink( suited ) then
r = false
else
r = suited
end
else
r = vsn.value
end
end
end
end
end
end
if type( r ) == "nil" then
if not since or since <= Failsafe.serial then
r = Failsafe.serial
else
r = false
end
end
return r
end -- Failsafe.failsafe()
-- Export
local p = { }
p.f = function ( frame )
-- Template call
HorizontalList.first( { styles = frame.args.styles,
classesBlock = frame.args.classesBlock,
classesPrefix = frame.args.classesPrefix,
classesSep = frame.args.classesSep } )
return HorizontalList.f( frame.args[ 1 ],
frame.args.prefix,
frame.args.nowrap == "1",
frame.args.sep,
frame )
end -- p.f
p.failsafe = function ( frame )
-- Versioning interface
local s = type( frame )
local since
if s == "table" then
since = frame.args[ 1 ]
elseif s == "string" then
since = frame
end
if since then
since = mw.text.trim( since )
if since == "" then
since = false
end
end
return Failsafe.failsafe( since ) or ""
end -- p.failsafe
p.HorizontalList = function ()
-- Module interface
return HorizontalList
end
p.Auflistung = function ()
-- Module interface @dewiki
return HorizontalList
end
return p