- Timestamp:
- Jun 11, 2015 3:22:04 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100960
- Location:
- trunk/doc/manual
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/docbook-refentry-to-C-help.xsl
r56367 r56368 563 563 <xsl:template name="calc-scope-consts-from-remark"> 564 564 <xsl:param name="sCondition" select="remark/@condition"/> 565 <xsl:variable name="sNormalized" select=" normalize-space(translate($sCondition, ',;:', ' '))"/>566 <xsl:if test="$sNormalized = ' '">565 <xsl:variable name="sNormalized" select="concat(normalize-space(translate($sCondition, ',;:|', ' ')), ' ')"/> 566 <xsl:if test="$sNormalized = ' ' or $sNormalized = ''"> 567 567 <xsl:message terminate="yes">Empty @condition for help-scope remark.</xsl:message> 568 568 </xsl:if> 569 <xsl:text>HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($s List, ' ')"/>569 <xsl:text>HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sNormalized, ' ')"/> 570 570 <xsl:call-template name="calc-scope-const-from-remark-worker"> 571 571 <xsl:with-param name="sList" select="substring-after($sNormalized, ' ')"/> … … 575 575 <xsl:template name="calc-scope-const-from-remark-worker"> 576 576 <xsl:param name="sList"/> 577 <xsl:if test="$ List != ''">577 <xsl:if test="$sList != ''"> 578 578 <xsl:text> | HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sList, ' ')"/> 579 579 <xsl:call-template name="calc-scope-const-from-remark-worker"> -
trunk/doc/manual/en_US/man_VBoxManage_extpack.xml
r56367 r56368 115 115 </refsect1> 116 116 117 <refsect1> <!-- no id attr here => global scope. -->117 <refsect1> 118 118 <title>Examples</title> 119 <para>How to list extension packs: 119 <remark role="help-scope" condition="EXTPACK_UNINSTALL,EXTPACK"/> 120 <para> 121 How to list extension packs: 120 122 <screen>$ VBoxManage list extpacks 121 123 Extension Packs: 1
Note:
See TracChangeset
for help on using the changeset viewer.