You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2018/01/19 10:18:46 UTC

svn commit: r1821612 - in /jmeter/trunk/xdocs: changes.xml usermanual/component_reference.xml

Author: fschumacher
Date: Fri Jan 19 10:18:45 2018
New Revision: 1821612

URL: http://svn.apache.org/viewvc?rev=1821612&view=rev
Log:
Fix example in documentation for XPath Assertion

Contributed by Konstantin Kalinin (kkalinin at hotmail.com)
This closes #371 on github

Modified:
    jmeter/trunk/xdocs/changes.xml
    jmeter/trunk/xdocs/usermanual/component_reference.xml

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1821612&r1=1821611&r2=1821612&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Fri Jan 19 10:18:45 2018
@@ -204,6 +204,7 @@ Summary
     <li><bug>61970</bug>JMeter now uses english as default locale to avoid missing translations in some locales make UI look weird</li>
     <li><bug>56368</bug>Create and Deploy source artifacts to Maven central</li>
     <li><bug>61973</bug>Create and Deploy javadoc artifacts to Maven central</li>
+    <li><pr>371</pr>Fix example in documentation for <complink name="XPath Assertion"/>. Contributed by Konstantin Kalinin (kkalinin at hotmail.com)</li>
 </ul>
 
 <ch_section>Non-functional changes</ch_section>
@@ -316,6 +317,7 @@ Summary
     <li>Peter Doornbosch (https://bitbucket.org/pjtr/)</li>
     <li>Jeremy Arnold (jeremy at arnoldzoo.org)</li>
     <li>Vladimir Sitnikov (sitnikov.vladimir at gmail.com)</li>
+    <li>Konstantin Kalinin (kkalinin at hotmail.com)</li>
 </ul>
 <p>We also thank bug reporters who helped us improve JMeter. <br/>
 For this release we want to give special thanks to the following reporters for the clear reports and tests made after our fixes:</p>

Modified: jmeter/trunk/xdocs/usermanual/component_reference.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/component_reference.xml?rev=1821612&r1=1821611&r2=1821612&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/component_reference.xml (original)
+++ jmeter/trunk/xdocs/usermanual/component_reference.xml Fri Jan 19 10:18:45 2018
@@ -4786,8 +4786,8 @@ on XPath.
 </p>
 Some sample expressions:
 <ul>
-<li><code>//title[text()='Text to match']</code> - matches <code>&lt;text&gt;Text to match&lt;/text&gt;</code> anywhere in the response</li>
-<li><code>/title[text()='Text to match']</code> - matches <code>&lt;text&gt;Text to match&lt;/text&gt;</code> at root level in the response</li>
+<li><code>//title[text()='Text to match']</code> - matches <code>&lt;title&gt;Text to match&lt;/title&gt;</code> anywhere in the response</li>
+<li><code>/title[text()='Text to match']</code> - matches <code>&lt;title&gt;Text to match&lt;/title&gt;</code> at root level in the response</li>
 </ul>
 </description>