3 SPDX-FileCopyrightText: 2024 Lady <https://www.ladys.computer/about/#lady>
4 SPDX-License-Identifier: MPL-2.0
7 ⁌ ⛩📰 书社 ∷ parsers/record-jar.xslt
9 © 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:exslstr="http://exslt.org/strings"
18 xmlns:html="http://www.w3.org/1999/xhtml"
19 xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
20 extension-element-prefixes="exsl exslstr"
23 <书社:id>urn:fdc:ladys.computer:20231231:Shu1She4:record-jar.xslt</书社:id>
24 <template match="html:script[@type='text/record-jar']">
25 <variable name="lines" select="exslstr:tokenize(., '
')"/>
27 <if test="starts-with($lines[1], '%%') and substring-after($lines[1], '%%')!=''">
29 <value-of select="substring-after($lines[1], '%%')"/>
32 <for-each select="$lines[not(position()=1) and starts-with(., '%%')]">
33 <variable name="end" select="."/>
34 <variable name="start" select="preceding-sibling::*[starts-with(., '%%')][1]"/>
35 <variable name="fields" select="($start/following-sibling::*|$lines[not($start)])[not(preceding-sibling::*[generate-id()=generate-id($end)]) and not(starts-with(., '%%'))]"/>
38 <for-each select="$fields">
40 <when test="starts-with(., ' ') and $fields[generate-id()=generate-id(current()/preceding-sibling::*[1])]"/>
42 <variable name="next" select="following-sibling::*[not(starts-with(., ' '))]"/>
45 <value-of select="normalize-space(substring-before(., ':'))"/>
48 <variable name="firstline">
50 <when test="contains(., ':')">
51 <value-of select="normalize-space(substring-after(., ':'))"/>
54 <value-of select="normalize-space(.)"/>
59 <when test="substring($firstline, string-length($firstline))='\' and following-sibling::*[position()=1 and starts-with(., ' ')]">
60 <value-of select="substring($firstline, 1, string-length($firstline)-1)"/>
63 <value-of select="$firstline"/>
66 <for-each select="following-sibling::*[starts-with(., ' ') and not(preceding-sibling::*[generate-id()=generate-id($next)])]">
67 <variable name="nextline" select="normalize-space(.)"/>
69 <when test="substring($nextline, string-length($nextline))='\' and following-sibling::*[position()=1 and starts-with(., ' ')]">
70 <value-of select="substring($nextline, 1, string-length($nextline)-1)"/>
73 <value-of select="$nextline"/>
84 <if test="substring-after(., '%%')!=''">
86 <value-of select="substring-after(., '%%')"/>