Canonicalize URL prefixes to https://grpc.io

This commit is contained in:
Mehrdad Afshari 2017-07-10 22:48:17 +00:00 committed by Mehrdad Afshari
parent 7207a9f408
commit 8ce0bc25b6
6 changed files with 8 additions and 8 deletions

View File

@ -8,7 +8,7 @@ Readme](SECURITY.md).
<table> <table>
<tr> <tr>
<td><b>Homepage:</b></td> <td><b>Homepage:</b></td>
<td><a href="http://www.grpc.io/">www.grpc.io</a></td> <td><a href="https://grpc.io/">grpc.io</a></td>
</tr> </tr>
<tr> <tr>
<td><b>Mailing List:</b></td> <td><b>Mailing List:</b></td>

View File

@ -392,4 +392,4 @@ git commit -m "Javadoc for $MAJOR.$MINOR.$PATCH"
``` ```
Push gh-pages to the main repository and verify the current version is [live Push gh-pages to the main repository and verify the current version is [live
on grpc.io](http://www.grpc.io/grpc-java/javadoc/). on grpc.io](https://grpc.io/grpc-java/javadoc/).

View File

@ -316,7 +316,7 @@ subprojects {
id "grpc.io" id "grpc.io"
name "gRPC Contributors" name "gRPC Contributors"
email "grpc-io@googlegroups.com" email "grpc-io@googlegroups.com"
url "http://grpc.io/" url "https://grpc.io/"
// https://issues.gradle.org/browse/GRADLE-2719 // https://issues.gradle.org/browse/GRADLE-2719
organization = "gRPC Authors" organization = "gRPC Authors"
organizationUrl "https://www.google.com" organizationUrl "https://www.google.com"

View File

@ -6,7 +6,7 @@ to check out a git release tag, since there will already be a build of grpc
available. Otherwise you must follow [COMPILING](../COMPILING.md). available. Otherwise you must follow [COMPILING](../COMPILING.md).
You may want to read through the You may want to read through the
[Quick Start Guide](http://www.grpc.io/docs/quickstart/java.html) [Quick Start Guide](https://grpc.io/docs/quickstart/java.html)
before trying out the examples. before trying out the examples.
To build the examples, run in this directory: To build the examples, run in this directory:
@ -35,7 +35,7 @@ $ ./build/install/examples/bin/hello-world-client
That's it! That's it!
Please refer to gRPC Java's [README](../README.md) and Please refer to gRPC Java's [README](../README.md) and
[tutorial](http://www.grpc.io/docs/tutorials/basic/java.html) for more [tutorial](https://grpc.io/docs/tutorials/basic/java.html) for more
information. information.
## Maven ## Maven

View File

@ -7,7 +7,7 @@ PREREQUISITES
- [Android Tutorial](https://developer.android.com/training/basics/firstapp/index.html) if you're new to Android development - [Android Tutorial](https://developer.android.com/training/basics/firstapp/index.html) if you're new to Android development
- [gRPC Java Android Quick Start Guide](http://www.grpc.io/docs/quickstart/android.html) - [gRPC Java Android Quick Start Guide](https://grpc.io/docs/quickstart/android.html)
- We only have Android gRPC client in this example. Please follow examples in other languages to build and run a gRPC server. - We only have Android gRPC client in this example. Please follow examples in other languages to build and run a gRPC server.
@ -28,5 +28,5 @@ $ ./gradlew installDebug
``` ```
Please refer to the Please refer to the
[tutorial](http://www.grpc.io/docs/tutorials/basic/android.html) on [tutorial](https://grpc.io/docs/tutorials/basic/android.html) on
how to use gRPC in Android programs. how to use gRPC in Android programs.

View File

@ -22,7 +22,7 @@
* *
* <p>In the most common case of gRPC over Protocol Buffers, stub classes are automatically * <p>In the most common case of gRPC over Protocol Buffers, stub classes are automatically
* generated from service definition .proto files by the Protobuf compiler. See <a * generated from service definition .proto files by the Protobuf compiler. See <a
* href="http://www.grpc.io/docs/generatedcode/java.html">gRPC java Generated Code Guide</a>. * href="https://grpc.io/docs/generatedcode/java.html">gRPC java Generated Code Guide</a>.
* *
* <p>The server side stub classes are abstract classes with RPC methods for the server application * <p>The server side stub classes are abstract classes with RPC methods for the server application
* to implement/override. These classes internally use {@link io.grpc.stub.ServerCalls} to interact * to implement/override. These classes internally use {@link io.grpc.stub.ServerCalls} to interact