This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git


The following commit(s) were added to refs/heads/master by this push:
     new ac1ca596 Use HTTPS in URL
ac1ca596 is described below

commit ac1ca59667b945ec95b54e503c7b4415fd5e0276
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 2 10:54:19 2025 -0500

    Use HTTPS in URL
---
 pom.xml                                                             | 2 +-
 src/main/java/org/apache/commons/net/ftp/FTPClient.java             | 4 ++--
 src/main/java/org/apache/commons/net/ftp/FTPClientConfig.java       | 2 +-
 .../org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java    | 4 ++--
 src/main/java/org/apache/commons/net/nntp/Threader.java             | 2 +-
 src/main/java/org/apache/commons/net/ntp/NtpUtils.java              | 2 +-
 src/main/java/org/apache/commons/net/util/Base64.java               | 6 +++---
 src/site/xdoc/code-standards.xml                                    | 2 +-
 src/site/xdoc/faq.xml                                               | 2 +-
 9 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/pom.xml b/pom.xml
index 328933be..cddfb560 100644
--- a/pom.xml
+++ b/pom.xml
@@ -464,7 +464,7 @@ Supported protocols include Echo, Finger, FTP, NNTP, NTP, 
POP3(S), SMTP(S), Teln
             <id>dfs</id>
             <email>[email protected]</email>
             <organization>
-                &lt;a href="http://www.savarese.com/"&gt;Savarese Software 
Research&lt;/a&gt; </organization>
+                &lt;a href="https://www.savarese.com/"&gt;Savarese Software 
Research&lt;/a&gt; </organization>
         </developer>
         <developer>
             <name>Rory Winston</name>
