Bonjour,
J'ai un petite question quelle est l'expression Xpath qui permet de vérifier si cette ressource décrite par le doc RDF ci-dessous à été produite après le 10 janvier 2002?
Merci d’avance pour vos réponses
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
<?xml version="1.0"?>
 <!DOCTYPE rdf:RDF SYSTEM "http://purl.org/dc/schemas/dcmes-xml-
20000714.dtd">
 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:dcterms="http://purl.org/dc/terms/">
 <rdf:Description rdf:about="file://disk/news_12_02_02.mpg">
 <dc:title>World News Tonight</dc:title>
 <dc:creator>Special Broadcasting Service</dc:creator>
 <dc:subject>International news events</dc:subject>
 <dc:description>Comprehensive coverage of global and national events,
 presented by Anton Enus. </dc:description>
 <dc:publisher>SBS-TV</dc:publisher>
 <dc:contributor>Anton Enus</dc:contributor>
 <dcterms:created>2002-02-12</dcterms:created>
 <dcterms:issued>2002-02-12</dcterms:issued>
 <dc:type>image</dc:type>
 <dc:format>
 <dcterms:IMT rdf:value="video/mpg" rdfs:label="MPEG video">
 </dcterms:IMT>
 </dc:format>
 <dcterms:extent>30 mins</dcterms:extent>
 <dc:identifier>news_12_02_02</dc:identifier>
 <dc:language>
 <dcterms:RFC1766>
 <rdf:value>EN</rdf:value>
 <rdfs:label>English</rdfs:label>
 </dcterms:RFC1766>
 </dc:language>
 <dc:relation>http://www.theworldnews.com.au</dc:relation>
 <dcterms:spatial>world</dcterms:spatial>
 <dcterms:temporal>2002-02-12</dcterms:temporal>
 <dc:rights>SBS 2000</dc:rights>
 </rdf:Description>
 </rdf:RDF>
.