]> Lady’s Gitweb - Shushe/blobdiff - lib/catalog2parser.xslt
Remember types in parser
[Shushe] / lib / catalog2parser.xslt
index d044503332104cc0e175a02a593112b6e1ac3590..ead56da91dab9bd2916beda213937a7100703e2c 100644 (file)
@@ -2,7 +2,7 @@
 <!--
 ⁌ ⛩️📰 书社 ∷ lib/catalog2parser.xslt
 
-© 2023 Lady [@ Lady’s Computer]
+© 2023–2024 Lady [@ Lady’s Computer]
 
 This Source Code Form is subject to the terms of the Mozilla Public License, v 2.0.
 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/>.
@@ -10,21 +10,78 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
 <transform
        xmlns="http://www.w3.org/1999/XSL/Transform"
        xmlns:catalog="urn:oasis:names:tc:entity:xmlns:xml:catalog"
-       xmlns:xsla="http://www.w3.org/1999/XSL/TransformAlias"
-       exclude-result-prefixes="catalog"
+       xmlns:exslstr="http://exslt.org/strings"
+       xmlns:html="http://www.w3.org/1999/xhtml"
+       xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+       xmlns:xslt="http://www.w3.org/1999/XSL/TransformAlias"
+       xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
+       exclude-result-prefixes="catalog exslstr"
        version="1.0"
 >
-       <namespace-alias stylesheet-prefix="xsla" result-prefix="#default"/>
+       <namespace-alias stylesheet-prefix="xslt" result-prefix="#default"/>
        <template match="/">
-               <xsla:transform version="1.0">
+               <xslt:transform version="1.0">
+                       <xslt:variable name="书社:parsers">
+                               <html:dl>
+                                       <for-each select="//catalog:uri">
+                                               <variable name="parser" select="document(@uri, .)"/>
+                                               <html:div>
+                                                       <html:dt>
+                                                               <value-of select="@name"/>
+                                                       </html:dt>
+                                                       <choose>
+                                                               <when test="$parser/*/@书社:supported-media-types">
+                                                                       <for-each select="exslstr:tokenize($parser/*/@书社:supported-media-types)">
+                                                                               <if test="not(translate(., '0123456789abcdefghijklmnopqrstuvwxyz!#$&#x26;-^_.+/', ''))">
+                                                                                       <html:dd>
+                                                                                               <value-of select="."/>
+                                                                                       </html:dd>
+                                                                               </if>
+                                                                       </for-each>
+                                                               </when>
+                                                               <otherwise>
+                                                                       <for-each select="$parser//xsl:template[not(@name) and not(@mode)]">
+                                                                               <variable name="match" select="@match"/>
+                                                                               <for-each select="namespace::*[local-name() and string()='http://www.w3.org/1999/xhtml']">
+                                                                                       <variable name="matchstart">
+                                                                                               <value-of select="local-name()"/>
+                                                                                               <text>:</text>
+                                                                                               <text>script[@type=</text>
+                                                                                       </variable>
+                                                                                       <if test="starts-with($match, $matchstart) and substring($match, string-length($match))=']' and contains($match, '/')">
+                                                                                               <variable name="inner" select="substring-before(substring-after($match, $matchstart), ']')"/>
+                                                                                               <if test="starts-with($inner, '&#x22;') and substring($inner, string-length($inner))='&#x22;' or starts-with($inner, &#x22;'&#x22;) and substring($inner, string-length($inner))=&#x22;'&#x22;">
+                                                                                                       <variable name="type" select="substring($inner, 2, string-length($inner)-2)"/>
+                                                                                                       <if test="not(translate($type, '0123456789abcdefghijklmnopqrstuvwxyz!#$&#x26;-^_.+/', ''))">
+                                                                                                               <html:dd>
+                                                                                                                       <value-of select="$type"/>
+                                                                                                               </html:dd>
+                                                                                                       </if>
+                                                                                               </if>
+                                                                                       </if>
+                                                                               </for-each>
+                                                                       </for-each>
+                                                               </otherwise>
+                                                       </choose>
+                                               </html:div>
+                                       </for-each>
+                               </html:dl>
+                       </xslt:variable>
                        <for-each select="//catalog:uri">
-                               <xsla:include href="{@uri}"/>
+                               <xslt:include href="{@uri}">
+                                       <if test="contains(@name, ':')">
+                                               <attribute name="书社:id">
+                                                       <value-of select="@name"/>
+                                               </attribute>
+                                       </if>
+                               </xslt:include>
                        </for-each>
-                       <xsla:template match="@*|node()" priority="-1">
-                               <xsla:copy>
-                                       <xsla:apply-templates select="@*|node()"/>
-                               </xsla:copy>
-                       </xsla:template>
-               </xsla:transform>
+                       <xslt:template match="@*|node()" priority="-1">
+                               <xslt:copy>
+                                       <xslt:apply-templates select="@*|node()"/>
+                               </xslt:copy>
+                       </xslt:template>
+               </xslt:transform>
        </template>
+       <output method="xml" encoding="UTF-8"/>
 </transform>
This page took 0.144124 seconds and 4 git commands to generate.