Différences entre versions de « Module:Encyclique »

De Gregorius 3.0
Sauter à la navigation Sauter à la recherche
Ligne 19 : Ligne 19 :
 
   local dateFormat = "d M Y"
 
   local dateFormat = "d M Y"
 
   
 
   
  linkedwiki.setSubject(linkedwiki.getCurrentIRI())
+
local subject = linkedwiki.getCurrentIRI(); -- read the iri of the current page
 
+
local object =  linkedwiki.new(subject)
  -- save data in the triplestore of Gregorius
+
 
  linkedwiki.setConfig() -- bydefault Gregorius
+
object:removeSubject() -- delete all triples of this subject
  linkedwiki.setSubject(subject)  
 
  --linkedwiki.setDebug(true)
 
 
  linkedwiki.removeSubject() -- delete all triples of this subject
 
 
    
 
    
 
    
 
    
   mw.log(linkedwiki.addPropertyWithIri(rdf..'type',ri..'Encyclique'))
+
   mw.log(object:addPropertyWithIri(rdf..'type',ri..'Encyclique'))
   mw.log(linkedwiki.addPropertyWithIri(rdfs..'label',f.args.Title))
+
   mw.log(object:addPropertyWithIri(rdfs..'label',f.args.Title))
   mw.log(linkedwiki.addPropertyWithIri(rp..'siecle',f.args.Siecle))
+
   mw.log(object:addPropertyWithIri(rp..'siecle',f.args.Siecle))
   mw.log(linkedwiki.addPropertyWithIri(rp..'date',f.args.Date,xsd..'date',''))
+
   mw.log(object:addPropertyWithIri(rp..'date',f.args.Date,xsd..'date',''))
   mw.log(linkedwiki.addPropertyWithIri(rp..'auteru',f.args.Auteur,xsd..'date',''))
+
   mw.log(object:addPropertyWithIri(rp..'auteru',f.args.Auteur,xsd..'date',''))
 
  
 
  
 
  
 
  
Ligne 43 : Ligne 39 :
 
    bodyClass = 'gregoriusEncyclique',
 
    bodyClass = 'gregoriusEncyclique',
 
title =  'Encyclique',
 
title =  'Encyclique',
         top = linkedwiki.checkString(daapProp..'titre',f.args.Titre) ,
+
         top = object:checkString(daapProp..'titre',f.args.Titre) ,
 
topStyle = 'background:#0066CC;height:50px;font-size: 20px;color:white;vertical-align:middle',
 
topStyle = 'background:#0066CC;height:50px;font-size: 20px;color:white;vertical-align:middle',
bottom = linkedwiki.checkExternLink('Website',rdfs..'seeAlso',f.args.Website)
+
bottom = object:checkExternLink('Website',rdfs..'seeAlso',f.args.Website)
 
} )
 
} )
:addRow('Titre', linkedwiki.checkString(daapProp..'titre',f.args.Titre))
+
:addRow('Titre', object:checkString(daapProp..'titre',f.args.Titre))
:addRow('Date', linkedwiki.checkString(daapProp..'date',f.args.Date))
+
:addRow('Date', object:checkString(daapProp..'date',f.args.Date))
:addRow('Siècle', linkedwiki.checkString(daapProp..'siecle',f.args.Siecle))
+
:addRow('Siècle', object:checkString(daapProp..'siecle',f.args.Siecle))
:addRow('Auteur', linkedwiki.checkString(daapProp..'auteur',f.args.Auteur))
+
:addRow('Auteur', object:checkString(daapProp..'auteur',f.args.Auteur))
:addWikitext( linkedwiki.getMaintenanceCategory() ..  "[[Category:Interdisciplinary Unit]]"
+
:addWikitext( object:getMaintenanceCategory() ..  "[[Category:Interdisciplinary Unit]]"
 
.."[[Category:Encyclique]]" )
 
.."[[Category:Encyclique]]" )
 
end
 
end
 
   
 
   
 
return p
 
return p

Version du 1 novembre 2019 à 22:03

La documentation pour ce module peut être créée à Module:Encyclique/doc

local p = {}
 
function p.infobox(f)
    local capiunto = require 'capiunto'
    local linkedwiki = require 'linkedwiki'
 
	local endpointUpsud = 'http://opendata1.opendata.u-psud.fr/sparql'
 
   local rdf = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'
   local rdfs = 'http://www.w3.org/2000/01/rdf-schema#'
   local ri = 'http://gregorius.fr/wiki/'
   local rp = 'http://www.gregorius.fr/wiki/Property:'
   local geo = 'http://www.w3.org/2003/01/geo/wgs84_pos#'
   local vcard = 'http://www.w3.org/2006/vcard/ns#'
   local xsd = 'http://www.w3.org/2001/XMLSchema#'
   local wdt = 'http://www.wikidata.org/prop/direct/'
   local wd = 'http://www.wikidata.org/entity/' 
 
   local dateFormat = "d M Y"
 
local subject = linkedwiki.getCurrentIRI(); -- read the iri of the current page
local object =  linkedwiki.new(subject)

object:removeSubject() -- delete all triples of this subject
   
   
   mw.log(object:addPropertyWithIri(rdf..'type',ri..'Encyclique'))
   mw.log(object:addPropertyWithIri(rdfs..'label',f.args.Title))
   mw.log(object:addPropertyWithIri(rp..'siecle',f.args.Siecle))
   mw.log(object:addPropertyWithIri(rp..'date',f.args.Date,xsd..'date',''))
   mw.log(object:addPropertyWithIri(rp..'auteru',f.args.Auteur,xsd..'date',''))
   	
   	
   	
   	
 
	return capiunto.create( {
	    -- bodyStyle = 'border: 15px solid red',
	    bodyClass = 'gregoriusEncyclique',
		title =  'Encyclique',
        top = object:checkString(daapProp..'titre',f.args.Titre) ,
		topStyle = 'background:#0066CC;height:50px;font-size: 20px;color:white;vertical-align:middle',		
		bottom = object:checkExternLink('Website',rdfs..'seeAlso',f.args.Website)
	} )
	:addRow('Titre', object:checkString(daapProp..'titre',f.args.Titre))
	:addRow('Date', object:checkString(daapProp..'date',f.args.Date))
	:addRow('Siècle', object:checkString(daapProp..'siecle',f.args.Siecle))
	:addRow('Auteur', object:checkString(daapProp..'auteur',f.args.Auteur))
	:addWikitext( object:getMaintenanceCategory() ..  "[[Category:Interdisciplinary Unit]]"
				.."[[Category:Encyclique]]" )
end
 
return p