VirtualBox

Changeset 97677 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Nov 24, 2022 5:06:05 PM (2 years ago)
Author:
vboxsync
Message:

Main/glue-java.xsl: Turn "tt" tags into "code" ones since recent javadoc is picky.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/glue-java.xsl

    r96417 r97677  
    287287<xsl:template match="desc//*">
    288288  <xsl:variable name="tagname" select="local-name()"/>
    289   <xsl:value-of select="concat('&lt;', $tagname)"/>
     289  <xsl:choose>
     290    <xsl:when test="$tagname = 'tt'">
     291      <xsl:text>&lt;code</xsl:text>
     292    </xsl:when>
     293    <xsl:otherwise>
     294      <xsl:value-of select="concat('&lt;', $tagname)"/>
     295    </xsl:otherwise>
     296  </xsl:choose>
    290297  <xsl:if test="$tagname = 'table'"> <!-- javadoc 8 fudge -->
    291298    <xsl:text> summary=""</xsl:text>
     
    293300  <xsl:text>&gt;</xsl:text>
    294301  <xsl:apply-templates/>
    295   <xsl:value-of select="concat('&lt;/', $tagname, '&gt;')"/>
     302  <xsl:choose>
     303    <xsl:when test="$tagname = 'tt'">
     304      <xsl:text>&lt;/code&gt;</xsl:text>
     305    </xsl:when>
     306    <xsl:otherwise>
     307      <xsl:value-of select="concat('&lt;/', $tagname, '&gt;')"/>
     308    </xsl:otherwise>
     309  </xsl:choose>
    296310</xsl:template>
    297311
     
    499513  <xsl:apply-templates select="." mode="begin"/>
    500514  <xsl:apply-templates select="." mode="middle"/>
    501   <xsl:text>&#10;&#10;Interface ID: &lt;tt&gt;{</xsl:text>
     515  <xsl:text>&#10;&#10;Interface ID: &lt;code&gt;{</xsl:text>
    502516  <xsl:call-template name="string-to-upper">
    503517    <xsl:with-param name="str" select="../@uuid"/>
    504518  </xsl:call-template>
    505   <xsl:text>}&lt;/tt&gt;&#10;*/&#10;</xsl:text>
     519  <xsl:text>}&lt;/code&gt;&#10;*/&#10;</xsl:text>
    506520</xsl:template>
    507521
     
    586600  <xsl:apply-templates select="." mode="begin"/>
    587601  <xsl:apply-templates select="." mode="middle"/>
    588   <xsl:text>&#10;Interface ID: &lt;tt&gt;{</xsl:text>
     602  <xsl:text>&#10;Interface ID: &lt;code&gt;{</xsl:text>
    589603  <xsl:call-template name="string-to-upper">
    590604    <xsl:with-param name="str" select="../@uuid"/>
    591605  </xsl:call-template>
    592   <xsl:text>}&lt;/tt&gt;&#10;*/&#10;</xsl:text>
     606  <xsl:text>}&lt;/code&gt;&#10;*/&#10;</xsl:text>
    593607</xsl:template>
    594608
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette