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 "&#x02026;">
+  <!ENTITY nbsp   "&#x000A0;">
   <!ENTITY oacute "&#x000F3;">
   <!ENTITY THORN  "&#x000DE;">
   <!ENTITY rarr   "&#x02192;">
@@ -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,&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=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,&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>

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   "&#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
 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>


Reply via email to