]> Lady’s Gitweb - Shushe/blob - lib/metadata2destinations.xslt
Replace source catalog with metadata file
[Shushe] / lib / metadata2destinations.xslt
1 <?xml version="1.0"?>
2 <!--
3 SPDX-FileCopyrightText: 2023, 2024 Lady <https://www.ladys.computer/about/#lady>
4 SPDX-License-Identifier: MPL-2.0
5 -->
6 <!--
7 ⁌ ⛩️📰 书社 ∷ lib/metadata2destinations.xslt
8
9 © 2024 Lady [@ Lady’s Computer].
10
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/>.
13 -->
14 <transform
15 xmlns="http://www.w3.org/1999/XSL/Transform"
16 xmlns:dct="http://purl.org/dc/terms/"
17 xmlns:exslstr="http://exslt.org/strings"
18 xmlns:nie="http://www.semanticdesktop.org/ontologies/2007/01/19/nie#"
19 xmlns:nfo="http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#"
20 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
21 xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
22 extension-element-prefixes="exslstr"
23 version="1.0"
24 >
25 <template match="/">
26 <for-each select="/rdf:RDF/nfo:LocalFileDataObject[starts-with(@rdf:about, 'about:shushe?source=')]">
27 <choose>
28 <when test="nie:interpretedAs/nfo:PlainTextDocument and dct:hasFormat/*/nie:interpretedAs/*[@nie:mimeType='application/xml']">
29 <variable name="destination" select="document(dct:hasFormat/*[nie:interpretedAs/*[@nie:mimeType='application/xml']]/@nfo:fileUrl[1])/*/@书社:destination"/>
30 <value-of select="@rdf:about"/>
31 <text>|</text>
32 <choose>
33 <when test="$destination">
34 <value-of select="$destination"/>
35 </when>
36 <otherwise>
37 <value-of select="substring-after(@rdf:about, 'about:shushe?source=')"/>
38 </otherwise>
39 </choose>
40 <text>&#xA;</text>
41 </when>
42 <otherwise>
43 <value-of select="@rdf:about"/>
44 <text>|</text>
45 <value-of select="substring-after(@rdf:about, 'about:shushe?source=')"/>
46 <text>&#xA;</text>
47 </otherwise>
48 </choose>
49 </for-each>
50 </template>
51 <output method="text" encoding="UTF-8"/>
52 </transform>
This page took 0.093018 seconds and 5 git commands to generate.