Skip to content

Commit 2f50d43

Browse files
committed
Fix broken links
1 parent 77e1d68 commit 2f50d43

File tree

52 files changed

+106
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+106
-59
lines changed

log4j-api/src/main/java/org/apache/logging/log4j/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* used through the {@link org.apache.logging.log4j.ThreadContext} class.
3030
* </p>
3131
*
32-
* @see <a href="http://logging.apache.org/log4j/2.x/manual/api.html">Log4j 2 API manual</a>
32+
* @see <a href="https://logging.apache.org/log4j/2.x/manual/api.html">Log4j 2 API manual</a>
3333
*/
3434
@Export
3535
@Version("2.24.0")

log4j-core/src/main/java/org/apache/logging/log4j/core/appender/rolling/action/DeleteAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public class DeleteAction extends AbstractPathAction {
5050
* means that only the starting file is visited, unless denied by the security manager. A value of
5151
* MAX_VALUE may be used to indicate that all levels should be visited.
5252
* @param testMode if true, files are not deleted but instead a message is printed to the <a
53-
* href="http://logging.apache.org/log4j/2.x/manual/configuration.html#StatusMessages">status logger</a>
53+
* href="https://logging.apache.org/log4j/2.x/manual/status-logger.html">status logger</a>
5454
* at INFO level. Users can use this to do a dry run to test if their configuration works as expected.
5555
* @param sorter sorts
5656
* @param pathConditions an array of path filters (if more than one, they all need to accept a path before it is

log4j-core/src/main/java/org/apache/logging/log4j/core/appender/rolling/action/DeletingVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class DeletingVisitor extends SimpleFileVisitor<Path> {
4444
* @param basePath used to relativize paths
4545
* @param pathConditions objects that need to confirm whether a file can be deleted
4646
* @param testMode if true, files are not deleted but instead a message is printed to the <a
47-
* href="http://logging.apache.org/log4j/2.x/manual/configuration.html#StatusMessages">status logger</a>
47+
* href="https://logging.apache.org/log4j/2.x/manual/status-logger.html">status logger</a>
4848
* at INFO level. Users can use this to do a dry run to test if their configuration works as expected.
4949
*/
5050
public DeletingVisitor(

log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/SslConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ private KeyManagerFactory loadKeyManagerFactory() throws KeyStoreConfigurationEx
217217
/**
218218
* Creates an SslConfiguration from a KeyStoreConfiguration and a TrustStoreConfiguration.
219219
*
220-
* @param protocol The protocol, see http://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#SSLContext
220+
* @param protocol The protocol, see <a href="https://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.html#SSLContext">SSLContext Algorithms</a>
221221
* @param keyStoreConfig The KeyStoreConfiguration.
222222
* @param trustStoreConfig The TrustStoreConfiguration.
223223
* @return a new SslConfiguration
@@ -235,7 +235,7 @@ public static SslConfiguration createSSLConfiguration(
235235
/**
236236
* Creates an SslConfiguration from a KeyStoreConfiguration and a TrustStoreConfiguration.
237237
*
238-
* @param protocol The protocol, see http://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#SSLContext
238+
* @param protocol The protocol, see <a href="https://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.html#SSLContext">SSLContext Algorithms</a>
239239
* @param keyStoreConfig The KeyStoreConfiguration.
240240
* @param trustStoreConfig The TrustStoreConfiguration.
241241
* @param verifyHostName whether or not to perform host name verification

log4j-core/src/main/java/org/apache/logging/log4j/core/util/TypeUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
/**
3030
* Utility class for working with Java {@link Type}s and derivatives. This class is adapted heavily from the
31-
* <a href="http://projects.spring.io/spring-framework/">Spring Framework</a>, specifically the
32-
* <a href="http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/util/TypeUtils.html">TypeUtils</a>
31+
* <a href="https://spring.io/projects/spring-framework">Spring Framework</a>, specifically the
32+
* <a href="https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/util/TypeUtils.html">TypeUtils</a>
3333
* class.
3434
*
3535
* @see java.lang.reflect.Type

log4j-jakarta-web/src/main/java/org/apache/logging/log4j/web/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* The classes in this package are responsible for properly initializing and deinitializing Log4j in a Java EE web
2020
* application.
2121
*
22-
* @see <a href="http://logging.apache.org/log4j/2.x/manual/webapp.html">Using Log4j 2 in Web Applications</a>
22+
* @see <a href="https://logging.apache.org/log4j/2.x/manual/webapp.html">Using Log4j 2 in Web Applications</a>
2323
*/
2424
@Export
2525
@Version("2.20.1")

log4j-web/src/main/java/org/apache/logging/log4j/web/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* The classes in this package are responsible for properly initializing and deinitializing Log4j in a Java EE web
2020
* application.
2121
*
22-
* @see <a href="http://logging.apache.org/log4j/2.x/manual/webapp.html">Using Log4j 2 in Web Applications</a>
22+
* @see <a href="https://logging.apache.org/log4j/2.x/manual/webapp.html">Using Log4j 2 in Web Applications</a>
2323
*/
2424
@Export
2525
@Version("2.20.1")

src/changelog/2.0.1/.release-notes.adoc.ftl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Basic compatibility with Log4j 1.x is provided through the `log4j-1.2-api` compo
4545
not implement some of the very implementation specific classes and methods.
4646
The package names and Maven `groupId` have been changed to `org.apache.logging.log4j` to avoid any conflicts with Log4j 1.x.
4747

48-
For complete information on Apache Log4j 2, including instructions on how to submit bug reports, patches, or suggestions for improvement, see http://logging.apache.org/log4j/2.x/[the Apache Log4j 2 website].
48+
For complete information on Apache Log4j 2, including instructions on how to submit bug reports, patches, or suggestions for improvement, see
49+
https://logging.apache.org/log4j/2.x/index.html[the Apache Log4j 2 website].
4950

5051
<#include "../.changelog.adoc.ftl">

src/changelog/2.0.2/.release-notes.adoc.ftl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Basic compatibility with Log4j 1.x is provided through the `log4j-1.2-api` compo
4545
not implement some of the very implementation specific classes and methods.
4646
The package names and Maven `groupId` have been changed to `org.apache.logging.log4j` to avoid any conflicts with Log4j 1.x.
4747

48-
For complete information on Apache Log4j 2, including instructions on how to submit bug reports, patches, or suggestions for improvement, see http://logging.apache.org/log4j/2.x/[the Apache Log4j 2 website].
48+
For complete information on Apache Log4j 2, including instructions on how to submit bug reports, patches, or suggestions for improvement, see
49+
https://logging.apache.org/log4j/2.x/index.html[the Apache Log4j 2 website].
4950

5051
<#include "../.changelog.adoc.ftl">

src/changelog/2.0/.release-notes.adoc.ftl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Basic compatibility with Log4j 1.x is provided through the `log4j-1.2-api` compo
4545
The package names and Maven `groupId` have been changed to `org.apache.logging.log4j` to avoid any conflicts with Log4j 1.x.
4646

4747
For complete information on Apache Log4j 2, including instructions on how to submit bug reports,
48-
patches, or suggestions for improvement, see http://logging.apache.org/log4j/2.x/[the Apache Log4j 2 website].
48+
patches, or suggestions for improvement, see
49+
https://logging.apache.org/log4j/2.x/index.html[the Apache Log4j 2 website].
4950

5051
<#include "../.changelog.adoc.ftl">

0 commit comments

Comments
 (0)