„Modul:URIutil/urn“ – Versionsunterschied
Erscheinungsbild
[gesichtete Version] | [gesichtete Version] |
Inhalt gelöscht Inhalt hinzugefügt
2019-07-19 |
2021-11-21 |
||
Zeile 1: | Zeile 1: | ||
local Serial = " |
local Serial = "2021-11-21" |
||
--[=[ URIutil/urn |
--[=[ URIutil/urn |
||
mw.loadData() table with URN namespaces and resolvers |
mw.loadData() table with URN namespaces and resolvers |
||
Zeile 9: | Zeile 9: | ||
[":"] = "^(%a+)[%-:]", |
[":"] = "^(%a+)[%-:]", |
||
at = { |
at = { |
||
["*"] = " |
["*"] = "https://resolver.obvsg.at/$1" }, |
||
-- ch = de |
|||
de = { |
de = { |
||
dnb = " |
dnb = "https://nbn-resolving.de/$1", |
||
halle = " |
halle = "https://digital.bibliothek.uni-halle.de/urn/$1", |
||
kiel = " |
kiel = "https://dibiki.ub.uni-kiel.de/resolver?urn=$1", |
||
miami = " |
miami = "https://miami.uni-muenster.de/resolver/$1", |
||
mdz = " |
mdz = "https://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=$1", |
||
["*"] = " |
["*"] = "https://nbn-resolving.de/$1" }, |
||
fi = { |
|||
["*"] = "https://urn.fi/$1" }, |
|||
nl = { |
|||
["*"] = "https://resolver.kb.nl/resolve?urn=$1" }, |
|||
no = { |
no = { |
||
["*"] = " |
["*"] = "https://urn.nb.no/$1" }, |
||
se = { |
se = { |
||
["*"] = " |
["*"] = "https://urn.kb.se/resolve?urn=$1" }, |
||
si = { |
si = { |
||
["*"] = " |
["*"] = "https://www.dlib.si/details/$1" }, |
||
["*"] = " |
["*"] = "https://nbn-resolving.de/$1" |
||
}, |
}, |
||
isbn = true, |
isbn = true, |
||
issn = true |
issn = true |
||
}, |
}, |
||
sns = ":3gpp:cablelabs:cgi:clei:dgiwg:dvb:ebu:epc:epcglobal:example:fdc:fipa:geant:ietf:iptc:isan:isbn:iso:issn:ivis:lex:liberty:mace:mpeg:nbn:nena:newsml:nfc:nzl:oasis:ogc:ogf:oid:oipf:oma:pin:publicid:s1000d:schac:service:smpte:swift:tva:uci:ucode:uuid:web3d:xmlorg:xmpp:", |
sns = ":3gpp:cablelabs:cgi:clei:dgiwg:dvb:ebu:epc:epcglobal:example:fdc:fipa:geant:ietf:iptc:isan:isbn:iso:issn:ivis:lex:liberty:mace:mpeg:nbn:nena:newsml:nfc:nzl:oasis:ogc:ogf:oid:oipf:oma:pin:publicid:s1000d:schac:service:smpte:swift:tva:uci:ucode:uuid:web3d:xmlorg:xmpp:", |
||
failsafe = Serial |
failsafe = Serial |
||
}; |
}; |
Version vom 24. November 2021, 18:00 Uhr
Vorlagenprogrammierung | Diskussionen | Lua | Test | Unterseiten | |||
Modul | Deutsch | English
|
Modul: | Dokumentation |
Diese Seite enthält Code in der Programmiersprache Lua. Einbindungszahl Cirrus
Dies ist die (produktive) Mutterversion eines global benutzten Lua-Moduls.
Wenn die serial-Information nicht übereinstimmt, müsste eine Kopie hiervon in das lokale Wiki geschrieben werden.
Wenn die serial-Information nicht übereinstimmt, müsste eine Kopie hiervon in das lokale Wiki geschrieben werden.
Versionsbezeichnung auf WikiData:
2022-04-27
Updating notwendig
(lokal:2021-11-21
)local Serial = "2021-11-21"
--[=[ URIutil/urn
mw.loadData() table with URN namespaces and resolvers
]=]
return {
resolver = {
nbn = {
[":"] = "^(%a+)[%-:]",
at = {
["*"] = "https://resolver.obvsg.at/$1" },
-- ch = de
de = {
dnb = "https://nbn-resolving.de/$1",
halle = "https://digital.bibliothek.uni-halle.de/urn/$1",
kiel = "https://dibiki.ub.uni-kiel.de/resolver?urn=$1",
miami = "https://miami.uni-muenster.de/resolver/$1",
mdz = "https://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=$1",
["*"] = "https://nbn-resolving.de/$1" },
fi = {
["*"] = "https://urn.fi/$1" },
nl = {
["*"] = "https://resolver.kb.nl/resolve?urn=$1" },
no = {
["*"] = "https://urn.nb.no/$1" },
se = {
["*"] = "https://urn.kb.se/resolve?urn=$1" },
si = {
["*"] = "https://www.dlib.si/details/$1" },
["*"] = "https://nbn-resolving.de/$1"
},
isbn = true,
issn = true
},
sns = ":3gpp:cablelabs:cgi:clei:dgiwg:dvb:ebu:epc:epcglobal:example:fdc:fipa:geant:ietf:iptc:isan:isbn:iso:issn:ivis:lex:liberty:mace:mpeg:nbn:nena:newsml:nfc:nzl:oasis:ogc:ogf:oid:oipf:oma:pin:publicid:s1000d:schac:service:smpte:swift:tva:uci:ucode:uuid:web3d:xmlorg:xmpp:",
failsafe = Serial
};