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 2016/02/29 20:36:15 UTC

svn commit: r1732939 - in /jmeter/trunk: bin/ src/core/org/apache/jmeter/gui/util/ src/protocol/http/org/apache/jmeter/protocol/http/config/gui/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ xdocs/ xdocs/images/ xdocs/usermanual/

Author: fschumacher
Date: Mon Feb 29 19:36:14 2016
New Revision: 1732939

URL: http://svn.apache.org/viewvc?rev=1732939&view=rev
Log:
Revert changes made by r1732937
At least HTTPHC4Impl uses HttpWebDav#isWebdavMethod in a way, that is incompatible to this change.

Was: HTTP Request : Make Method field editable so that additional methods (Webdav) can be added easily

Bugzilla Id: 59083

Modified:
    jmeter/trunk/bin/jmeter.properties
    jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java   (props changed)
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
    jmeter/trunk/xdocs/changes.xml
    jmeter/trunk/xdocs/images/asf-logo.gif   (props changed)
    jmeter/trunk/xdocs/usermanual/component_reference.xml

Modified: jmeter/trunk/bin/jmeter.properties
URL: http://svn.apache.org/viewvc/jmeter/trunk/bin/jmeter.properties?rev=1732939&r1=1732938&r2=1732939&view=diff
==============================================================================
--- jmeter/trunk/bin/jmeter.properties (original)
+++ jmeter/trunk/bin/jmeter.properties Mon Feb 29 19:36:14 2016
@@ -1002,9 +1002,6 @@ beanshell.server.file=../extras/startup.
 # default to false
 #httpsampler.embedded_resources_use_md5=false
 
-# List of extra HTTP methods that should be available in select box
-#httpsampler.user_defined_methods=VERSION-CONTROL,REPORT,CHECKOUT,CHECKIN,UNCHECKOUT,MKWORKSPACE,UPDATE,LABEL,MERGE,BASELINE-CONTROL,MKACTIVITY
-
 # The encoding to be used if none is provided (default ISO-8859-1)
 #sampleresult.default.encoding=ISO-8859-1
 

Propchange: jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java
            ('svn:mergeinfo' removed)

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java?rev=1732939&r1=1732938&r2=1732939&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java Mon Feb 29 19:36:14 2016
@@ -627,7 +627,7 @@ public class UrlConfigGui extends JPanel
 
         if (notConfigOnly){
             method = new JLabeledChoice(JMeterUtils.getResString("method"), // $NON-NLS-1$
-                    HTTPSamplerBase.getValidMethodsAsArray(), true);
+                    HTTPSamplerBase.getValidMethodsAsArray());
             method.addChangeListener(this);
         }
 

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java?rev=1732939&r1=1732938&r2=1732939&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java Mon Feb 29 19:36:14 2016
@@ -490,11 +490,10 @@ public class HTTPHC4Impl extends HTTPHCA
         if (method.equals(HTTPConstants.POST)) {
             String postBody = sendPostData((HttpPost)httpRequest);
             result.setQueryString(postBody);
-        } else if (method.equals(HTTPConstants.PUT)
-                || method.equals(HTTPConstants.PATCH)
-                || method.equals(HTTPConstants.DELETE)
-                || HttpWebdav.isWebdavMethod(method)) {
-            String entityBody = sendEntityData((HttpEntityEnclosingRequestBase) httpRequest);
+        } else if (method.equals(HTTPConstants.PUT) || method.equals(HTTPConstants.PATCH)
+                || HttpWebdav.isWebdavMethod(method)
+                || method.equals(HTTPConstants.DELETE)) {
+            String entityBody = sendEntityData(( HttpEntityEnclosingRequestBase)httpRequest);
             result.setQueryString(entityBody);
         }
     }

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java?rev=1732939&r1=1732938&r2=1732939&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java Mon Feb 29 19:36:14 2016
@@ -226,36 +226,29 @@ public abstract class HTTPSamplerBase ex
     }
 
     public static final String DEFAULT_METHOD = HTTPConstants.GET; // $NON-NLS-1$
+    // Supported methods:
+    private static final String [] METHODS = {
+        DEFAULT_METHOD, // i.e. GET
+        HTTPConstants.POST,
+        HTTPConstants.HEAD,
+        HTTPConstants.PUT,
+        HTTPConstants.OPTIONS,
+        HTTPConstants.TRACE,
+        HTTPConstants.DELETE,
+        HTTPConstants.PATCH,
+        HTTPConstants.PROPFIND,
+        HTTPConstants.PROPPATCH,
+        HTTPConstants.MKCOL,
+        HTTPConstants.COPY,
+        HTTPConstants.MOVE,
+        HTTPConstants.LOCK,
+        HTTPConstants.UNLOCK,
+        HTTPConstants.REPORT,
+        HTTPConstants.MKCALENDAR,
+        HTTPConstants.SEARCH
+        };
 
-    private static final List<String> METHODLIST;
-    static {
-        List<String> defaultMethods = new ArrayList<>(Arrays.asList(
-            DEFAULT_METHOD, // i.e. GET
-            HTTPConstants.POST,
-            HTTPConstants.HEAD,
-            HTTPConstants.PUT,
-            HTTPConstants.OPTIONS,
-            HTTPConstants.TRACE,
-            HTTPConstants.DELETE,
-            HTTPConstants.PATCH,
-            HTTPConstants.PROPFIND,
-            HTTPConstants.PROPPATCH,
-            HTTPConstants.MKCOL,
-            HTTPConstants.COPY,
-            HTTPConstants.MOVE,
-            HTTPConstants.LOCK,
-            HTTPConstants.UNLOCK,
-            HTTPConstants.REPORT,
-            HTTPConstants.MKCALENDAR,
-            HTTPConstants.SEARCH
-        ));
-        String userDefinedMethods = JMeterUtils.getPropDefault(
-                "httpsampler.user_defined_methods", "");
-        if (StringUtils.isNotBlank(userDefinedMethods)) {
-            defaultMethods.addAll(Arrays.asList(userDefinedMethods.split("\\s*,\\s*")));
-        }
-        METHODLIST = Collections.unmodifiableList(defaultMethods);
-    }
+    private static final List<String> METHODLIST = Collections.unmodifiableList(Arrays.asList(METHODS));
 
     // @see mergeFileProperties
     // Must be private, as the file list needs special handling

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java?rev=1732939&r1=1732938&r2=1732939&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java Mon Feb 29 19:36:14 2016
@@ -19,25 +19,38 @@
 package org.apache.jmeter.protocol.http.sampler;
 
 import java.net.URI;
+import java.util.Arrays;
+import java.util.HashSet;
+import java.util.Set;
 
 import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
+import org.apache.jmeter.protocol.http.util.HTTPConstants;
 
 /**
  * WebDav request
- *
  * @since 2.12
  */
 public final class HttpWebdav extends HttpEntityEnclosingRequestBase {
-
-    private final String davMethod;
+    private static final Set<String> WEBDAV_METHODS =
+            new HashSet<>(Arrays.asList(
+                    HTTPConstants.PROPFIND,
+                    HTTPConstants.PROPPATCH,
+                    HTTPConstants.MKCOL,
+                    HTTPConstants.COPY,
+                    HTTPConstants.MOVE,
+                    HTTPConstants.LOCK,
+                    HTTPConstants.UNLOCK,
+                    HTTPConstants.REPORT,
+                    HTTPConstants.MKCALENDAR,
+                    HTTPConstants.SEARCH
+            ));
+    
+    private String davMethod;
 
     /**
      * 
-     * @param davMethod
-     *            method to use (has to be a Webdav method as identified by
-     *            {@link #isWebdavMethod(String)})
-     * @param uri
-     *            {@link URI} to use
+     * @param davMethod method to use (has to be a Webdav method as identified by {@link #isWebdavMethod(String)})
+     * @param uri {@link URI} to use
      */
     public HttpWebdav(final String davMethod, final URI uri) {
         super();
@@ -51,13 +64,10 @@ public final class HttpWebdav extends Ht
     }
 
     /**
-     * @param method
-     *            Http Method
+     * @param method Http Method
      * @return <code>true</code> if method is a Webdav one
      */
     public static boolean isWebdavMethod(String method) {
-        // A HTTP method can be a token as specified in
-        // https://tools.ietf.org/html/rfc7230#section-3.2.6
-        return method != null && method.matches("^(?i)[\\da-z!#$%&'*+\\-.^_`|~]+$");
+        return WEBDAV_METHODS.contains(method);
     }
 }

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1732939&r1=1732938&r2=1732939&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml (original)
+++ jmeter/trunk/xdocs/changes.xml Mon Feb 29 19:36:14 2016
@@ -127,7 +127,6 @@ Summary
     <li><bug>59036</bug>FormCharSetFinder : Use JSoup instead of deprecated HTMLParser</li>
     <li><bug>59034</bug>Parallel downloads connection management is not realistic. Contributed by Benoit Wiart (benoit dot wiart at gmail.com) and Philippe Mouawad</li>
     <li><bug>59060</bug>HTTP Request GUI : Move File Upload to a new Tab to have more space for parameters and prevent incoherent configuration. Contributed by Benoit Wiart (benoit dot wiart at gmail.com)</li>
