Changeset 93708 in vbox for trunk/doc/manual/docbook-refentry-to-H-help.xsl
- Timestamp:
- Feb 11, 2022 8:46:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/docbook-refentry-to-H-help.xsl
r82969 r93708 65 65 <xsl:value-of select="$sBaseNm"/> 66 66 <xsl:value-of select="substring(' ',1,56 - string-length($sBaseNm) - 11)"/> 67 <xsl:text> RT_BIT_ 32(HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_BIT)67 <xsl:text> RT_BIT_64(HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_BIT) 68 68 HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_BIT = 0</xsl:text> 69 69 … … 80 80 <xsl:value-of select="$sSubNm"/> 81 81 <xsl:value-of select="substring(' ',1,56 - string-length($sSubNm))"/> 82 <xsl:text> RT_BIT_ 32(</xsl:text><xsl:value-of select="$sSubNm"/><xsl:text>_BIT)82 <xsl:text> RT_BIT_64(</xsl:text><xsl:value-of select="$sSubNm"/><xsl:text>_BIT) 83 83 </xsl:text> 84 84 <xsl:value-of select="$sSubNm"/><xsl:text>_BIT</xsl:text> 85 85 </xsl:for-each> 86 86 87 <!-- Add scoping info for refsect1 , refsect2 and refsect3IDs that aren't part of the synopsis. -->88 <xsl:for-each select=".//refsect1[@id] | .//refsect2[@id] | .//refsect3[@id]">87 <!-- Add scoping info for refsect1 and refsect2 IDs that aren't part of the synopsis. --> 88 <xsl:for-each select=".//refsect1[@id] | .//refsect2[@id]"> 89 89 <xsl:variable name="sThisId" select="@id"/> 90 90 <xsl:if test="not($RefEntry[@id = $sThisId]) and not($RefEntry/refsynopsisdiv/cmdsynopsis[@id = concat('synopsis-', $sThisId)])"> … … 108 108 <xsl:value-of select="$sSubNm"/> 109 109 <xsl:value-of select="substring(' ',1,56 - string-length($sSubNm))"/> 110 <xsl:text> RT_BIT_ 32(</xsl:text><xsl:value-of select="$sSubNm"/><xsl:text>_BIT)110 <xsl:text> RT_BIT_64(</xsl:text><xsl:value-of select="$sSubNm"/><xsl:text>_BIT) 111 111 </xsl:text> 112 112 <xsl:value-of select="$sSubNm"/><xsl:text>_BIT</xsl:text> … … 118 118 HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END 119 119 }; 120 AssertCompile((int)HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END >= 1); 121 AssertCompile((int)HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END < 64); 122 AssertCompile(RT_BIT_64(HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END - 1) & RTMSGREFENTRYSTR_SCOPE_MASK); 120 123 </xsl:text> 121 124 </xsl:when>
Note:
See TracChangeset
for help on using the changeset viewer.