I am trying to transform XML files, but I am blocked. The idea is to aggregate every elements from <ore:Aggregation>
node until the next one. It is some kind of itemization. But I can't get more than 1 edm:WebResource
per created dc:item
.
XML :
<rdf:RDF>
<ore:Aggregation rdf:about="id1">
<some:crap/>
</ore:Aggregation>
<edm:ProvidedCHO rdf:about="id1">
<some:crap/>
</edm:ProvidedCHO>
<edm:WebResource rdf:about="some/random/url">
<some:crap/>
</edm:WebResource>
...
(n 'edm:WebResource' nodes)
...
<edm:WebResource rdf:about="some/random/url">
<some:crap/>
</edm:WebResource>
<ore:Aggregation rdf:about="id2">
<some:crap/>
</ore:Aggregation>
<edm:ProvidedCHO rdf:about="id2">
<some:crap/>
</edm:ProvidedCHO>
<edm:WebResource rdf:about="some/random/url">
<some:crap/>
</edm:WebResource>
...
(n 'edm:WebResource' nodes)
...
<edm:WebResource rdf:about="some/random/url">
<some:crap/>
</edm:WebResource>
... and on and on ...
</rdf:RDF>
XSL
<xsl:template match="/">
<xsl:apply-templates select="/rdf:RDF/ore:Aggregation"/>
</xsl:template>
<xsl:template match="/rdf:RDF/ore:Aggregation">
<rdf:RDF>
<xsl:for-each select=".">
<dc:item>
<xsl:attribute name="rdf:about">
<xsl:value-of select="concat($fileName, '_item', position())"/>
</xsl:attribute>
<xsl:copy-of select="."/>
<xsl:copy-of select="following-sibling::edm:ProvidedCHO[1]"/>
<xsl:copy-of select="following-sibling::edm:WebResource[1]"/>
<!-- WHERE IT SUCKS -->
<xsl:if test="local-name(following-sibling::*[3]) = 'edm:WebResource'">
<xsl:copy-of select="following-sibling::*[3]"/>
</xsl:if>
<!-- ./WHERE IT SUCKS -->
</dc:item>
</xsl:for-each>
</rdf:RDF>
</xsl:template>
Another attempt which bring too many nodes :
<!-- WHERE IT SUCKS -->
<xsl:copy-of select="following-sibling::*[local-name (preceding::*[1]) = 'ore:Aggregation']"/>
<!-- ./WHERE IT SUCKS -->
Expected Output
<!-- ITEM N1 -->
<rdf:RDF>
<dc:item rdf:about="some.concat.string"/>
<ore:Aggregation rdf:about="id1">
<some:crap/>
</ore:Aggregation>
<edm:ProvidedCHO rdf:about="id1">
<some:crap/>
</edm:ProvidedCHO>
<edm:WebResource rdf:about="some/random/url">
<some:crap/>
</edm:WebResource>
</rdf:RDF>
<!-- ITEM N2 -->
<rdf:RDF>
<dc:item rdf:about="some.concat.string"/>
<ore:Aggregation rdf:about="id1">
<etc/>
In XSLT 2.0, this looks like it would be a job for
xsl:for-each-group
(See http://www.xml.com/pub/a/2003/11/05/tr.html). In particular, using it withgroup-starting-with
This would be done when positioned on the parent
rdf:RDF
element, and will arrange all the child elements into groups, with theore:Aggregration
being the start of each group. The code withinxsl:for-each-group
then gets called once for eachore:Aggregation
element, and you can then use thecurrent-group()
function to access all elements within the group.Try this XSLT for starters
Note that the output XML this generates is not well-formed, as it lacks a single root element. It would be much better if one were added, not just to make it well formed, but then the namespace declarations would also go in one place:
Also note the use of Attribute Value Templates in creating the
rdf:about
which further reduces the amount of code needed.