-    <li><bug>59083</bug>HTTP Request : Make Method field editable so that additional methods (Webdav) can be added easily</li>
 </ul>
 
 <h3>Other samplers</h3>

Propchange: jmeter/trunk/xdocs/images/asf-logo.gif
            ('svn:mergeinfo' removed)

Modified: jmeter/trunk/xdocs/usermanual/component_reference.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/component_reference.xml?rev=1732939&r1=1732938&r2=1732939&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/component_reference.xml (original)
+++ jmeter/trunk/xdocs/usermanual/component_reference.xml Mon Feb 29 19:36:14 2016
@@ -232,10 +232,7 @@ https.default.protocol=SSLv3
           <code>JAVA</code> implementation). With <code>HttpClient4</code>, the following methods related to WebDav are
           also allowed: <code>COPY</code>, <code>LOCK</code>, <code>MKCOL</code>, <code>MOVE</code>,
           <code>PROPFIND</code>, <code>PROPPATCH</code>, <code>UNLOCK</code>, <code>REPORT</code>, <code>MKCALENDAR</code>,
-          <code>SEARCH</code>.
-          <p>More methods can be pre-defined for the HttpClient4 by using the JMeter property
-            <code>httpsampler.user_defined_methods</code>.</p>
-        </property>
+          <code>SEARCH</code>.</property>
         <property name="Content Encoding" required="No">
         Content encoding to be used (for <code>POST</code>, <code>PUT</code>, <code>PATCH</code> and <code>FILE</code>).
         This is the character encoding to be used, and is not related to the Content-Encoding HTTP header.



Re: svn commit: r1732939 - in /jmeter/trunk: bin/ src/core/org/apache/jmeter/gui/util/ src/protocol/http/org/apache/jmeter/protocol/http/config/gui/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ xdocs/ xdocs/images/ xdocs/usermanual/

Posted by Felix Schumacher <fe...@internetallee.de>.
Am 03.03.2016 07:45, schrieb Philippe Mouawad:
> Hi,
> Thanks for reply.
> Don'twe need to introduce a new config property to distinguish between
> methods with entity (put, post) and methods without (get, head ...)

My current line of thought is as follows:

