« Histoire » : différence entre les versions
De Wiktionnaire-SHS
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 11 : | Ligne 11 : | ||
|Source=Hammou Fadili, | |Source=Hammou Fadili, | ||
}} | }} | ||
PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |||
PREFIX dbpedia-owl:<http://dbpedia.org/ontology/> | |||
SELECT ?label ?abstract | |||
PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> | WHERE | ||
PREFIX owl:<http:// | { | ||
{ | |||
? | ?s rdfs:label "Histoire"@FR. | ||
? | BIND ("Histoire"@FR as ?label) | ||
FILTER langMatches( lang(? | ?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 |
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