]> Lady’s Gitweb - Shushe/blobdiff - lib/catalog2transform.xslt
Automatically encapsulate metadata and preserve it
[Shushe] / lib / catalog2transform.xslt
index e7640e8c97e606f51899eee34c1324803e86ac54..08918b2a3cae6bc91f0b4a73f0dc2338f2174d5a 100644 (file)
@@ -12,6 +12,7 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
        xmlns:html="http://www.w3.org/1999/xhtml"
        xmlns:catalog="urn:oasis:names:tc:entity:xmlns:xml:catalog"
        xmlns:exsl="http://exslt.org/common"
        xmlns:html="http://www.w3.org/1999/xhtml"
        xmlns:catalog="urn:oasis:names:tc:entity:xmlns:xml:catalog"
        xmlns:exsl="http://exslt.org/common"
+       xmlns:exslstr="http://exslt.org/strings"
        xmlns:xlink="http://www.w3.org/1999/xlink"
        xmlns:xslt="http://www.w3.org/1999/XSL/TransformAlias"
        xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
        xmlns:xlink="http://www.w3.org/1999/xlink"
        xmlns:xslt="http://www.w3.org/1999/XSL/TransformAlias"
        xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
@@ -66,11 +67,39 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
                                        <xslt:apply-templates select="@*|node()"/>
                                </xslt:copy>
                        </xslt:template>
                                        <xslt:apply-templates select="@*|node()"/>
                                </xslt:copy>
                        </xslt:template>
-                       <xslt:template match="书社:link[@xlink:show='embed']" mode="书社:expand">
+                       <xslt:template match="/*" mode="书社:expand" priority="0">
+                               <xslt:copy>
+                                       <xslt:attribute name="itemscope">itemscope</xslt:attribute>
+                                       <xslt:attribute name="itemtype">
+                                               <xslt:text>urn:fdc:ladys.computer:20231231:Shu1She4:document</xslt:text>
+                                               <xslt:for-each select="exslstr:tokenize(@itemtype)/token">
+                                                       <xslt:text> </xslt:text>
+                                                       <xslt:value-of select="."/>
+                                               </xslt:for-each>
+                                       </xslt:attribute>
+                                       <xslt:apply-templates select="@*[not(namespace-uri()='' and (local-name()='itemscope' or local-name()='itemtype'))]|node()" mode="书社:expand"/>
+                               </xslt:copy>
+                       </xslt:template>
+                       <xslt:template match="书社:link[@xlink:show='embed']" mode="书社:expand" priority="1">
                                <xslt:variable name="uri" select="substring-before(document($catalog)//catalog:uri[@name=current()/@xlink:href]/@uri[1], '#')"/>
                                <xslt:choose>
                                        <xslt:when test="$uri">
                                <xslt:variable name="uri" select="substring-before(document($catalog)//catalog:uri[@name=current()/@xlink:href]/@uri[1], '#')"/>
                                <xslt:choose>
                                        <xslt:when test="$uri">
-                                               <xslt:apply-templates select="document($uri)" mode="书社:expand"/>
+                                               <xslt:variable name="expanded">
+                                                       <xslt:apply-templates select="document($uri)" mode="书社:expand"/>
+                                               </xslt:variable>
+                                               <xslt:for-each select="exsl:node-set($expanded)/*">
+                                                       <xslt:copy>
+                                                               <xslt:attribute name="itemscope">itemscope</xslt:attribute>
+                                                               <xslt:attribute name="itemtype">
+                                                                       <xslt:text>urn:fdc:ladys.computer:20231231:Shu1She4:embed</xslt:text>
+                                                                       <xslt:for-each select="exslstr:tokenize(@itemtype)/token[string()!='urn:fdc:ladys.computer:20231231:Shu1She4:document']">
+                                                                               <xslt:text> </xslt:text>
+                                                                               <xslt:value-of select="."/>
+                                                                       </xslt:for-each>
+                                                               </xslt:attribute>
+                                                               <xslt:copy-of select="@*[not(namespace-uri()='' and (local-name()='itemscope' or local-name()='itemtype'))]|node()"/>
+                                                       </xslt:copy>
+                                               </xslt:for-each>
                                        </xslt:when>
                                        <xslt:otherwise>
                                                <xslt:copy>
                                        </xslt:when>
                                        <xslt:otherwise>
                                                <xslt:copy>
@@ -79,7 +108,7 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
                                        </xslt:otherwise>
                                </xslt:choose>
                        </xslt:template>
                                        </xslt:otherwise>
                                </xslt:choose>
                        </xslt:template>
-                       <xslt:template match="@*|text()|*[not(self::书社:link) or not(@xlink:show='embed')]" mode="书社:expand">
+                       <xslt:template match="@*|text()|*[not(self::书社:link) or not(@xlink:show='embed')]" mode="书社:expand" priority="-1">
                                <xslt:copy>
                                        <xslt:apply-templates select="@*|node()" mode="书社:expand"/>
                                </xslt:copy>
                                <xslt:copy>
                                        <xslt:apply-templates select="@*|node()" mode="书社:expand"/>
                                </xslt:copy>
This page took 0.023433 seconds and 4 git commands to generate.