Changeset 97677 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 24, 2022 5:06:05 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/glue-java.xsl
r96417 r97677 287 287 <xsl:template match="desc//*"> 288 288 <xsl:variable name="tagname" select="local-name()"/> 289 <xsl:value-of select="concat('<', $tagname)"/> 289 <xsl:choose> 290 <xsl:when test="$tagname = 'tt'"> 291 <xsl:text><code</xsl:text> 292 </xsl:when> 293 <xsl:otherwise> 294 <xsl:value-of select="concat('<', $tagname)"/> 295 </xsl:otherwise> 296 </xsl:choose> 290 297 <xsl:if test="$tagname = 'table'"> <!-- javadoc 8 fudge --> 291 298 <xsl:text> summary=""</xsl:text> … … 293 300 <xsl:text>></xsl:text> 294 301 <xsl:apply-templates/> 295 <xsl:value-of select="concat('</', $tagname, '>')"/> 302 <xsl:choose> 303 <xsl:when test="$tagname = 'tt'"> 304 <xsl:text></code></xsl:text> 305 </xsl:when> 306 <xsl:otherwise> 307 <xsl:value-of select="concat('</', $tagname, '>')"/> 308 </xsl:otherwise> 309 </xsl:choose> 296 310 </xsl:template> 297 311 … … 499 513 <xsl:apply-templates select="." mode="begin"/> 500 514 <xsl:apply-templates select="." mode="middle"/> 501 <xsl:text> Interface ID: < tt>{</xsl:text>515 <xsl:text> Interface ID: <code>{</xsl:text> 502 516 <xsl:call-template name="string-to-upper"> 503 517 <xsl:with-param name="str" select="../@uuid"/> 504 518 </xsl:call-template> 505 <xsl:text>}</ tt> */ </xsl:text>519 <xsl:text>}</code> */ </xsl:text> 506 520 </xsl:template> 507 521 … … 586 600 <xsl:apply-templates select="." mode="begin"/> 587 601 <xsl:apply-templates select="." mode="middle"/> 588 <xsl:text> Interface ID: < tt>{</xsl:text>602 <xsl:text> Interface ID: <code>{</xsl:text> 589 603 <xsl:call-template name="string-to-upper"> 590 604 <xsl:with-param name="str" select="../@uuid"/> 591 605 </xsl:call-template> 592 <xsl:text>}</ tt> */ </xsl:text>606 <xsl:text>}</code> */ </xsl:text> 593 607 </xsl:template> 594 608
Note:
See TracChangeset
for help on using the changeset viewer.