]> Lady’s Gitweb - Shushe/blob - lib/metadata2destinations.xslt
Simplify metadata using new 书社vocab terms
[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 [@ Ladys 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:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17 xmlns:书社vocab="urn:fdc:ladys.computer:20231231:Shu1She4:vocab:"
18 version="1.0"
19 >
20 <template match="/">
21 <for-each select="//书社vocab:SourceFile">
22 <value-of select="@rdf:about"/>
23 <text>|</text>
24 <value-of select="@书社vocab:destination"/>
25 <text>&#xA;</text>
26 </for-each>
27 </template>
28 <output method="text" encoding="UTF-8"/>
29 </transform>
This page took 0.064837 seconds and 5 git commands to generate.