Skip to content

Commit c0f9364

Browse files
jingenenormanmaurer
authored andcommitted
Change the netty.io homepage scheme(http -> https) (netty#9344)
Motivation: Netty homepage(netty.io) serves both "http" and "https". It's recommended to use https than http. Modification: I changed from "http://netty.io" to "https://netty.io" Result: No effects.
1 parent bded2a1 commit c0f9364

File tree

21 files changed

+72
-68
lines changed

21 files changed

+72
-68
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please review the [guidelines for contributing](http://netty.io/wiki/developer-guide.html) for this repository.
1+
Please review the [guidelines for contributing](https://netty.io/wiki/developer-guide.html) for this repository.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ My system has IPv6 disabled.
4242

4343
## How to contribute your work
4444

45-
Before submitting a pull request or push a commit, please read [our developer guide](http://netty.io/wiki/developer-guide.html).
45+
Before submitting a pull request or push a commit, please read [our developer guide](https://netty.io/wiki/developer-guide.html).
4646

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Please visit the Netty web site for more information:
66

7-
* http://netty.io/
7+
* https://netty.io/
88

99
Copyright 2014 The Netty Project
1010

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ Netty is an asynchronous event-driven network application framework for rapid de
44

55
## Links
66

7-
* [Web Site](http://netty.io/)
8-
* [Downloads](http://netty.io/downloads.html)
9-
* [Documentation](http://netty.io/wiki/)
7+
* [Web Site](https://netty.io/)
8+
* [Downloads](https://netty.io/downloads.html)
9+
* [Documentation](https://netty.io/wiki/)
1010
* [@netty_project](https://twitter.com/netty_project)
1111

1212
## How to build
1313

14-
For the detailed information about building and developing Netty, please visit [the developer guide](http://netty.io/wiki/developer-guide.html). This page only gives very basic information.
14+
For the detailed information about building and developing Netty, please visit [the developer guide](https://netty.io/wiki/developer-guide.html). This page only gives very basic information.
1515

1616
You require the following to build Netty:
1717

1818
* Latest stable [Oracle JDK 7](http://www.oracle.com/technetwork/java/)
1919
* Latest stable [Apache Maven](http://maven.apache.org/)
20-
* If you are on Linux, you need [additional development packages](http://netty.io/wiki/native-transports.html) installed on your system, because you'll build the native transport.
20+
* If you are on Linux, you need [additional development packages](https://netty.io/wiki/native-transports.html) installed on your system, because you'll build the native transport.
2121

2222
Note that this is build-time requirement. JDK 5 (for 3.x) or 6 (for 4.0+) is enough to run your Netty-based application.
2323

bom/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030

3131
<name>Netty/BOM</name>
3232
<description>Netty (Bill of Materials)</description>
33-
<url>http://netty.io/</url>
33+
<url>https://netty.io/</url>
3434

3535
<organization>
3636
<name>The Netty Project</name>
37-
<url>http://netty.io/</url>
37+
<url>https://netty.io/</url>
3838
</organization>
3939

4040
<licenses>
@@ -57,9 +57,9 @@
5757
<id>netty.io</id>
5858
<name>The Netty Project Contributors</name>
5959
<email>[email protected]</email>
60-
<url>http://netty.io/</url>
60+
<url>https://netty.io/</url>
6161
<organization>The Netty Project</organization>
62-
<organizationUrl>http://netty.io/</organizationUrl>
62+
<organizationUrl>https://netty.io/</organizationUrl>
6363
</developer>
6464
</developers>
6565

codec-http/src/main/java/io/netty/handler/codec/http/QueryStringDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
*
5555
* <h3>HashDOS vulnerability fix</h3>
5656
*
57-
* As a workaround to the <a href="http://netty.io/s/hashdos">HashDOS</a> vulnerability, the decoder
57+
* As a workaround to the <a href="https://netty.io/s/hashdos">HashDOS</a> vulnerability, the decoder
5858
* limits the maximum number of decoded key-value parameter pairs, up to {@literal 1024} by
5959
* default, and you can configure it when you construct the decoder by passing an additional
6060
* integer parameter.

codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker13.java

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

2929
/**
3030
* <p>
31-
* Performs server side opening and closing handshakes for <a href="http://netty.io/s/rfc6455">RFC 6455</a>
32-
* (originally web socket specification <a href="http://netty.io/s/ws-17">draft-ietf-hybi-thewebsocketprotocol-17</a>).
31+
* Performs server side opening and closing handshakes for <a href="https://netty.io/s/rfc6455">RFC 6455</a>
32+
* (originally web socket specification <a href="https://netty.io/s/ws-17">draft-ietf-hybi-thewebsocketprotocol-17</a>).
3333
* </p>
3434
*/
3535
public class WebSocketServerHandshaker13 extends WebSocketServerHandshaker {

codec-http/src/main/java/io/netty/handler/codec/http/websocketx/package-info.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
* This package supports different web socket specification versions (hence the X suffix).
2222
* The specification current supported are:
2323
* <ul>
24-
* <li><a href="http://netty.io/s/ws-00">draft-ietf-hybi-thewebsocketprotocol-00</a></li>
25-
* <li><a href="http://netty.io/s/ws-07">draft-ietf-hybi-thewebsocketprotocol-07</a></li>
26-
* <li><a href="http://netty.io/s/ws-10">draft-ietf-hybi-thewebsocketprotocol-10</a></li>
27-
* <li><a href="http://netty.io/s/rfc6455">RFC 6455</a>
28-
* (originally <a href="http://netty.io/s/ws-17">draft-ietf-hybi-thewebsocketprotocol-17</a>)</li>
24+
* <li><a href="https://netty.io/s/ws-00">draft-ietf-hybi-thewebsocketprotocol-00</a></li>
25+
* <li><a href="https://netty.io/s/ws-07">draft-ietf-hybi-thewebsocketprotocol-07</a></li>
26+
* <li><a href="https://netty.io/s/ws-10">draft-ietf-hybi-thewebsocketprotocol-10</a></li>
27+
* <li><a href="https://netty.io/s/rfc6455">RFC 6455</a>
28+
* (originally <a href="https://netty.io/s/ws-17">draft-ietf-hybi-thewebsocketprotocol-17</a>)</li>
2929
3030
* </ul>
3131
* </p>

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
* reference counted objects (e.g. {@link ByteBuf}s). The frame codec will call {@link ReferenceCounted#retain()} before
137137
* propagating a reference counted object through the pipeline, and thus an application handler needs to release such
138138
* an object after having consumed it. For more information on reference counting take a look at
139-
* http://netty.io/wiki/reference-counted-objects.html
139+
* https://netty.io/wiki/reference-counted-objects.html
140140
*
141141
* <h3>HTTP Upgrade</h3>
142142
*

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
* reference counted objects (e.g. {@link ByteBuf}s). The multiplex codec will call {@link ReferenceCounted#retain()}
6262
* before propagating a reference counted object through the pipeline, and thus an application handler needs to release
6363
* such an object after having consumed it. For more information on reference counting take a look at
64-
* http://netty.io/wiki/reference-counted-objects.html
64+
* https://netty.io/wiki/reference-counted-objects.html
6565
*
6666
* <h3>Channel Events</h3>
6767
*

0 commit comments

Comments
 (0)