diff --git a/src/main/java/org/apache/commons/net/ftp/FTPClient.java 
b/src/main/java/org/apache/commons/net/ftp/FTPClient.java
index 7b375430..26c21cd9 100644
--- a/src/main/java/org/apache/commons/net/ftp/FTPClient.java
+++ b/src/main/java/org/apache/commons/net/ftp/FTPClient.java
@@ -471,7 +471,7 @@ public class FTPClient extends FTP implements Configurable {
     /**
      * Parse the path from a CWD reply.
      * <p>
-     * According to <a href="http://www.ietf.org/rfc/rfc959.txt";>RFC959</a>, 
it should be the same as for MKD i.e.
+     * According to <a href="https://www.ietf.org/rfc/rfc959.txt";>RFC959</a>, 
it should be the same as for MKD i.e.
      * {@code 257<space>"<directory-name>"[<space>commentary]} where any 
double-quotes in {@code <directory-name>} are doubled. Unlike MKD, the 
commentary is
      * optional.
      * </p>
@@ -1409,7 +1409,7 @@ public class FTPClient extends FTP implements 
Configurable {
         S&gt; 211 END
      * </pre>
      *
-     * @see <a 
href="http://www.faqs.org/rfcs/rfc2389.html";>http://www.faqs.org/rfcs/rfc2389.html</a>
+     * @see <a 
href="https://www.faqs.org/rfcs/rfc2389.html";>http://www.faqs.org/rfcs/rfc2389.html</a>
      * @return True if successfully completed, false if not.
      * @throws IOException on error
      * @since 2.2
diff --git a/src/main/java/org/apache/commons/net/ftp/FTPClientConfig.java 
b/src/main/java/org/apache/commons/net/ftp/FTPClientConfig.java
index 44336601..bd525e3f 100644
--- a/src/main/java/org/apache/commons/net/ftp/FTPClientConfig.java
+++ b/src/main/java/org/apache/commons/net/ftp/FTPClientConfig.java
@@ -528,7 +528,7 @@ public class FTPClientConfig {
     }
 
     /**
-     * Sets the serverLanguageCode property. This property allows user to 
specify a <a href="http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt";>
+     * Sets the serverLanguageCode property. This property allows user to 
specify a <a href="https://www.ics.uci.edu/pub/ietf/http/related/iso639.txt";>
      * two-letter ISO-639 language code</a> that will be used to configure the 
set of month names used by the file timestamp parser. If neither this nor the
      * {@link #setShortMonthNames(String) shortMonthNames} is specified, 
parsing will assume English month names, which may or may not be significant, 
depending
      * on whether the date format(s) specified via {@link 
#setDefaultDateFormatStr(String) defaultDateFormatStr} and/or {@link 
#setRecentDateFormatStr(String)
diff --git 
a/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java 
b/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java
index e91777f6..adaa3b8f 100644
--- a/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java
+++ b/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java
@@ -26,7 +26,7 @@ import org.apache.commons.net.ftp.FTPFileEntryParser;
 
 /**
  * Implements {@link FTPFileEntryParser} and {@link Configurable} for Netware 
Systems. Note that some proprietary extensions for Novell-specific operations
- * are not supported. See <a 
href="http://www.novell.com/documentation/nw65/index.html?page=/documentation/nw65/ftp_enu/data/fbhbgcfa.html";>
+ * are not supported. See <a 
href="https://www.novell.com/documentation/nw65/index.html?page=/documentation/nw65/ftp_enu/data/fbhbgcfa.html";>
  * 
http://www.novell.com/documentation/nw65/index.html?page=/documentation/nw65/ftp_enu/data/fbhbgcfa.html</a>
 for more details.
  *
  * @see FTPFileEntryParser Usage instructions.
@@ -103,7 +103,7 @@ public class NetwareFTPEntryParser extends 
ConfigurableFTPFileEntryParserImpl {
      * <li><strong>A</strong> - Access Control; Right to modify trustee 
assignments and the Inherited Rights Mask.
      * </ul>
      *
-     * See <a 
href="http://www.novell.com/documentation/nfap10/index.html?page=/documentation/nfap10/nfaubook/data/abxraws.html";>
 here</a> for more details
+     * See <a 
href="https://www.novell.com/documentation/nfap10/index.html?page=/documentation/nfap10/nfaubook/data/abxraws.html";>
 here</a> for more details
      *
      * @param entry A line of text from the file listing
      * @return An FTPFile instance corresponding to the supplied entry
diff --git a/src/main/java/org/apache/commons/net/nntp/Threader.java 
b/src/main/java/org/apache/commons/net/nntp/Threader.java
index e4952eba..babaf722 100644
--- a/src/main/java/org/apache/commons/net/nntp/Threader.java
+++ b/src/main/java/org/apache/commons/net/nntp/Threader.java
@@ -24,7 +24,7 @@ import java.util.Map;
 
 /**
  * This is an implementation of a message threading algorithm, as originally 
devised by Zamie Zawinski.
- * See <a 
href="http://www.jwz.org/doc/threading.html";>http://www.jwz.org/doc/threading.html</a>
 for details.
+ * See <a 
href="https://www.jwz.org/doc/threading.html";>http://www.jwz.org/doc/threading.html</a>
 for details.
  * For his Java implementation, see
  * <a 
href="https://lxr.mozilla.org/mozilla/source/grendel/sources/grendel/view/Threader.java";>
  * 
https://lxr.mozilla.org/mozilla/source/grendel/sources/grendel/view/Threader.java</a>
diff --git a/src/main/java/org/apache/commons/net/ntp/NtpUtils.java 
b/src/main/java/org/apache/commons/net/ntp/NtpUtils.java
index 77164635..069748e9 100644
--- a/src/main/java/org/apache/commons/net/ntp/NtpUtils.java
+++ b/src/main/java/org/apache/commons/net/ntp/NtpUtils.java
@@ -74,7 +74,7 @@ public final class NtpUtils {
 
     /**
      * Gets refId as reference clock string (e.g. GPS, WWV, LCL). If string is 
invalid (non-ASCII character) then returns empty string "". For details refer to
-     * the <A 
HREF="http://www.eecis.udel.edu/~mills/ntp/html/refclock.html#list";>Comprehensive
 List of Clock Drivers</A>.
+     * the <A 
href="https://www.eecis.udel.edu/~mills/ntp/html/refclock.html#list";>Comprehensive
 List of Clock Drivers</A>.
      *
      * @param message the message to check
      * @return reference clock string if primary NTP server
diff --git a/src/main/java/org/apache/commons/net/util/Base64.java 
b/src/main/java/org/apache/commons/net/util/Base64.java
index 585609ee..239515c4 100644
--- a/src/main/java/org/apache/commons/net/util/Base64.java
+++ b/src/main/java/org/apache/commons/net/util/Base64.java
@@ -43,7 +43,7 @@ import java.util.Objects;
  * </p>
  *
  * @deprecated Use {@link java.util.Base64}.
- * @see <a href="http://www.ietf.org/rfc/rfc2045.txt";>RFC 2045</a>
+ * @see <a href="https://www.ietf.org/rfc/rfc2045.txt";>RFC 2045</a>
  * @since 2.2
  */
 @Deprecated
@@ -56,14 +56,14 @@ public class Base64 {
      * The {@value} character limit does not count the trailing CRLF, but 
counts all other characters, including any equal signs.
      * </p>
      *
-     * @see <a href="http://www.ietf.org/rfc/rfc2045.txt";>RFC 2045 section 
6.8</a>
+     * @see <a href="https://www.ietf.org/rfc/rfc2045.txt";>RFC 2045 section 
6.8</a>
      */
     static final int CHUNK_SIZE = 76;
 
     /**
      * Chunk separator per RFC 2045 section 2.1.
      *
-     * @see <a href="http://www.ietf.org/rfc/rfc2045.txt";>RFC 2045 section 
2.1</a>
+     * @see <a href="https://www.ietf.org/rfc/rfc2045.txt";>RFC 2045 section 
2.1</a>
      */
     static final byte[] CHUNK_SEPARATOR = { '\r', '\n' };
 
diff --git a/src/site/xdoc/code-standards.xml b/src/site/xdoc/code-standards.xml
index 37b3f5f3..8644730c 100644
--- a/src/site/xdoc/code-standards.xml
+++ b/src/site/xdoc/code-standards.xml
@@ -46,7 +46,7 @@ are responsible for also fixing your own code.</strong>
 <p>
 Below is a list of coding conventions that are specific to Apache Commons Net
 everything else not specificially mentioned here should follow the official
-<a href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html";>Sun
+<a href="https://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html";>Sun
 Java Coding Conventions</a>.
 </p>
 
diff --git a/src/site/xdoc/faq.xml b/src/site/xdoc/faq.xml
index 3c538125..18397751 100644
--- a/src/site/xdoc/faq.xml
+++ b/src/site/xdoc/faq.xml
@@ -36,7 +36,7 @@
       </p>
       <p>
         The FAQ is hosted on the Commons Wiki; please see:
-        <a 
href="http://wiki.apache.org/commons/Net/FrequentlyAskedQuestions";>CommonsNet/FrequentlyAskedQuestions</a>
+        <a 
href="https://wiki.apache.org/commons/Net/FrequentlyAskedQuestions";>CommonsNet/FrequentlyAskedQuestions</a>
       </p>
     </section>
   </body>

Reply via email to