The method isWebdavMethod is used for two purposes. First to test, if 
the method name is valid (see HTTPHC4Impl#sample).
The second purpose is to see if the request is of type 
HttpEntityEnclosingRequestBase (see HTTPHC4Impl#handleMethod).

I think the correct way for the second purpose is to check with 
instnaceof instead of isWebdavMethod.

I haven't looked at the usage in HTTPSampleResult#getSamplerData too 
closely, but I think we can change that to just exclude GET and HEAD.
Maybe that distinction can even be made on the basis of type hierarchy.

What do you think?

Felix

> 
> Thanks
> 
> On Thursday, March 3, 2016, Felix Schumacher <
> felix.schumacher@internetallee.de> wrote:
> 
>> 
>> 
>> Am 2. März 2016 22:52:55 MEZ, schrieb Philippe Mouawad <
>> philippe.mouawad@gmail.com <javascript:;>>:
>> >Hi Felix,
>> >Do we delay this one for 3.1 ?
>> 
>> No. I will give it another try in the next days. I think it can be 
>> solved
>> easily.
>> 
>> Felix
>> 
>> >Thanks
>> >
>> >On Mon, Feb 29, 2016 at 8:48 PM, Felix Schumacher <
>> >felix.schumacher@internetallee.de <javascript:;>> wrote:
>> >
>> >> Am 29.02.2016 um 20:39 schrieb Felix Schumacher:
>> >>
>> >>> Am 29.02.2016 um 20:36 schrieb fschumacher@apache.org <javascript:;>:
>> >>>
>> >>>> Author: fschumacher
>> >>>> Date: Mon Feb 29 19:36:14 2016
>> >>>> New Revision: 1732939
>> >>>>
>> >>>> URL: http://svn.apache.org/viewvc?rev=1732939&view=rev
>> >>>> Log:
>> >>>> Revert changes made by r1732937
>> >>>> At least HTTPHC4Impl uses HttpWebDav#isWebdavMethod in a way, that
>> >is
>> >>>> incompatible to this change.
>> >>>>
>> >>>> Was: HTTP Request : Make Method field editable so that additional
>> >>>> methods (Webdav) can be added easily
>> >>>>
>> >>>> Bugzilla Id: 59083
>> >>>>
>> >>>> Modified:
>> >>>>      jmeter/trunk/bin/jmeter.properties
>> >>>>
>> >jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java
>> >>>> (props changed)
>> >>>>
>> >>>>
>> 
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
>> >>>>
>> >>>>
>> 
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
>> >>>>
>> >>>>
>> 
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
>> >>>>
>> >>>>
>> 
>> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
>> >>>>      jmeter/trunk/xdocs/changes.xml
>> >>>>      jmeter/trunk/xdocs/images/asf-logo.gif   (props changed)
>> >>>>
>> >>> I wonder how I got this change in here. Will try to get the orginal
>> >(new)
>> >>> logo in again.
>> >>>
>> >> Seems the logo wasn't replaced by my revert. Should we delete the
>> >image?
>> >> It doesn't seem to be used.
>> >>
>> >> Regards,
>> >>  Felix
>> >>
>> 
>> 

Re: svn commit: r1732939 - in /jmeter/trunk: bin/ src/core/org/apache/jmeter/gui/util/ src/protocol/http/org/apache/jmeter/protocol/http/config/gui/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ xdocs/ xdocs/images/ xdocs/usermanual/

Posted by Philippe Mouawad <ph...@gmail.com>.
Hi,
Thanks for reply.
Don'twe need to introduce a new config property to distinguish between
methods with entity (put, post) and methods without (get, head ...)

Thanks

On Thursday, March 3, 2016, Felix Schumacher <
felix.schumacher@internetallee.de> wrote:

>
>
> Am 2. März 2016 22:52:55 MEZ, schrieb Philippe Mouawad <
> philippe.mouawad@gmail.com <javascript:;>>:
> >Hi Felix,
> >Do we delay this one for 3.1 ?
>
> No. I will give it another try in the next days. I think it can be solved
> easily.
>
> Felix
>
> >Thanks
> >
> >On Mon, Feb 29, 2016 at 8:48 PM, Felix Schumacher <
> >felix.schumacher@internetallee.de <javascript:;>> wrote:
> >
> >> Am 29.02.2016 um 20:39 schrieb Felix Schumacher:
> >>
> >>> Am 29.02.2016 um 20:36 schrieb fschumacher@apache.org <javascript:;>:
> >>>
> >>>> Author: fschumacher
> >>>> Date: Mon Feb 29 19:36:14 2016
> >>>> New Revision: 1732939
> >>>>
> >>>> URL: http://svn.apache.org/viewvc?rev=1732939&view=rev
> >>>> Log:
> >>>> Revert changes made by r1732937
> >>>> At least HTTPHC4Impl uses HttpWebDav#isWebdavMethod in a way, that
> >is
> >>>> incompatible to this change.
> >>>>
> >>>> Was: HTTP Request : Make Method field editable so that additional
> >>>> methods (Webdav) can be added easily
> >>>>
> >>>> Bugzilla Id: 59083
> >>>>
> >>>> Modified:
> >>>>      jmeter/trunk/bin/jmeter.properties
> >>>>
> >jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java
> >>>> (props changed)
> >>>>
> >>>>
>
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
> >>>>
> >>>>
>
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
> >>>>
> >>>>
>
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
> >>>>
> >>>>
>
> >jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
> >>>>      jmeter/trunk/xdocs/changes.xml
> >>>>      jmeter/trunk/xdocs/images/asf-logo.gif   (props changed)
> >>>>
> >>> I wonder how I got this change in here. Will try to get the orginal
> >(new)
> >>> logo in again.
> >>>
> >> Seems the logo wasn't replaced by my revert. Should we delete the
> >image?
> >> It doesn't seem to be used.
> >>
> >> Regards,
> >>  Felix
> >>
>
>

-- 
Cordialement.
Philippe Mouawad.

Re: svn commit: r1732939 - in /jmeter/trunk: bin/ src/core/org/apache/jmeter/gui/util/ src/protocol/http/org/apache/jmeter/protocol/http/config/gui/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ xdocs/ xdocs/images/ xdocs/usermanual/

Posted by Felix Schumacher <fe...@internetallee.de>.

Am 2. März 2016 22:52:55 MEZ, schrieb Philippe Mouawad <ph...@gmail.com>:
>Hi Felix,
>Do we delay this one for 3.1 ?

No. I will give it another try in the next days. I think it can be solved easily.

Felix

>Thanks
>
>On Mon, Feb 29, 2016 at 8:48 PM, Felix Schumacher <
>felix.schumacher@internetallee.de> wrote:
>
>> Am 29.02.2016 um 20:39 schrieb Felix Schumacher:
>>
>>> Am 29.02.2016 um 20:36 schrieb fschumacher@apache.org:
>>>
>>>> Author: fschumacher
>>>> Date: Mon Feb 29 19:36:14 2016
>>>> New Revision: 1732939
>>>>
>>>> URL: http://svn.apache.org/viewvc?rev=1732939&view=rev
>>>> Log:
>>>> Revert changes made by r1732937
>>>> At least HTTPHC4Impl uses HttpWebDav#isWebdavMethod in a way, that
>is
>>>> incompatible to this change.
>>>>
>>>> Was: HTTP Request : Make Method field editable so that additional
>>>> methods (Webdav) can be added easily
>>>>
>>>> Bugzilla Id: 59083
>>>>
>>>> Modified:
>>>>      jmeter/trunk/bin/jmeter.properties
>>>>
>jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java
>>>> (props changed)
>>>>
>>>>
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
>>>>
>>>>
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
>>>>
>>>>
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
>>>>
>>>>
>jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
>>>>      jmeter/trunk/xdocs/changes.xml
>>>>      jmeter/trunk/xdocs/images/asf-logo.gif   (props changed)
>>>>
>>> I wonder how I got this change in here. Will try to get the orginal
>(new)
>>> logo in again.
>>>
>> Seems the logo wasn't replaced by my revert. Should we delete the
>image?
>> It doesn't seem to be used.
>>
>> Regards,
>>  Felix
>>


Re: svn commit: r1732939 - in /jmeter/trunk: bin/ src/core/org/apache/jmeter/gui/util/ src/protocol/http/org/apache/jmeter/protocol/http/config/gui/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ xdocs/ xdocs/images/ xdocs/usermanual/

Posted by Philippe Mouawad <ph...@gmail.com>.
Hi Felix,
Do we delay this one for 3.1 ?
Thanks

On Mon, Feb 29, 2016 at 8:48 PM, Felix Schumacher <
felix.schumacher@internetallee.de> wrote:

> Am 29.02.2016 um 20:39 schrieb Felix Schumacher:
>
>> Am 29.02.2016 um 20:36 schrieb fschumacher@apache.org:
>>
>>> Author: fschumacher
>>> Date: Mon Feb 29 19:36:14 2016
>>> New Revision: 1732939
>>>
>>> URL: http://svn.apache.org/viewvc?rev=1732939&view=rev
>>> Log:
>>> Revert changes made by r1732937
>>> At least HTTPHC4Impl uses HttpWebDav#isWebdavMethod in a way, that is
>>> incompatible to this change.
>>>
>>> Was: HTTP Request : Make Method field editable so that additional
>>> methods (Webdav) can be added easily
>>>
>>> Bugzilla Id: 59083
>>>
>>> Modified:
>>>      jmeter/trunk/bin/jmeter.properties
>>> jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java
>>> (props changed)
>>>
>>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
>>>
>>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
>>>
>>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
>>>
>>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
>>>      jmeter/trunk/xdocs/changes.xml
>>>      jmeter/trunk/xdocs/images/asf-logo.gif   (props changed)
>>>
>> I wonder how I got this change in here. Will try to get the orginal (new)
>> logo in again.
>>
> Seems the logo wasn't replaced by my revert. Should we delete the image?
> It doesn't seem to be used.
>
> Regards,
>  Felix
>



-- 
Cordialement.
Philippe Mouawad.

Re: svn commit: r1732939 - in /jmeter/trunk: bin/ src/core/org/apache/jmeter/gui/util/ src/protocol/http/org/apache/jmeter/protocol/http/config/gui/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ xdocs/ xdocs/images/ xdocs/usermanual/

Posted by Felix Schumacher <fe...@internetallee.de>.
Am 29.02.2016 um 20:39 schrieb Felix Schumacher:
> Am 29.02.2016 um 20:36 schrieb fschumacher@apache.org:
>> Author: fschumacher
>> Date: Mon Feb 29 19:36:14 2016
>> New Revision: 1732939
>>
>> URL: http://svn.apache.org/viewvc?rev=1732939&view=rev
>> Log:
>> Revert changes made by r1732937
>> At least HTTPHC4Impl uses HttpWebDav#isWebdavMethod in a way, that is 
>> incompatible to this change.
>>
>> Was: HTTP Request : Make Method field editable so that additional 
>> methods (Webdav) can be added easily
>>
>> Bugzilla Id: 59083
>>
>> Modified:
>>      jmeter/trunk/bin/jmeter.properties
>> jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java 
>> (props changed)
>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
>> jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
>>      jmeter/trunk/xdocs/changes.xml
>>      jmeter/trunk/xdocs/images/asf-logo.gif   (props changed)
> I wonder how I got this change in here. Will try to get the orginal 
> (new) logo in again.
Seems the logo wasn't replaced by my revert. Should we delete the image? 
It doesn't seem to be used.

Regards,
  Felix

Re: svn commit: r1732939 - in /jmeter/trunk: bin/ src/core/org/apache/jmeter/gui/util/ src/protocol/http/org/apache/jmeter/protocol/http/config/gui/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ xdocs/ xdocs/images/ xdocs/usermanual/

Posted by Felix Schumacher <fe...@internetallee.de>.
Am 29.02.2016 um 20:36 schrieb fschumacher@apache.org:
> Author: fschumacher
> Date: Mon Feb 29 19:36:14 2016
> New Revision: 1732939
>
> URL: http://svn.apache.org/viewvc?rev=1732939&view=rev
> Log:
> Revert changes made by r1732937
> At least HTTPHC4Impl uses HttpWebDav#isWebdavMethod in a way, that is incompatible to this change.
>
> Was: HTTP Request : Make Method field editable so that additional methods (Webdav) can be added easily
>
> Bugzilla Id: 59083
>
> Modified:
>      jmeter/trunk/bin/jmeter.properties
>      jmeter/trunk/src/core/org/apache/jmeter/gui/util/JLabeledRadioI18N.java   (props changed)
>      jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
>      jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
>      jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
>      jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
>      jmeter/trunk/xdocs/changes.xml
>      jmeter/trunk/xdocs/images/asf-logo.gif   (props changed)
I wonder how I got this change in here. Will try to get the orginal 
(new) logo in again.

Regards,
  Felix