-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcollate-variants.xpl
177 lines (147 loc) · 6.3 KB
/
collate-variants.xpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?xml version="1.0" encoding="UTF-8"?>
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" xmlns:c="http://www.w3.org/ns/xproc-step"
xmlns:cx="http://xmlcalabash.com/ns/extensions" xmlns:f="http://www.faustedition.net/ns"
xmlns:l="http://xproc.org/library" version="1.0" name="main" type="f:collate-variants">
<p:input port="source">
<p:empty/>
</p:input>
<p:input port="parameters" kind="parameter"/>
<p:output port="result" primary="true"/>
<p:option name="paths" select="'paths.xml'"/>
<p:import href="http://xmlcalabash.com/extension/steps/library-1.0.xpl"/>
<p:import href="apply-edits.xpl"/>
<!-- <p:import href="collect-metadata.xpl"/>-->
<!-- Parameter laden -->
<p:xslt name="config" template-name="param">
<p:input port="source"><p:empty/></p:input>
<p:input port="stylesheet"><p:document href="xslt/config.xsl"/></p:input>
<p:with-param name="path_config" select="$paths"></p:with-param>
</p:xslt>
<p:identity name="source">
<p:input port="source">
<p:pipe port="source" step="main"/>
</p:input>
</p:identity>
<p:group name="body">
<p:variable name="apphtml" select="//c:param[@name='apphtml']/@value">
<p:pipe port="result" step="config"/>
</p:variable>
<p:variable name="builddir" select="resolve-uri(//c:param[@name='builddir']/@value)">
<p:pipe port="result" step="config"/>
</p:variable>
<cx:message log="info">
<p:with-option name="message" select="'Reading prepared transcript files ...'"/>
</cx:message>
<!--
Wir iterieren über die Transkripteliste, die vom Skript in collect-metadata.xpl generiert wird.
Für die Variantengenerierung berücksichtigen wir dabei jedes dort verzeichnete Transkript.
-->
<p:for-each>
<p:iteration-source select="//f:textTranscript"/>
<p:variable name="sigil_t" select="/f:textTranscript/@sigil_t"/>
<!-- Das Transkript wird geladen ... -->
<p:load name="load-prepared">
<p:with-option name="href" select="resolve-uri(concat('prepared/textTranscript/', $sigil_t, '.xml'), $builddir)"
/>
</p:load>
<p:load name="load-emended">
<p:with-option name="href" select="resolve-uri(concat('emended/', $sigil_t, '.xml'), $builddir)"
/>
</p:load>
<p:identity>
<p:input port="source">
<p:pipe port="result" step="load-emended"/>
<p:pipe port="result" step="load-prepared"/>
</p:input>
</p:identity>
</p:for-each>
<p:for-each>
<p:xslt>
<p:input port="stylesheet"><p:document href="xslt/prose-to-lines.xsl"/></p:input>
</p:xslt>
<!--
nun extrahieren wir die Elemente ("lines"), die für den Variantenapparat
verwendet werden sollen. Dazu werden nur Elemente, die eine Zeilenzählung
enthalten, sowie deren Inhalt extrahiert. Die Elemente mit Zeilenzählung
erhalten zusätzlich ein paar Metadaten als Attribute im Faust-Namespace:
URI, Sigle, und Siglentyp.
-->
<p:xslt name="extract-lines">
<p:input port="stylesheet">
<p:document href="xslt/extract-lines.xsl"/>
</p:input>
<p:input port="parameters">
<p:pipe port="result" step="config"/>
</p:input>
</p:xslt>
</p:for-each>
<!--
die aus den Transkripten generierten "Zeilenlisten"-Dokumente kleben wir nun
zu einem großen XML-Dokument zusammen, auf dem dann der nächste Schritt agiert.
-->
<p:wrap-sequence wrapper="f:variants"/>
<cx:message log="info">
<p:with-option name="message" select="'Collecting lines from all transcripts ...'"/>
</cx:message>
<!--
Das Stylesheet entfernt die überflüssigen f:lines-Statements und bewegt die Namespace-
Deklarationen zum Wurzelelement: Dadurch wird v.a. das Debugging-Dokument übersichtlicher.:q
-->
<p:xslt name="collect-lines-0">
<p:input port="stylesheet">
<p:inline>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:template match="f:variants">
<xsl:copy copy-namespaces="no">
<xsl:namespace name="">http://www.tei-c.org/ns/1.0</xsl:namespace>
<xsl:namespace name="ge">http://www.tei-c.org/ns/geneticEditions</xsl:namespace>
<xsl:namespace name="svg">http://www.w3.org/2000/svg</xsl:namespace>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="node()|@*">
<xsl:copy copy-namespaces="no">
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="f:lines">
<xsl:apply-templates select="node()"/>
</xsl:template>
</xsl:stylesheet>
</p:inline>
</p:input>
</p:xslt>
<p:store method="xml" indent="true">
<p:with-option name="href" select="resolve-uri('collected-lines.xml', $builddir)"/>
</p:store>
<p:identity name="collect-lines"><p:input port="source"><p:pipe port="result" step="collect-lines-0"></p:pipe></p:input></p:identity>
<cx:message log="info" message="Collating the lines and writing variant HTMLs"/>
<!-- hier werden nun tatsächlich die Varianten-HTML-Dateien erzeugt: -->
<p:xslt name="variant-fragments">
<p:input port="stylesheet">
<p:document href="xslt/variant-fragments.xsl"/>
</p:input>
<p:input port="parameters">
<p:pipe port="result" step="config"/>
</p:input>
</p:xslt>
<p:sink/>
<!-- Auf dem sekundären Port landen die ganzen variants/<group>.html, die wir nun speichern: -->
<p:for-each>
<p:iteration-source>
<p:pipe port="secondary" step="variant-fragments"/>
</p:iteration-source>
<cx:message log="debug">
<p:with-option name="message" select="concat('Writing fragment ', p:base-uri())"/>
</cx:message>
<p:store method="xhtml" omit-xml-declaration="false" indent="false">
<p:with-option name="href" select="p:base-uri()"/>
</p:store>
</p:for-each>
</p:group>
<p:identity>
<p:input port="source">
<p:pipe port="result" step="source"/>
</p:input>
</p:identity>
</p:declare-step>