From: Lady <redacted> Date: Wed, 27 Mar 2024 03:57:31 +0000 (-0400) Subject: Correct syntax for X·Path booleans X-Git-Tag: 0.6.1~1 X-Git-Url: https://git.ladys.computer/Shushe/commitdiff_plain/9dc2d26c66e1ba4434231d63a6aa098cef83043d Correct syntax for X·Path booleans The correct syntax is `true()` and `false()`; `true` and `false` refer to elements with those names. --- diff --git a/lib/catalog2parser.xslt b/lib/catalog2parser.xslt index 1faa880..a834d15 100644 --- a/lib/catalog2parser.xslt +++ b/lib/catalog2parser.xslt @@ -23,11 +23,11 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one <template match="/"> <xslt:transform version="1.0"> <xslt:param name="BUILDTIME" select="'1972-12-31T00:00:00Z'"/> - <xslt:param name="CKSUM" select="false"/> - <xslt:param name="IDENTIFIER" select="false"/> - <xslt:param name="SRCREV" select="false"/> + <xslt:param name="CKSUM" select="false()"/> + <xslt:param name="IDENTIFIER" select="false()"/> + <xslt:param name="SRCREV" select="false()"/> <xslt:param name="SRCTIME" select="'1972-12-31T00:00:00Z'"/> - <xslt:param name="THISREV" select="false"/> + <xslt:param name="THISREV" select="false()"/> <xslt:variable name="书社:parsers"> <html:dl> <for-each select="//catalog:uri"> diff --git a/lib/catalog2transform.xslt b/lib/catalog2transform.xslt index b53e12a..ce00cc4 100644 --- a/lib/catalog2transform.xslt +++ b/lib/catalog2transform.xslt @@ -27,13 +27,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="CKSUM" select="false()"/> <xslt:param name="CATALOG" select="'catalog'"/> - <xslt:param name="IDENTIFIER" select="false"/> + <xslt:param name="IDENTIFIER" select="false()"/> <xslt:param name="PATH" select="'/unknown'"/> - <xslt:param name="SRCREV" select="false"/> + <xslt:param name="SRCREV" select="false()"/> <xslt:param name="SRCTIME" select="'1972-12-31T00:00:00Z'"/> - <xslt:param name="THISREV" select="false"/> + <xslt:param name="THISREV" select="false()"/> <xslt:variable name="书社:source" select="/"/> <xslt:variable name="书社:expansion"> <xslt:apply-templates select="$书社:source/node()" mode="书社:expand"/> @@ -51,7 +51,7 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one </xslt:include> </for-each> <xslt:template name="书社:apply-attributes"> - <xslt:param name="and-version" select="false"/> + <xslt:param name="and-version" select="false()"/> <xslt:param name="context-nodes" select="/.."/> <xslt:param name="destination-nodes" select="/.."/> <xslt:variable name="additional-attributes" select="$context-nodes/@*"/> @@ -230,7 +230,7 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one <xslt:choose> <xslt:when test="$result-nodes/@书社:disable-output-wrapping|exsl:node-set($书社:result)//书社:apply-attributes-to-root/@书社:disable-output-wrapping"> <xslt:call-template name="书社:apply-attributes"> - <xslt:with-param name="and-version" select="true"/> + <xslt:with-param name="and-version" select="true()"/> <xslt:with-param name="context-nodes" select="exsl:node-set($书社:result)//书社:apply-attributes-to-root"/> <xslt:with-param name="destination-nodes" select="$result-nodes"/> </xslt:call-template> @@ -242,7 +242,7 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one </xslt:call-template> </xslt:variable> <xslt:call-template name="书社:apply-attributes"> - <xslt:with-param name="and-version" select="true"/> + <xslt:with-param name="and-version" select="true()"/> <xslt:with-param name="context-nodes" select="exsl:node-set($书社:result)//书社:apply-attributes-to-root"/> <xslt:with-param name="destination-nodes" select="exsl:node-set($wrapped-result)/node()"/> </xslt:call-template>