Author: fschumacher
Date: Sat Mar 5 13:49:28 2016
New Revision: 1733719
URL: http://svn.apache.org/viewvc?rev=1733719&view=rev
Log:
Put http links inside javadoc in "a href" elements.
Modified:
jmeter/trunk/src/core/org/apache/jmeter/gui/util/CheckBoxPanel.java
jmeter/trunk/src/core/org/apache/jmeter/gui/util/JSyntaxTextArea.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/JMeterClientConnectionOperator.java
Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/util/CheckBoxPanel.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/util/CheckBoxPanel.java?rev=1733719&r1=1733718&r2=1733719&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/util/CheckBoxPanel.java
(original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/util/CheckBoxPanel.java Sat Mar
5 13:49:28 2016
@@ -23,7 +23,7 @@ import javax.swing.JCheckBox;
/**
* Utility class to wrap a JCheckBox in a horizontal box.
* This limits the clickable area to the label only, and not the width of its
container.
- * See https://bz.apache.org/bugzilla/show_bug.cgi?id=58810
+ * See <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=58810">Bug
58810</a><br>
* Note: using a JPanel affects the alignment within the container
*/
public class CheckBoxPanel {
Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/util/JSyntaxTextArea.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/util/JSyntaxTextArea.java?rev=1733719&r1=1733718&r2=1733719&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/util/JSyntaxTextArea.java
(original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/util/JSyntaxTextArea.java Sat
Mar 5 13:49:28 2016
@@ -125,7 +125,7 @@ public class JSyntaxTextArea extends RSy
/**
* Override UndoManager to allow disabling if feature causes issues
- * See https://github.com/bobbylight/RSyntaxTextArea/issues/19
+ * See <a
href="https://github.com/bobbylight/RSyntaxTextArea/issues/19">Issue 19 on
RSyntaxTextArea</a>
*/
@Override
protected RUndoManager createUndoManager() {
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=1733719&r1=1733718&r2=1733719&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
Sat Mar 5 13:49:28 2016
@@ -161,7 +161,7 @@ public class HTTPHC4Impl extends HTTPHCA
* Special interceptor made to keep metrics when connection is released
for some method like HEAD
* Otherwise calling directly ((HttpConnection)
localContext.getAttribute(HttpCoreContext.HTTP_CONNECTION)).getMetrics();
* would throw org.apache.http.impl.conn.ConnectionShutdownException
- * See https://bz.apache.org/jira/browse/HTTPCLIENT-1081
+ * See <a
href="https://bz.apache.org/jira/browse/HTTPCLIENT-1081">HTTPCLIENT-1081</a>
*/
private static final HttpResponseInterceptor METRICS_SAVER = new
HttpResponseInterceptor(){
@Override
@@ -420,7 +420,7 @@ public class HTTPHC4Impl extends HTTPHCA
/**
* Store in JMeter Variables the UserToken so that the SSL context is
reused
- * See https://bz.apache.org/bugzilla/show_bug.cgi?id=57804
+ * See <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=57804">Bug
57804</a>
* @param localContext {@link HttpContext}
*/
private void extractClientContextAfterSample(HttpContext localContext) {
@@ -439,7 +439,7 @@ public class HTTPHC4Impl extends HTTPHCA
/**
* Configure the UserToken so that the SSL context is reused
- * See https://bz.apache.org/bugzilla/show_bug.cgi?id=57804
+ * See <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=57804">Bug
57804</a>
* @param localContext {@link HttpContext}
*/
private void setupClientContextBeforeSample(HttpContext localContext) {
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/JMeterClientConnectionOperator.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/JMeterClientConnectionOperator.java?rev=1733719&r1=1733718&r2=1733719&view=diff
==============================================================================
---
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/JMeterClientConnectionOperator.java
(original)
+++
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/JMeterClientConnectionOperator.java
Sat Mar 5 13:49:28 2016
@@ -94,7 +94,7 @@ public class JMeterClientConnectionOpera
/**
* Uses the underlying implementation to support Server Name Indication
(SNI).
* @author Michael Locher <[email protected]>
- * @see https://issues.apache.org/jira/browse/HTTPCLIENT-1119
+ * @see <a
href="https://issues.apache.org/jira/browse/HTTPCLIENT-1119">HTTPCLIENT-1119</a>
*/
private static class HostNameSetter {