Author: fschumacher
Date: Thu Feb 25 19:20:18 2016
New Revision: 1732349
URL: http://svn.apache.org/viewvc?rev=1732349&view=rev
Log:
Use nbsp to make space explicit and hinder the browser to break after and
before the singlequote.
Modified:
jmeter/trunk/xdocs/changes_history.xml
jmeter/trunk/xdocs/usermanual/functions.xml
Modified: jmeter/trunk/xdocs/changes_history.xml
URL:
http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes_history.xml?rev=1732349&r1=1732348&r2=1732349&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes_history.xml (original)
+++ jmeter/trunk/xdocs/changes_history.xml Thu Feb 25 19:20:18 2016
@@ -17,6 +17,7 @@
-->
<!DOCTYPE document [
<!ENTITY hellip "…">
+ <!ENTITY nbsp " ">
<!ENTITY oacute "ó">
<!ENTITY THORN "Þ">
<!ENTITY rarr "→">
@@ -4168,7 +4169,7 @@ To skip EOL checking, set tcp.eolByte=10
</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, LOTTERY )} will use the variable
'LOTTERY' rather than ' LOTTERY '.
</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=10
<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, LOTTERY )} will use the variable
'LOTTERY' rather than ' LOTTERY '
</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>
Modified: jmeter/trunk/xdocs/usermanual/functions.xml
URL:
http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/functions.xml?rev=1732349&r1=1732348&r2=1732349&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/functions.xml (original)
+++ jmeter/trunk/xdocs/usermanual/functions.xml Thu Feb 25 19:20:18 2016
@@ -22,6 +22,7 @@
<!ENTITY ccedil "ç" >
<!ENTITY eacute "é" >
<!ENTITY hellip "…" >
+<!ENTITY nbsp " " >
<!ENTITY yen "¥" >
]>
@@ -86,7 +87,7 @@ For example if <code>UNDEF</code> is not
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, LOTTERY )}</code> will use the variable
'<code>LOTTERY</code>' rather than '<code> LOTTERY </code>'.
</b>
</p>
<note>