⚲
Project
Profile
Help
Tour this page
Frequent Planio Questions
Learning Resources
Sign in
Register
Switch Planio account
Open in Planio App
Share current page
Search
:
Projects
All Projects
Help
Tour this page
Frequent Planio Questions
Learning Resources
Sign in
Register
Switch Planio account
Open in Planio App
Share current page
Saxon
Overview
Roadmap
Issues
Calendar
Blog
Documents
Forums
Files
Repository
Download (1.3 KB)
When using streamed merging and the -t option with 9.7, t...
» test201607140201.xsl
Martin Honnen
, 2016-07-14 11:02
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl=
"http://www.w3.org/1999/XSL/Transform"
xmlns:xs=
"http://www.w3.org/2001/XMLSchema"
xmlns:math=
"http://www.w3.org/2005/xpath-functions/math"
exclude-result-prefixes=
"xs math"
expand-text=
"yes"
version=
"3.0"
>
<xsl:strip-space
elements=
"*"
/>
<xsl:output
indent=
"yes"
/>
<xsl:mode
on-no-match=
"shallow-copy"
/>
<xsl:template
name=
"main"
>
<root>
<subjects>
<xsl:merge>
<xsl:merge-source
name=
"books"
for-each-stream=
"'test201607140202.xml'"
select=
"books/book"
>
<xsl:merge-key
select=
"subject"
/>
</xsl:merge-source>
<xsl:merge-source
name=
"casts"
for-each-stream=
"'test201607140201.xml'"
select=
"root/list/cast"
>
<xsl:merge-key
select=
"@subject"
/>
</xsl:merge-source>
<xsl:merge-action>
<subject
name=
"{current-merge-key()}"
>
<xsl:apply-templates
select=
"current-merge-group('casts'), current-merge-group('books')"
/>
</subject>
</xsl:merge-action>
</xsl:merge>
</subjects>
</root>
</xsl:template>
<xsl:template
match=
"book"
>
<media
type=
"{local-name()}"
>
<xsl:apply-templates
select=
"* except subject"
/>
</media>
</xsl:template>
<xsl:template
match=
"cast"
>
<media
type=
"{local-name()}"
>
<title>
{@title}
</title>
</media>
</xsl:template>
</xsl:stylesheet>
« Previous
1
2
3
Next »
(1-1/3)
Loading...