- Timestamp:
- Nov 24, 2014 1:21:30 PM (10 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/glue-java.xsl
r53243 r53385 219 219 </xsl:variable> 220 220 221 <!-- &, < and > must remain as they are or javadoc 8 throws a fit. --> 221 222 <xsl:variable name="rep4"> 222 <xsl:call-template name="string-trim"> 223 <xsl:with-param name="text" select="$rep3"/> 223 <xsl:call-template name="string-replace"> 224 <xsl:with-param name="haystack" select="$rep3"/> 225 <xsl:with-param name="needle" select="'&'"/> 226 <xsl:with-param name="replacement" select="'&amp;'"/> 224 227 </xsl:call-template> 225 228 </xsl:variable> 226 227 <xsl:value-of select="$rep4"/> 229 <xsl:variable name="rep5"> 230 <xsl:call-template name="string-replace"> 231 <xsl:with-param name="haystack" select="$rep4"/> 232 <xsl:with-param name="needle" select="'<'"/> 233 <xsl:with-param name="replacement" select="'&lt;'"/> 234 </xsl:call-template> 235 </xsl:variable> 236 <xsl:variable name="rep6"> 237 <xsl:call-template name="string-replace"> 238 <xsl:with-param name="haystack" select="$rep5"/> 239 <xsl:with-param name="needle" select="'>'"/> 240 <xsl:with-param name="replacement" select="'&gt;'"/> 241 </xsl:call-template> 242 </xsl:variable> 243 244 <xsl:variable name="rep7"> 245 <xsl:call-template name="string-trim"> 246 <xsl:with-param name="text" select="$rep6"/> 247 </xsl:call-template> 248 </xsl:variable> 249 250 <xsl:value-of select="$rep7"/> 228 251 </xsl:template> 229 252 … … 234 257 <xsl:template match="desc//*"> 235 258 <xsl:variable name="tagname" select="local-name()"/> 236 <xsl:value-of select="concat('<', $tagname, '>')"/> 259 <xsl:value-of select="concat('<', $tagname)"/> 260 <xsl:if test="$tagname = 'table'"> <!-- javadoc 8 fudge --> 261 <xsl:text> summary=""</xsl:text> 262 </xsl:if> 263 <xsl:text>></xsl:text> 237 264 <xsl:apply-templates/> 238 265 <xsl:value-of select="concat('</', $tagname, '>')"/> … … 412 439 <xsl:if test="result"> 413 440 <xsl:text> Expected result codes: </xsl:text> 414 <xsl:text><table > </xsl:text>441 <xsl:text><table summary=""> </xsl:text> 415 442 <xsl:for-each select="result"> 416 443 <xsl:text><tr></xsl:text> … … 426 453 <xsl:apply-templates select="text() | *[not(self::note or self::see or 427 454 self::result)]"/> 428 <xsl:text></td>< tr> </xsl:text>455 <xsl:text></td></tr> </xsl:text> 429 456 </xsl:for-each> 430 457 <xsl:text></table> </xsl:text> … … 446 473 <xsl:apply-templates select="." mode="begin"/> 447 474 <xsl:apply-templates select="." mode="middle"/> 448 <xsl:text> Interface ID: <tt>{</xsl:text>475 <xsl:text> Interface ID: <tt>{</xsl:text> 449 476 <xsl:call-template name="uppercase"> 450 477 <xsl:with-param name="str" select="../@uuid"/> … … 465 492 <xsl:with-param name="type" select="../@type"/> 466 493 <xsl:with-param name="safearray" select="../@safearray"/> 494 <xsl:with-param name="doubleescape">yes</xsl:with-param> 467 495 </xsl:call-template> 468 496 <xsl:text> </xsl:text> … … 483 511 <xsl:with-param name="type" select="../@type"/> 484 512 <xsl:with-param name="safearray" select="../@safearray"/> 513 <xsl:with-param name="doubleescape">yes</xsl:with-param> 485 514 </xsl:call-template> 486 515 <xsl:text> </xsl:text> … … 715 744 <xsl:param name="forceelem" /> 716 745 <xsl:param name="skiplisttype" /> 746 <xsl:param name="doubleescape" /> 717 747 718 748 <xsl:variable name="needarray" select="($safearray='yes') and not($forceelem='yes')" /> … … 722 752 <xsl:text>List</xsl:text> 723 753 <xsl:if test="not($skiplisttype='yes')"> 724 <xsl:text><</xsl:text> 754 <xsl:choose> 755 <xsl:when test="$doubleescape='yes'"> 756 <xsl:text>&lt;</xsl:text> 757 </xsl:when> 758 <xsl:otherwise> 759 <xsl:text><</xsl:text> 760 </xsl:otherwise> 761 </xsl:choose> 725 762 </xsl:if> 726 763 </xsl:if> … … 748 785 <xsl:when test="($needlist)"> 749 786 <xsl:if test="not($skiplisttype='yes')"> 750 <xsl:text>></xsl:text> 787 <xsl:choose> 788 <xsl:when test="$doubleescape='yes'"> 789 <xsl:text>&gt;</xsl:text> 790 </xsl:when> 791 <xsl:otherwise> 792 <xsl:text>></xsl:text> 793 </xsl:otherwise> 794 </xsl:choose> 751 795 </xsl:if> 752 796 </xsl:when> -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r53354 r53385 11485 11485 <param name="environment" type="wstring" dir="in" safearray="yes"> 11486 11486 <desc> 11487 <para>Environment variables that can be set while the command is being11487 Environment variables that can be set while the command is being 11488 11488 executed, in form of "NAME=VALUE"; one pair per entry. To unset a 11489 variable just set its name ("NAME") without a value.</para> 11490 <para>This parameter can be used to override environment variables set by 11489 variable just set its name ("NAME") without a value. 11490 11491 This parameter can be used to override environment variables set by 11491 11492 the guest session, which will be applied to the newly started process 11492 in any case. </para>11493 in any case. 11493 11494 </desc> 11494 11495 </param> … … 11514 11515 <method name="processCreateEx"> 11515 11516 <desc> 11516 <para>Creates a new process running on the guest. Extended version for 11517 also setting the process priority and affinity.</para> 11518 11519 <para>See <link to="IGuestSession::processCreate"/> for more 11520 information.</para> 11517 Creates a new process running on the guest. Extended version for 11518 also setting the process priority and affinity. 11519 11520 See <link to="IGuestSession::processCreate"/> for more information. 11521 11521 </desc> 11522 11522 <param name="command" type="wstring" dir="in"> … … 11531 11531 <param name="environment" type="wstring" dir="in" safearray="yes"> 11532 11532 <desc> 11533 <para>Environment variables that can be set while the command is being11533 Environment variables that can be set while the command is being 11534 11534 executed, in form of "NAME=VALUE"; one pair per entry. To unset a 11535 variable just set its name ("NAME") without a value.</para> 11536 <para>This parameter can be used to override environment variables set by 11535 variable just set its name ("NAME") without a value. 11536 11537 This parameter can be used to override environment variables set by 11537 11538 the guest session, which will be applied to the newly started process 11538 in any case. </para>11539 in any case. 11539 11540 </desc> 11540 11541 </param>
Note:
See TracChangeset
for help on using the changeset viewer.