Skip to content
Snippets Groups Projects
Commit 5174c069 authored by Frank Steinberg's avatar Frank Steinberg
Browse files

Fixes.

parent 4e8f0a6f
No related branches found
No related tags found
No related merge requests found
...@@ -19,14 +19,14 @@ ...@@ -19,14 +19,14 @@
<xsl:variable name="snippetid"> <xsl:variable name="snippetid">
<xsl:choose> <xsl:choose>
<xsl:when test="document(concat('../',$snippet))/bjcp:styleguide/bjcp:category/bjcp:subcategory/bjcp:subcategory"> <xsl:when test="document($snippet)/bjcp:styleguide/bjcp:category/bjcp:subcategory/bjcp:subcategory">
<xsl:value-of select="document(concat('../',$snippet))/bjcp:styleguide/bjcp:category/bjcp:subcategory/bjcp:subcategory[@id]/@id"/> <xsl:value-of select="document($snippet)/bjcp:styleguide/bjcp:category/bjcp:subcategory/bjcp:subcategory[@id]/@id"/>
</xsl:when> </xsl:when>
<xsl:when test="document(concat('../',$snippet))/bjcp:styleguide/bjcp:category/bjcp:subcategory"> <xsl:when test="document($snippet)/bjcp:styleguide/bjcp:category/bjcp:subcategory">
<xsl:value-of select="document(concat('../',$snippet))/bjcp:styleguide/bjcp:category/bjcp:subcategory[@id]/@id"/> <xsl:value-of select="document($snippet)/bjcp:styleguide/bjcp:category/bjcp:subcategory[@id]/@id"/>
</xsl:when> </xsl:when>
<xsl:when test="document(concat('../',$snippet))/bjcp:styleguide/bjcp:category"> <xsl:when test="document($snippet)/bjcp:styleguide/bjcp:category">
<xsl:value-of select="document(concat('../',$snippet))/bjcp:styleguide/bjcp:category[@id]/@id"/> <xsl:value-of select="document($snippet)/bjcp:styleguide/bjcp:category[@id]/@id"/>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<xsl:text>unknown</xsl:text> <xsl:text>unknown</xsl:text>
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
</xsl:variable> </xsl:variable>
<xsl:variable name="snippetnode" select="document(concat('../',$snippet))/bjcp:styleguide//bjcp:*[@id = $snippetid]"/> <xsl:variable name="snippetnode" select="document($snippet)/bjcp:styleguide//bjcp:*[@id = $snippetid]"/>
<!-- suppress these tags in translations --> <!-- suppress these tags in translations -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment