Récupération d'informations avec xsl
bonjour,
je chercher a sélectionner la liste de tous les objets de la ressource «http://www.uquebec.ca/rdfexemples.html » (incluant URI et objets textuels) de mon RDF:
voila mon programme xslt en utilisant une expression XPath:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<xsl:template match="/">
- <xsl:for-each select="@rdf:resource" >
<li>
<xsl:value-of select="." />
</li><xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet> |
sa marche pas .Merci pour votre aide .