3 ⁌ ⛩️📰 书社 ∷ lib/catalog2parser.xslt
5 © 2023–2024 Lady [@ Lady’s Computer]
7 This Source Code Form is subject to the terms of the Mozilla Public License, v 2.0.
8 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/>.
11 xmlns="http://www.w3.org/1999/XSL/Transform"
12 xmlns:catalog="urn:oasis:names:tc:entity:xmlns:xml:catalog"
13 xmlns:exsl="http://exslt.org/common"
14 xmlns:exslstr="http://exslt.org/strings"
15 xmlns:html="http://www.w3.org/1999/xhtml"
16 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
17 xmlns:xslt="http://www.w3.org/1999/XSL/TransformAlias"
18 xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
19 exclude-result-prefixes="catalog exslstr"
22 <namespace-alias stylesheet-prefix="xslt" result-prefix="#default"/>
24 <xslt:transform version="1.0">
25 <xslt:variable name="书社:parsers">
27 <for-each select="//catalog:uri">
28 <variable name="parser" select="document(@uri, .)"/>
31 <value-of select="@name"/>
34 <when test="$parser/*/@书社:supported-media-types">
35 <for-each select="exslstr:tokenize($parser/*/@书社:supported-media-types)">
36 <if test="not(translate(., '0123456789abcdefghijklmnopqrstuvwxyz!#$&-^_.+/', ''))">
38 <value-of select="."/>
44 <for-each select="$parser//xsl:template[not(@name) and not(@mode)]">
45 <variable name="match" select="@match"/>
46 <for-each select="namespace::*[local-name() and string()='http://www.w3.org/1999/xhtml']">
47 <variable name="matchstart">
48 <value-of select="local-name()"/>
50 <text>script[@type=</text>
52 <if test="starts-with($match, $matchstart) and substring($match, string-length($match))=']' and contains($match, '/')">
53 <variable name="inner" select="substring-before(substring-after($match, $matchstart), ']')"/>
54 <if test="starts-with($inner, '"') and substring($inner, string-length($inner))='"' or starts-with($inner, "'") and substring($inner, string-length($inner))="'"">
55 <variable name="type" select="substring($inner, 2, string-length($inner)-2)"/>
56 <if test="not(translate($type, '0123456789abcdefghijklmnopqrstuvwxyz!#$&-^_.+/', ''))">
58 <value-of select="$type"/>
71 <for-each select="//catalog:uri">
72 <xslt:include href="{@uri}">
73 <if test="contains(@name, ':')">
74 <attribute name="书社:id">
75 <value-of select="@name"/>
80 <xslt:template name="书社:apply-parsed-by">
81 <xslt:param name="id"/>
82 <xslt:param name="result" select="/.."/>
83 <xslt:for-each select="$result/node()">
85 <xslt:attribute name="书社:parsed-by">
86 <xslt:value-of select="$id"/>
87 <xslt:if test="@书社:parsed-by">
88 <xslt:text> </xslt:text>
89 <xslt:value-of select="@书社:parsed-by"/>
92 <xslt:copy-of select="@*[not(namespace-uri()='urn:fdc:ladys.computer:20231231:Shu1She4' and local-name()='parsed-by')]|node()"/>
96 <xslt:template match="/">
97 <xslt:apply-templates select="node()" mode="书社:parse"/>
99 <xslt:template match="@*|node()" priority="-1">
101 <xslt:apply-templates select="@*|node()" mode="书社:parse"/>
104 <xslt:template match="html:script[@type]" mode="书社:parse" priority="1">
105 <xslt:variable name="parserdiv" select="exsl:node-set($书社:parsers)//html:div[html:dd=current()/@type]"/>
107 <xslt:when test="$parserdiv">
108 <xslt:variable name="result">
109 <xslt:apply-templates select="."/>
111 <xslt:variable name="reparsed-result">
112 <xslt:apply-templates select="exsl:node-set($result)/node()" mode="书社:parse"/>
114 <xslt:call-template name="书社:apply-parsed-by">
115 <xslt:with-param name="id" select="$parserdiv/html:dt"/>
116 <xslt:with-param name="result" select="exsl:node-set($reparsed-result)"/>
117 </xslt:call-template>
120 <xslt:apply-templates select="."/>
124 <xslt:template match="@*|node()" mode="书社:parse">
125 <xslt:apply-templates select="."/>
129 <output method="xml" encoding="UTF-8"/>