X-Git-Url: https://git.ladys.computer/Shushe/blobdiff_plain/e4f65cee884c40d631209b5cbb711de161a2969a..15648b660cd14e2834629ad52b65ceb313362c9b:/transforms/metadata.xslt diff --git a/transforms/metadata.xslt b/transforms/metadata.xslt index d4be493..c481750 100644 --- a/transforms/metadata.xslt +++ b/transforms/metadata.xslt @@ -1,36 +1,31 @@ <?xml version="1.0"?> <!-- -⁌ ⛩️📰 书社 ∷ transforms/metadata.xslt +SPDX-FileCopyrightText: 2023, 2024 Lady <https://www.ladys.computer/about/#lady> +SPDX-License-Identifier: MPL-2.0 +--> +<!-- +⁌ ⛩📰 书社 ∷ transforms/metadata.xslt -© 2023 Lady [@ Lady’s Computer] +© 2023–2024 Lady [@ Ladys 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/>. --> +<!DOCTYPE transform [ + <!ENTITY attoplevel "not(ancestor::html:template) and ancestor::html:*[@itemscope and @itemtype='&书社;:document'] and not(ancestor::html:*[@itemscope]/ancestor::html:*[@itemscope and @itemtype='&书社;:document'] or preceding::html:*[@itemtype='&书社;:document'])"> + <!ENTITY xhtml "http://www.w3.org/1999/xhtml"> + <!ENTITY 书社 "urn:fdc:ladys.computer:20231231:Shu1She4"> +]> <transform xmlns="http://www.w3.org/1999/XSL/Transform" - xmlns:html="http://www.w3.org/1999/xhtml" - xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" - exclude-result-prefixes="书社" + xmlns:html="&xhtml;" + xmlns:书社="&书社;" version="1.0" > - <template match="html:*[@itemscope][1]//html:meta[not(@name) and starts-with(@itemprop, 'urn:fdc:ladys.computer:20231231:Shu1She4:')]"> - <comment> - <text>[书社:META] </text> - <value-of select="substring-after(@itemprop, 'urn:fdc:ladys.computer:20231231:Shu1She4:')"/> - <text>: </text> + <书社:id>urn:fdc:ladys.computer:20231231:Shu1She4:metadata.xslt</书社:id> + <template match="html:meta[not(@name) and @itemprop='&书社;:title'][&attoplevel;]" mode="书社:metadata"> + <element name="title" namespace="&xhtml;"> <value-of select="@content"/> - </comment> - </template> - <template match="comment()[starts-with(., '[书社:META] ')]" mode="书社:metadata"> - <variable name="property" select="substring-before(substring-after(., '[书社:META] '), ': ')"/> - <variable name="value" select="substring-after(., concat('[书社:META] ', $property, ': '))"/> - <choose> - <when test="$property='title'"> - <html:title> - <value-of select="$value"/> - </html:title> - </when> - </choose> + </element> </template> </transform>