Mòdul:Biblio/Obratge
Aparença
La documentacion d'utilizacion d'aquel modul se pòt crear a Mòdul:Biblio/Obratge/ús
local Ouvrage = { }
local Commun = require( 'Module:Biblio/Comun' )
local References = require( 'Module:Biblio/Referéncias' )
local Outils = require( 'Module:Aisinas' )
local TableBuilder = require( 'Module:TableBuilder' )
local Langue = require( 'Module:Lenga' )
function Ouvrage.chapitre( args )
-- validArg renvoie le premier paramètre non vide, ou nil s'ils sont tous vides.
-- Seul les noms des paramètres doivent être transmis à la fonction.
local validArg = function ( ... ) return Commun.validTextArg( args, ... ) end
-- titreChap est un paramètre différent de ceux du modèle ouvrage pour utiliser le même programme
args.titreChap = validArg( 'titre chapitre', 'títol capítol', 'titre ouvrage', 'títol obratge', 'chap', 'cap', 'titre', 'títol', 'title' )
if args.titre == args.titreChap then
args.titre = false
end
args.titre = validArg( 'titre ouvrage', 'ouvrage', 'titre', 'títol obratge', 'obratge', 'títol', 'title' ) or false
args['títol capítol'] = false
args.chap = false
args['sostítol capítol'] = validArg( 'sostítol capítol', 'sostítol', 'sous-titre chapitre', 'sous-titre' ) or false
args['sostítol'] = validArg( 'sostítol obratge', 'sostítol', 'sous-titre ouvrage', 'sous-titre' )
if args['sostítol capítol'] == args['sostítol'] then
args['sostítol'] = false
end
args['ligam títol'] = validArg( 'ligam títol obratge', 'ligam títol', 'lien titre ouvrage', 'lien titre' )
return Ouvrage.ouvrage( args, true )
end
function Ouvrage.ouvrage( args, chapitre )
-- La table wiki va recevoir tout les petits bouts de texte, et sera concaténée à la fin.
-- Elle utilise la meta-table de TableBuilder, permettant d'utiliser les fonctions de la
-- librairie table comme des méthodes. minsert permet d'insérer plusieurs éléments en une
-- seule fois en, ignorant les paramètres nil.
local wiki = TableBuilder.new()
-- validArg renvoie le premier paramètre non vide, ou nil s'ils sont tous vides.
-- Seul les noms des paramètres doivent être transmis à la fonction.
local validArg = function ( ... ) return Commun.validTextArg( args, ... ) or false end
local genre = ( chapitre and 'capítol' ) or 'obratge'
--Table servant à la catégorisation
args.categ = {}
local modeNormal = not validArg( 'nocat' )
-- Clarification des paramètres nécessaires pour les COinS
args.titre = validArg( 'titre', 'títol', 'title' )
args['pages totales'] = validArg( 'pages totales', 'pages', 'paginas totalas', 'paginas' )
args.pages = ''
local lienExternes = validArg( 'lire en ligne', 'url texte', 'legir en linha', 'url tèxte', 'url', 'tèxte' )
if args.format and not args['format electronic'] and lienExternes and string.match( args.format,"pdf" ) then
args['format electronic'] = args.format
args.format = false
end
-- span initial (id) et libellé
local spanInitial, spanFinal = Commun.spanInitial ( args, validArg )
wiki.minsert( spanInitial, Commun.libelle( args ) )
-- Indication de langue
local indicLangue, codeLangue = Commun.indicationDeLangue ( args, validArg )
local dir, attributsLangue
if Outils.notEmpty( indicLangue ) then
wiki.minsert( indicLangue, ' ' )
if codeLangue then
dir = Langue.directionLangue( codeLangue )
if dir == 'rtl' then
attributsLangue = ' lang="' .. codeLangue .. '" dir="rtl"'
else
dir = nil
attributsLangue = ' lang="' .. codeLangue .. '"'
end
end
end
-- Liste des auteurs et de leurs responsabilités (principales et secondaires)
local auteur = validArg( 'nom1', 'nom', 'auteur1', 'auteur', 'auteurs', 'auteur institutionnel', 'autor1', 'autor', 'autors', 'autor institucional','last1', 'last', 'author1', 'author' )
if auteur then
if validArg( 'autors' ) then
wiki.minsert( args.auteurs )
else
wiki.minsert( Commun.responsabilitePrincipale( args, validArg ) )
end
local coauteur = validArg( 'co-auteur', 'coauteurs', 'coauteur', 'coautors', 'coautor', 'coauthors' )
if coauteur then
wiki.minsert( ', ', coauteur )
end
wiki.minsert( Commun.responsabiliteSecondaire( args, validArg ), ', ' )
end
-- Pour le modèle chapitre : affichage du chapitre
if chapitre then
if args.titreChap then
wiki.minsert( '<cite style="font-style:normal"', attributsLangue, '>« ', args.titreChap )
if args['sostítol capítol'] then
wiki.minsert( ' : ', args['sostítol capítol'] )
end
wiki.minsert( ' »</cite>' )
elseif modeNormal then
wiki.minsert( Outils.erreur( ' [[Modèl:Capítol|{{Capítol}}]] : paramètre <code>titre chapitre</code> manCant' ) )
args.categ.titreChapitre = true
end
wiki.minsert( ', dins ' )
local auteurOuvrage = validArg( 'auteurs ouvrage', 'auteur ouvrage', 'autors obratge', 'autor obratge' )
if auteurOuvrage then
wiki.minsert( auteurOuvrage, ', ' )
end
end
-- Titre
if args.titre then
local titre, sousTitre = args.titre, validArg( 'sostítol', 'sous-titre' )
if sousTitre then
titre = titre .. ' : ' .. sousTitre
end
titre = Commun.fusionTexteLien( titre, args['ligam títol'], args.categ )
local graphie = ' class="italique"'
if Langue.nonLatin( titre ) then
graphie = ' style="font-style:normal"'
end
wiki.minsert( '<cite', graphie, attributsLangue, '>', titre, '</cite>' )
elseif modeNormal then
if chapitre then
args.categ.titreOuvrage = true
if args.categ.titreChapitre then
wiki.minsert( Outils.erreur( 'paramètre <code>titre ouvrage</code> mancant' ) )
else
wiki.minsert( Outils.erreur( '[[Modèl:Capítol|{{Capítol}}]] : paramètre <code>titre ouvrage</code> mancant' ) )
end
else
args.categ.titre = true
wiki.minsert( Outils.erreur( '[[Modèl:Obratge|{{Obratge}}]] : paramètre <code>titre</code> mancant' ) )
end
end
-- Titre original et traducteur
local original = validArg( 'titre original', 'titre vo', 'traduction titre', 'títol original', 'títol vo', 'traduccion títol' )
if original and original ~= args.titre then
if validArg( 'lenga originala', 'langue originale' ) then
wiki.minsert( ' [« ', Langue.langue{ args['lenga originala'], original }, ' »]' )
else
wiki.minsert( ' [« ', original, ' »]' )
end
end
if not auteur then
local responsabiliteSecondaire = Commun.responsabiliteSecondaire( args, validArg )
if responsabiliteSecondaire then
wiki.minsert( ' ', responsabiliteSecondaire )
end
end
-- Volume, tome
local volume = validArg( 'volume', 'volum', 'vol' )
if volume then
wiki.minsert( ', ', Commun.vol, volume )
end
local tome = validArg( 'tome', 'tòme', 'tòm' )
if tome then
wiki.minsert( ', ', Commun.tome, tome )
end
local titreVolTome = validArg( 'titre volume', 'titre tome', 'títol volume', 'títol tòme' )
if titreVolTome then
if volume or tome then
wiki.minsert( [[ : '']] )
else
wiki.minsert( [[, '']] )
end
if codeLangue then
wiki.minsert( Langue.langue{ codeLangue, titreVolTome }, [['']] )
else
wiki.minsert( titreVolTome, [['']] )
end
local tradTitreVolTome = validArg( 'traduction titre volume', 'traduction titre tome', 'traduccion títol volum', 'traduccion títol tòme' )
if tradTitreVolTome then
wiki.minsert( ' [« ', tradTitreVolTome, ' »]' )
end
end
-- Nature du document et établissement (pour les thèses...)
local nature = validArg( 'natura obratge', 'nature ouvrage' )
if nature then
wiki.minsert( ' (', nature, ')')
end
local etablissement = validArg( 'establiment', 'établissement' )
if etablissement then
wiki.minsert( ', ', etablissement )
end
-- Lieu et éditeur
local lieu = validArg( 'lieu', 'location', 'luòc' )
if lieu then
wiki.minsert( ', ', lieu )
end
local editeur = validArg( 'éditeur', 'édition', 'editeur', 'edition', 'editor', 'edicion', 'editor','publisher' )
if editeur then
local lienEditeur = validArg( 'ligam editor', 'lien éditeur' )
wiki.minsert( ', ', Commun.fusionTexteLien( editeur, lienEditeur, args.categ ) )
end
-- Collecion et numéro
local collection = validArg( 'collection', 'series', 'colleccion', 'serias' )
if collection then
wiki.minsert( ', ', Commun.coll, '« ', collection )
local serie = validArg( 'seria', 'serie', 'série' )
if serie then
wiki.minsert( ' / ', serie )
end
wiki.minsert( ' »' )
end
local numeroCollection = validArg( 'numéro dans collection', 'numéro dans la collection', 'numèro dins colleccion', 'numèro dins la colleccion' )
if numeroCollection then
wiki.minsert( ' (', Commun.numero, numeroCollection, ')' )
end
-- Date, réimpression et éditions
local annee = validArg( 'année', 'date', 'annada', 'data','year' )
if annee then
local lrm
if Langue.nonLatin( wiki.concat() ) then
lrm = '‎'
end
wiki.minsert( ',', lrm, ' ', Commun.inscriptionDate( args ) )
-- le &lrm est une marque de texte gauche à droite, utile si le texte qui précède est en droite à gauche (arabe, hébreux...)
end
local publi = validArg( 'réimpression', 'reïmpression','publi' )
if publi then
wiki.minsert( ' (', Commun.reimpr, publi, ')' )
end
local numeroEdition = validArg( "numéro d'édition", "numéro édition", "numèro d'edicion", "numèro edicion" )
if numeroEdition then
wiki.minsert( ', ', Outils.ordinal( numeroEdition, true ), Commun.ed )
end
local premiereEdition = validArg( 'année première édition', 'annada primièra edicion','origyear' )
if premiereEdition then
wiki.minsert( ' (', Commun.premiere, Commun.ed, ' ', premiereEdition, ')' )
end
-- Pages et format
local pages = validArg( 'pages totales', 'pages', 'paginas totalas', 'paginas' )
if pages then
wiki.minsert( ', ', pages, Commun.nbp )
end
local format = validArg( 'format livre', 'format libre', 'format' )
if format then
wiki.minsert( ', ', format )
end
-- Références
local reference = validArg( 'référence', 'referéncia' )
if reference then
wiki.minsert( ' ', Commun.detailEditions( reference ) )
end
local refSimple = validArg( 'référence simplifiée', 'referéncia simplificada', 'ref' )
if refSimple then
wiki.minsert( ' ', Commun.detailEdition( refSimple ) )
end
-- Lien vers l'ouvrage en ligne (isbn, issn, pmid, doi, lire en ligne, résumé...)
wiki.minsert( References.affichageLiensExternes( args, validArg, true, false ) )
-- consulté le n'est plus affiché, voir [[Discussion_modèle:Ouvrage#Évolution documentation]]
-- Précision sur le passage concerné
local partie = validArg( 'partie', 'partida' )
if partie then
if string.match ( partie, '^[%dIVXLCM]+$' ) then
wiki.minsert( ', partida ', partie )
elseif string.match ( partie, '^[ivxlcmIVXLCM]+$' ) then
wiki.minsert( ', partida ', Commun.romain( partie ) )
else
wiki.minsert( ', ', partie )
end
end
local numeroChapitre = validArg( 'numéro chapitre', 'numéro', 'numèro capítol', 'numèro' )
if numeroChapitre then
wiki.minsert( ', ', Commun.chap, numeroChapitre )
end
local titreChapitre = validArg( 'titre chapitre', 'chap', 'chapitre', 'títol capítol', 'cap', 'capítol', 'chapter' )
if titreChapitre then
if numeroChapitre then
titreChapitre = ' (« ' .. titreChapitre .. ' »)'
else
titreChapitre = ', « ' .. titreChapitre .. ' »'
end
if codeLangue then
titreChapitre = Langue.langue{ codeLangue, titreChapitre }
end
wiki.minsert( titreChapitre )
local tradTitreChap = validArg( 'traduction titre chapitre', 'traduccion títol capítol' )
if tradTitreChap then
wiki.minsert( ' [« ', tradTitreChap, ' »]' )
end
end
local passage = validArg( 'passage', 'page', 'passatge', 'pagina' )
if passage then
if string.match ( passage, '^[%dIVXLCM]' ) then
wiki.minsert( ', ', Commun.page, passage )
else
wiki.minsert( ', ', passage )
end
end
local patternPonct = '[,.;:!?]$'
local ponctuation = wiki.concat():gsub( '%b<>', '' ):match( patternPonct )
-- Ajout des méthadonnées COinS (ContextObjects in Spans)
wiki.minsert( Commun.COinS( args, validArg, genre ) )
-- Fin du span (id) et de la description de l'ouvrage
wiki.minsert( spanFinal )
-- Citation et commentaire de cet ouvrage
local citation = validArg( 'extrait', 'citation', 'extrach', 'citacion' )
if citation then
wiki.minsert( ' :<blockquote>« ', citation, ' »</blockquote>' )
end
if validArg( 'plume' ) then
local point
if not citation and not ponctuation then
point = '.'
end
wiki.minsert( point, Commun.plume )
end
wiki.minsert( Commun.commentaire( args ) )
local namespaceCategorisation = { [0] = true, [4] = true, [10] = true, [12] = true, [14] = true, [100] = true, [104] = true }
if namespaceCategorisation[ mw.title.getCurrentTitle().namespace ] and modeNormal then
wiki.minsert(
args.categ.langue and '[[Categoria:Pagina del modèl Obratge que compòrta una error|lenga]]',
args.categ.titre and '[[Categoria:Pagina del modèl Obratge que compòrta una error|títol]]',
args.categ.titreChapitre and '[[Categoria:Pagina del modèl Capítol que compòrta una error|Capítol]]',
args.categ.titreOuvrage and '[[Categoria:Pagina del modèl Capítol que compòrta una error|Obratge]]',
args.categ.lienExterne and '[[Categoria:Pagina del modèl Obratge que compòrta una error|Externe]]',
args.categ.isbnInvalide and '[[Categoria:Obratge amb ISBN invalid]]',
args.categ.issnInvalide and '[[Categoria:Pagina amb ISSN invalid]]',
args.categ.eanInvalide and '[[Categoria:Pagina amb EAN invalid]]'
)
if dir then
wiki.minsert( '[[Categoria:Recension temporària pel modèl Obratge|rtl]]' )
end
end
return wiki.concat()
end
return Ouvrage