comparison visualise.xpl @ 12:01e125d722be

widening scope so better names
author Henry S. Thompson <ht@markup.co.uk>
date Mon, 03 Apr 2017 13:46:54 +0100
parents ascii.xpl@01e80c7a9575
children f78e8c55c06b
comparison
equal deleted inserted replaced
11:480454d218f7 12:01e125d722be
1 <?xml version='1.0'?>
2 <!DOCTYPE p:pipeline SYSTEM "../../../WWW/XML/XProc/docs/schemas/xproc.dtd" >
3 <p:pipeline xmlns:p="http://www.w3.org/ns/xproc" xmlns:x="http://www.w3.org/1999/xhtml" version="1.0" name="ascii">
4
5 <p:documentation xmlns="http://www.w3.org/1999/xhtml">
6 <div>Run this e.g. as follows:
7 xproc --input source=sample2/xl/worksheets/sheet1.xml ascii.xpl elabDir=file:/d/MT/sonra/OOXML</div>
8 </p:documentation>
9
10 <p:option name="elabDir" required="true">
11 <p:documentation xmlns="http://www.w3.org/1999/xhtml">
12 <div>Directory where stylesheets, other info for stylesheet elaboration are found</div>
13 </p:documentation>
14 </p:option>
15
16 <p:load name="ss1">
17 <p:with-option name="href" select="concat($elabDir,'/format.xsl')"/>
18 </p:load>
19
20 <p:xslt name="format">
21 <p:input port="source">
22 <p:pipe step="ascii" port="source"/>
23 </p:input>
24 <p:input port="stylesheet">
25 <p:pipe step="ss1" port="result"/>
26 </p:input>
27 <p:with-param name="elabDir" select="$elabDir"/>
28 </p:xslt>
29
30 <p:load name="ss2">
31 <p:with-option name="href" select="concat($elabDir,'/rect.xsl')"/>
32 </p:load>
33
34 <p:xslt name="asc">
35 <p:input port="source">
36 <p:pipe step="format" port="result"/>
37 </p:input>
38 <p:input port="stylesheet">
39 <p:pipe step="ss2" port="result"/>
40 </p:input>
41 <p:with-param name="elabDir" select="$elabDir"/>
42 </p:xslt>
43
44 <p:load name="ss3">
45 <p:with-option name="href" select="concat($elabDir,'/ascii.xsl')"/>
46 </p:load>
47 </p:pipeline>