Use nbsp to make space explicit and hinder the browser to break after and before the singlequote.

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1732349 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: 243454e484
This commit is contained in:
Felix Schumacher 2016-02-25 19:20:18 +00:00
parent 77ae4c5693
commit ff2f99a746
2 changed files with 5 additions and 3 deletions

View File

@ -17,6 +17,7 @@
-->
<!DOCTYPE document [
<!ENTITY hellip "&#x02026;">
<!ENTITY nbsp "&#x000A0;">
<!ENTITY oacute "&#x000F3;">
<!ENTITY THORN "&#x000DE;">
<!ENTITY rarr "&#x02192;">
@ -4168,7 +4169,7 @@ To skip EOL checking, set tcp.eolByte=1000 (or some other value which is not a v
</li>
<li>
Leading and trailing spaces are trimmed from variable names in function calls.
For example, ${__Random(1,63, LOTTERY )} will use the variable 'LOTTERY' rather than ' LOTTERY '.
For example, ${__Random(1,63,&nbsp;LOTTERY&nbsp;)} will use the variable 'LOTTERY' rather than '&nbsp;LOTTERY&nbsp;'.
</li>
<li>
Synchronization has been removed from the RunningSample class (it was not fully threadsafe anyway).
@ -4263,7 +4264,7 @@ To skip EOL checking, set tcp.eolByte=1000 (or some other value which is not a v
<li>JUnit sampler GUI now also finds Test classes defined in user.classpath</li>
<li>
Leading and trailing spaces are trimmed from variable names in function calls.
For example, ${__Random(1,63, LOTTERY )} will use the variable 'LOTTERY' rather than ' LOTTERY '
For example, ${__Random(1,63,&nbsp;LOTTERY&nbsp;)} will use the variable 'LOTTERY' rather than '&nbsp;LOTTERY&nbsp;'
</li>
<li>Webservice(SOAP) Sampler can now load local WSDL files using the file: protocol</li>
<li><bugzilla>44872</bugzilla> - Add "All Files" filter to Open File dialogs</li>

View File

@ -22,6 +22,7 @@
<!ENTITY ccedil "&#x000E7;" >
<!ENTITY eacute "&#x000E9;" >
<!ENTITY hellip "&#x02026;" >
<!ENTITY nbsp "&#x000A0;" >
<!ENTITY yen "&#x000A5;" >
]>
@ -86,7 +87,7 @@ For example if <code>UNDEF</code> is not defined as a variable, then the value o
Variables, functions (and properties) are all case-sensitive.
<b>
JMeter trims spaces from variable names before use, so for example
<code>${__Random(1,63, LOTTERY )}</code> will use the variable '<code>LOTTERY</code>' rather than '<code> LOTTERY </code>'.
<code>${__Random(1,63,&nbsp;LOTTERY&nbsp;)}</code> will use the variable '<code>LOTTERY</code>' rather than '<code>&nbsp;LOTTERY&nbsp;</code>'.
</b>
</p>
<note>