mirror of https://github.com/apache/jmeter.git
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:
parent
77ae4c5693
commit
ff2f99a746
|
|
@ -17,6 +17,7 @@
|
||||||
-->
|
-->
|
||||||
<!DOCTYPE document [
|
<!DOCTYPE document [
|
||||||
<!ENTITY hellip "…">
|
<!ENTITY hellip "…">
|
||||||
|
<!ENTITY nbsp " ">
|
||||||
<!ENTITY oacute "ó">
|
<!ENTITY oacute "ó">
|
||||||
<!ENTITY THORN "Þ">
|
<!ENTITY THORN "Þ">
|
||||||
<!ENTITY rarr "→">
|
<!ENTITY rarr "→">
|
||||||
|
|
@ -4168,7 +4169,7 @@ To skip EOL checking, set tcp.eolByte=1000 (or some other value which is not a v
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Leading and trailing spaces are trimmed from variable names in function calls.
|
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, LOTTERY )} will use the variable 'LOTTERY' rather than ' LOTTERY '.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Synchronization has been removed from the RunningSample class (it was not fully threadsafe anyway).
|
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>JUnit sampler GUI now also finds Test classes defined in user.classpath</li>
|
||||||
<li>
|
<li>
|
||||||
Leading and trailing spaces are trimmed from variable names in function calls.
|
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, LOTTERY )} will use the variable 'LOTTERY' rather than ' LOTTERY '
|
||||||
</li>
|
</li>
|
||||||
<li>Webservice(SOAP) Sampler can now load local WSDL files using the file: protocol</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>
|
<li><bugzilla>44872</bugzilla> - Add "All Files" filter to Open File dialogs</li>
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@
|
||||||
<!ENTITY ccedil "ç" >
|
<!ENTITY ccedil "ç" >
|
||||||
<!ENTITY eacute "é" >
|
<!ENTITY eacute "é" >
|
||||||
<!ENTITY hellip "…" >
|
<!ENTITY hellip "…" >
|
||||||
|
<!ENTITY nbsp " " >
|
||||||
<!ENTITY yen "¥" >
|
<!ENTITY yen "¥" >
|
||||||
]>
|
]>
|
||||||
|
|
||||||
|
|
@ -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.
|
Variables, functions (and properties) are all case-sensitive.
|
||||||
<b>
|
<b>
|
||||||
JMeter trims spaces from variable names before use, so for example
|
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, LOTTERY )}</code> will use the variable '<code>LOTTERY</code>' rather than '<code> LOTTERY </code>'.
|
||||||
</b>
|
</b>
|
||||||
</p>
|
</p>
|
||||||
<note>
|
<note>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue