You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2013/01/05 21:37:24 UTC

svn commit: r1429380 - in /jmeter/trunk: src/components/org/apache/jmeter/extractor/gui/XPathExtractorGui.java xdocs/changes.xml

Author: pmouawad
Date: Sat Jan  5 20:37:23 2013
New Revision: 1429380

URL: http://svn.apache.org/viewvc?rev=1429380&view=rev
Log:
Bug 54376 - ScopePanel : Allow configuring more precisely scopes

Reverting only creation of scopepanel options in XPathExtractorGUI as per sebb comment
Bugzilla Id: 54376

Modified:
    jmeter/trunk/src/components/org/apache/jmeter/extractor/gui/XPathExtractorGui.java
    jmeter/trunk/xdocs/changes.xml

Modified: jmeter/trunk/src/components/org/apache/jmeter/extractor/gui/XPathExtractorGui.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/components/org/apache/jmeter/extractor/gui/XPathExtractorGui.java?rev=1429380&r1=1429379&r2=1429380&view=diff
==============================================================================
--- jmeter/trunk/src/components/org/apache/jmeter/extractor/gui/XPathExtractorGui.java (original)
+++ jmeter/trunk/src/components/org/apache/jmeter/extractor/gui/XPathExtractorGui.java Sat Jan  5 20:37:23 2013
@@ -122,7 +122,7 @@ public class XPathExtractorGui extends A
 
         Box box = Box.createVerticalBox();
         box.add(makeTitlePanel());
-        box.add(createScopePanel(true, false, false));
+        box.add(createScopePanel(true, true, true));
         xml.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), JMeterUtils
                 .getResString("xpath_assertion_option"))); //$NON-NLS-1$
         box.add(xml);

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1429380&r1=1429379&r2=1429380&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml (original)
+++ jmeter/trunk/xdocs/changes.xml Sat Jan  5 20:37:23 2013
@@ -252,7 +252,7 @@ to the elements View Results Tree, Asser
 <li><bugzilla>54257</bugzilla> - Enhance SamplerCreator interface to meet new requirements</li>
 <li><bugzilla>54258</bugzilla> - Proxy : Use Raw Post Body when Sampler has one unnamed argument, useful for Samplers using POST method by of type JSON, XML, GWT body</li>
 <li><bugzilla>54268</bugzilla> - Improve CPU and memory usage</li>
-<li><bugzilla>54376</bugzilla> - XPath extractor should not have scopes "Main sample and sub-samples" and "Sub-samples only"</li>
+<li><bugzilla>54376</bugzilla> - ScopePanel : Allow configuring more precisely scopes</li>
 </ul>
 
 <h2>Non-functional changes</h2>