Logo Dico Logo FMSH Logo CNAM Logo Inalco

« Histoire » : différence entre les versions

De Wiktionnaire-SHS
Aller à :navigation, rechercher
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 11 : Ligne 11 :
|Source=Hammou Fadili,
|Source=Hammou Fadili,
}}
}}
{{#sparql:
PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX xsd:<http://www.w3.org/2001/XMLSchema#> 
PREFIX dbpedia-owl:<http://dbpedia.org/ontology/>
PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> 
SELECT ?label ?abstract
PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
WHERE
PREFIX owl:<http://www.w3.org/2002/07/owl#>
{
    select ?Définitions_extérieures  where {
{
?concept rdfs:label "{{PAGENAME}}"@fr.
?s rdfs:label "Histoire"@FR.
?concept dbpedia-owl:abstract ?Définitions_extérieures.
BIND ("Histoire"@FR as ?label)
FILTER langMatches( lang(?Définitions_extérieures), 'fr')  
?s dbpedia-owl:thumbnail ?photo.
 
?s dbpedia-owl:abstract ?abstract.
 
FILTER langMatches( lang(?abstract), "FR" ).
}
}
 
UNION
LIMIT 5
{
|endpoint=http://dbpedia.org/sparql}}
?s rdfs:label ?label.
?s dbpedia-owl:thumbnail ?photo.
?s dbpedia-owl:abstract ?abstract.
FILTER langMatches( lang(?label), "FR" ).
FILTER langMatches( lang(?abstract), "FR" ).
FILTER (  (bif:contains(?label,'Histoire AND Droit' )))
}
}
LIMIT 10

Version du 24 avril 2015 à 16:18

Réalisations (fr)

Entrée crée par Fadili le 21/04/2015.
Validée Oui
Validée par Hammou Fadili

Le contexte

Région(s) France, Maghreb
Discipline(s) Histoire
Période(s) 15ème, 16ème, 17eme, 18eme, 19eme, 20eme, 21eme


Définition 1.

Source(s) Hammou Fadili

PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbpedia-owl:<http://dbpedia.org/ontology/> SELECT ?label ?abstract WHERE { { ?s rdfs:label "Histoire"@FR. BIND ("Histoire"@FR as ?label) ?s dbpedia-owl:thumbnail ?photo. ?s dbpedia-owl:abstract ?abstract. FILTER langMatches( lang(?abstract), "FR" ). } UNION { ?s rdfs:label ?label. ?s dbpedia-owl:thumbnail ?photo. ?s dbpedia-owl:abstract ?abstract. FILTER langMatches( lang(?label), "FR" ). FILTER langMatches( lang(?abstract), "FR" ). FILTER ( (bif:contains(?label,'Histoire AND Droit' ))) } } LIMIT 10