]> Lady’s Gitweb - Shushe/blobdiff - lib/catalog2transform.xslt
Provide source checksums to parsers and transforms
[Shushe] / lib / catalog2transform.xslt
index 22e71c88b7962baa8d7e37986bbd9b509d8cbdd0..5b7183e725418654b034c175be01b19677ebde7e 100644 (file)
@@ -26,11 +26,13 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
        <template match="/">
                <xslt:transform exclude-result-prefixes="catalog exsl exslstr" version="1.0">
                        <xslt:param name="BUILDTIME" select="'1972-12-31T00:00:00Z'"/>
+                       <xslt:param name="CKSUM" select="false"/>
                        <xslt:param name="CATALOG" select="'catalog'"/>
-                       <xslt:param name="SRCTIME" select="'1972-12-31T00:00:00Z'"/>
+                       <xslt:param name="GENERATOR" select="false"/>
                        <xslt:param name="PATH" select="'/unknown'"/>
-                       <xslt:param name="VERSION" select="false"/>
                        <xslt:param name="SRCREV" select="false"/>
+                       <xslt:param name="SRCTIME" select="'1972-12-31T00:00:00Z'"/>
+                       <xslt:param name="VERSION" select="false"/>
                        <xslt:variable name="书社:expansion">
                                <xslt:apply-templates select="/" mode="书社:expand"/>
                        </xslt:variable>
@@ -121,10 +123,13 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
                        <xslt:template match="text()" mode="书社:footer"/>
                        <xslt:template match="text()" mode="书社:metadata"/>
                        <xslt:template match="/" mode="书社:wrap">
+                               <xslt:variable name="modalinput">
+                                       <xslt:copy-of select="node()"/>
+                                       <xslt:copy-of select="document('')/xslt:transform/xslt:include"/>
+                               </xslt:variable>
                                <xslt:variable name="metadata">
-                                       <xslt:copy-of select="html:html/html:head/node()"/>
-                                       <xslt:apply-templates select="." mode="书社:metadata"/>
-                                       <xslt:apply-templates select="document('')/xslt:transform/xslt:include" mode="书社:metadata"/>
+                                       <xslt:copy-of select="html:html/html:head/node()|html:head/node()"/>
+                                       <xslt:apply-templates select="exsl:node-set($modalinput)" mode="书社:metadata"/>
                                </xslt:variable>
                                <html:html>
                                        <xslt:if test="$VERSION">
@@ -132,19 +137,29 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
                                                        <xslt:value-of select="$VERSION"/>
                                                </xslt:attribute>
                                        </xslt:if>
-                                       <xslt:copy-of select="html:html/@*|*/@xml:lang|html:*/@lang|svg:*/@lang"/>
+                                       <xslt:copy-of select="html:html/@*"/>
+                                       <xslt:if test="not(html:html/@lang) and (html:*/@lang|svg:*/@lang|*/@xml:lang)">
+                                               <xslt:attribute name="lang">
+                                                       <xslt:value-of select="html:*/@lang|svg:*/@lang|*/@xml:lang"/>
+                                               </xslt:attribute>
+                                       </xslt:if>
+                                       <xslt:if test="not(html:html/@xml:lang) and (html:*/@lang|svg:*/@lang|*/@xml:lang)">
+                                               <xslt:attribute name="xml:lang">
+                                                       <xslt:value-of select="html:*/@lang|svg:*/@lang|*/@xml:lang"/>
+                                               </xslt:attribute>
+                                       </xslt:if>
                                        <html:head>
-                                               <xslt:copy-of select="html:html/html:head/@*"/>
+                                               <xslt:copy-of select="html:html/html:head/@*|html:head/@*"/>
                                                <html:title>
                                                        <xslt:for-each select="exsl:node-set($metadata)/html:title">
                                                                <xslt:value-of select="."/>
                                                        </xslt:for-each>
                                                </html:title>
-                                               <xslt:copy-of select="exsl:node-set($metadata)/node()[self::comment() or self::* and not(self::html:title)]"/>
-                                               <xslt:if test="not(exsl:node-set($metadata)/html:meta[@name='generator'])">
+                                               <xslt:copy-of select="exsl:node-set($metadata)/node()[not(self::*) or not(self::html:title)]"/>
+                                               <xslt:if test="$GENERATOR and not(exsl:node-set($metadata)/html:meta[@name='generator'])">
                                                        <html:meta name="generator">
                                                                <xslt:attribute name="content">
-                                                                       <xslt:text>⛩️📰 书社</xslt:text>
+                                                                       <xslt:value-of select="$GENERATOR"/>
                                                                        <xslt:if test="$VERSION">
                                                                                <xslt:text> (</xslt:text>
                                                                                <xslt:value-of select="$VERSION"/>
@@ -156,11 +171,9 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one
                                        </html:head>
                                        <html:body>
                                                <xslt:copy-of select="html:html/html:body/@*|html:body/@*"/>
-                                               <xslt:apply-templates select="document('')/xslt:transform/xslt:include" mode="书社:header"/>
-                                               <xslt:apply-templates select="." mode="书社:header"/>
-                                               <xslt:copy-of select="node()[not(self::html:html or self::html:body)]|html:html/node()[not(self::html:head or self::html:body)]|html:html/html:body/node()|html:body/node()"/>
-                                               <xslt:apply-templates select="." mode="书社:footer"/>
-                                               <xslt:apply-templates select="document('')/xslt:transform/xslt:include" mode="书社:footer"/>
+                                               <xslt:apply-templates select="exsl:node-set($modalinput)" mode="书社:header"/>
+                                               <xslt:copy-of select="node()[not(self::html:html or self::html:head or self::html:body)]|html:html/node()[not(self::html:head or self::html:body)]|html:html/html:body/node()|html:body/node()"/>
+                                               <xslt:apply-templates select="exsl:node-set($modalinput)" mode="书社:footer"/>
                                        </html:body>
                                </html:html>
                        </xslt:template>
This page took 0.027404 seconds and 4 git commands to generate.