⚲
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.56 KB)
Bug #3932
» acc-test-result-doc-text3.xsl
Martin Honnen
, 2018-10-02 07:41
<?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"
exclude-result-prefixes=
"#all"
expand-text=
"yes"
version=
"3.0"
>
<xsl:param
name=
"STREAMABLE"
static=
"yes"
as=
"xs:boolean"
select=
"true()"
/>
<xsl:mode
_streamable=
"{$STREAMABLE}"
use-accumulators=
"#all"
/>
<xsl:accumulator
name=
"last-id"
as=
"xs:string?"
initial-value=
"()"
_streamable=
"{$STREAMABLE}"
>
<xsl:accumulator-rule
match=
"item"
phase=
"end"
select=
"string(@id)"
/>
</xsl:accumulator>
<xsl:output
method=
"html"
indent=
"yes"
version=
"5.0"
/>
<xsl:template
match=
"/"
>
<html>
<head>
<title>
Testing accumulator with streaming and result-document threading
</title>
</head>
<body>
<h1>
Testing accumulator with streaming and result-document threading
</h1>
<section>
<h2>
Results
</h2>
<xsl:apply-templates/>
</section>
</body>
</html>
</xsl:template>
<xsl:template
match=
"items"
>
<xsl:result-document
href=
"item-result.html"
>
<html>
<head>
<title>
Items
</title>
</head>
<body>
<ul>
<xsl:apply-templates
select=
"item"
/>
</ul>
</body>
</html>
</xsl:result-document>
</xsl:template>
<xsl:template
match=
"item"
>
<li>
Item {@id}, position: {position()}, attribute pos: {@pos},
accumulator-before('last-id'): {accumulator-before('last-id')}
</li>
<xsl:result-document
href=
"item_{@id}.txt"
method=
"text"
>
Item {@id}, accumulator-before('last-id'): {accumulator-before('last-id')}
</xsl:result-document>
</xsl:template>
</xsl:stylesheet>
« Previous
1
2
Next »
(2-2/2)
Loading...