3 SPDX-FileCopyrightText: 2023, 2024 Lady <https://www.ladys.computer/about/#lady>
4 SPDX-License-Identifier: MPL-2.0
7 ⁌ ⛩📰 书社 ∷ lib/expandmetadata.xslt
9 © 2023–2024 Lady [@ Ladys Computer].
11 This Source Code Form is subject to the terms of the Mozilla Public License, v 2.0.
12 If a copy of the M·P·L was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
15 xmlns="http://www.w3.org/1999/XSL/Transform"
16 xmlns:exsl="http://exslt.org/common"
17 xmlns:nie="http://www.semanticdesktop.org/ontologies/2007/01/19/nie#"
18 xmlns:nfo="http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#"
19 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
20 xmlns:xlink="http://www.w3.org/1999/xlink"
21 xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
22 xmlns:书社vocab="urn:fdc:ladys.computer:20231231:Shu1She4:vocab:"
23 extension-element-prefixes="exsl"
26 <variable name="builddir" select="//书社vocab:BuildDirectory/@nfo:fileUrl"/>
27 <variable name="files" select="//书社vocab:SourceFile|//书社vocab:IncludeFile"/>
28 <template name="书社:process-dependencies">
29 <param name="processed"/>
30 <param name="unprocessed"/>
31 <variable name="queue">
32 <copy-of select="exsl:node-set($unprocessed)/书社:dependency-root"/>
33 <for-each select="exsl:node-set($unprocessed)/书社:dependency">
34 <if test="not((exsl:node-set($processed)/书社:*|preceding-sibling::书社:*|following-sibling::书社:recursive-dependency)[string()=string(current())])">
40 <copy-of select="exsl:node-set($processed)/书社:dependency-root"/>
41 <copy-of select="exsl:node-set($processed)/书社:recursive-dependency"/>
42 <for-each select="exsl:node-set($unprocessed)/书社:recursive-dependency">
43 <if test="not((exsl:node-set($processed)/书社:recursive-dependency|preceding-sibling::书社:recursive-dependency)[string()=string(current())])">
47 <for-each select="exsl:node-set($processed)/书社:dependency">
48 <if test="not(exsl:node-set($unprocessed)/书社:recursive-dependency[string()=string(current())])">
52 <copy-of select="$queue"/>
55 <for-each select="exsl:node-set($queue)/书社:*">
56 <for-each select="$files[@rdf:about=string(current()) and nie:interpretedAs/nfo:PlainTextDocument]">
57 <variable name="parent" select="@rdf:about"/>
58 <variable name="subdir">
60 <when test="starts-with($parent, 'about:shushe?include=')">
61 <text>/includes/</text>
63 <when test="starts-with($parent, 'about:shushe?source=')">
64 <text>/sources/</text>
68 <for-each select="document(concat($builddir, $subdir, @书社vocab:path), .)//书社:link[@xlink:show='embed']">
69 <if test="exsl:node-set($old)/书社:dependency-root[string()=string(current()/@xlink:href)]">
70 <书社:recursive-dependency>
71 <value-of select="$parent"/>
72 </书社:recursive-dependency>
74 <if test="$files/@rdf:about[string()=string(current()/@xlink:href)]">
76 <value-of select="@xlink:href"/>
84 <when test="exsl:node-set($new)/书社:dependency">
85 <call-template name="书社:process-dependencies">
86 <with-param name="processed">
87 <copy-of select="$old"/>
89 <with-param name="unprocessed">
90 <copy-of select="$new"/>
95 <copy-of select="$old"/>
99 <template match="//书社vocab:SourceFile[not(nie:interpretedAs/nfo:PlainTextDocument)]" priority="1">
101 <apply-templates select="@*"/>
102 <attribute name="书社vocab:destination">
103 <value-of select="@书社vocab:path"/>
105 <apply-templates select="node()"/>
108 <template match="//书社vocab:SourceFile[nie:interpretedAs/nfo:PlainTextDocument]" priority="1">
109 <variable name="parsed" select="document(concat($builddir, '/sources/', @书社vocab:path), .)"/>
110 <variable name="destination-delim" select="concat('/', $parsed/*/@书社:destination, '/')"/>
111 <variable name="destination">
113 <when test="not(contains($destination-delim, '//') or contains($destination-delim, '/./') or contains($destination-delim, '/../'))">
114 <value-of select="$parsed/*/@书社:destination"/>
117 <value-of select="@书社vocab:path"/>
121 <variable name="dependencies-fragment">
122 <apply-templates select="." mode="书社:dependencies"/>
124 <variable name="dependencies" select="exsl:node-set($dependencies-fragment)"/>
126 <apply-templates select="@*"/>
127 <attribute name="书社vocab:destination">
128 <value-of select="$destination"/>
130 <apply-templates select="node()"/>
131 <for-each select="$dependencies/书社:dependency">
132 <书社vocab:hasDependencyOn rdf:resource="{.}"/>
134 <for-each select="$dependencies/书社:recursive-dependency">
135 <书社vocab:hasRecursiveDependencyOn rdf:resource="{.}"/>
139 <template match="//书社vocab:IncludeFile[nie:interpretedAs/nfo:PlainTextDocument]" priority="1">
140 <variable name="dependencies-fragment">
141 <apply-templates select="." mode="书社:dependencies"/>
143 <variable name="dependencies" select="exsl:node-set($dependencies-fragment)"/>
145 <apply-templates select="@*|node()"/>
146 <for-each select="$dependencies/书社:dependency">
147 <书社vocab:hasDependencyOn rdf:resource="{.}"/>
149 <for-each select="$dependencies/书社:recursive-dependency">
150 <书社vocab:hasRecursiveDependencyOn rdf:resource="{.}"/>
154 <template match="@*|node()">
156 <apply-templates select="@*|node()"/>
159 <template match="书社vocab:SourceFile|书社vocab:IncludeFile" mode="书社:dependencies">
160 <if test="nie:interpretedAs/nfo:PlainTextDocument">
161 <call-template name="书社:process-dependencies">
162 <with-param name="unprocessed">
164 <value-of select="@rdf:about"/>
165 </书社:dependency-root>