Skip to content

Commit

Permalink
Param fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Nov 2, 2023
1 parent 2e9eecd commit 5fb3c8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ exclude-result-prefixes="#all"
<xsl:param name="document-uri" as="xs:anyURI?" tunnel="yes"/>

<xsl:next-match>
<xsl:with-param name="about" select="$document-uri" tunnel="yes"/>
<xsl:with-param name="about" select="$document-uri"/>
</xsl:next-match>
</xsl:template>

Expand All @@ -509,7 +509,7 @@ exclude-result-prefixes="#all"
<xsl:param name="disabled" select="false()" as="xs:boolean"/>
<xsl:param name="auto" select="local-name() = 'nodeID' or starts-with(., $ldt:base)" as="xs:boolean"/>
<xsl:param name="document-uri" as="xs:anyURI?" tunnel="yes"/>
<xsl:param name="about" select="xs:anyURI($document-uri || 'id' || ac:uuid())" as="xs:anyURI?"/>
<xsl:param name="about" select="xs:anyURI($document-uri || '#id' || ac:uuid())" as="xs:anyURI?"/>

<xsl:choose>
<xsl:when test="not($type = 'hidden')">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ extension-element-prefixes="ixsl"
</xsl:choose>

<xsl:apply-templates select="@rdf:about | @rdf:nodeID" mode="#current">
<!-- <xsl:with-param name="type" select="if ($show-subject) then 'text' else 'hidden'"/>-->
<xsl:with-param name="type" select="if ($show-subject) then 'text' else 'hidden'"/>
</xsl:apply-templates>

<xsl:apply-templates select="." mode="bs2:TypeControl">
Expand Down

0 comments on commit 5fb3c8b

Please sign in to comment.