Skip to content

Commit

Permalink
multi: use https links where available
Browse files Browse the repository at this point in the history
  • Loading branch information
dajohi authored and jrick committed Jun 18, 2019
1 parent 6d4ab58 commit 8b5855e
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion rpc/documentation/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RPC Documentation

This project provides a [gRPC](http://www.grpc.io/) server for Remote Procedure
This project provides a [gRPC](https://www.grpc.io/) server for Remote Procedure
Call (RPC) access from other processes. This is intended to be the primary
means by which users, through other client programs, interact with the wallet.

Expand Down
4 changes: 2 additions & 2 deletions rpc/documentation/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Version: 5.8.x

**Note:** This document assumes the reader is familiar with gRPC concepts.
Refer to the [gRPC Concepts documentation](http://www.grpc.io/docs/guides/concepts.html)
Refer to the [gRPC Concepts documentation](https://www.grpc.io/docs/guides/concepts.html)
for any unfamiliar terms.

**Note:** The naming style used for autogenerated identifiers may differ
Expand All @@ -16,7 +16,7 @@ enums.
This document is the authoritative source on the RPC API's definitions and
semantics. Any divergence from this document is an implementation error. API
fixes and additions require a version increase according to the rules of
[Semantic Versioning 2.0.0](http://semver.org/).
[Semantic Versioning 2.0.0](https://semver.org/).

Only optional proto3 message fields are used (the `required` keyword is never
used in the `.proto` file). If a message field must be set to something other
Expand Down
2 changes: 1 addition & 1 deletion rpc/documentation/clientusage.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Client usage

Clients use RPC to interact with the wallet. A client may be implemented in any
language directly supported by [gRPC](http://www.grpc.io/), languages capable of
language directly supported by [gRPC](https://www.grpc.io/), languages capable of
performing [FFI](https://en.wikipedia.org/wiki/Foreign_function_interface) with
these, and languages that share a common runtime (e.g. Scala, Kotlin, and Ceylon
for the JVM, F# for the CLR, etc.). Exact instructions differ slightly
Expand Down
4 changes: 2 additions & 2 deletions rpc/documentation/serverchanges.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Once the developer dependencies have been met, changes can be made to the API by
modifying the Protocol Buffers descriptor file [`api.proto`](../api.proto).

The API is versioned according to the rules of [Semantic Versioning
2.0](http://semver.org/). After any changes, bump the API version in the [API
2.0](https://semver.org/). After any changes, bump the API version in the [API
specification](./api.md) and add the changes to the spec.

Unless backwards compatibility is broken (and the version is bumped to represent
Expand Down Expand Up @@ -98,4 +98,4 @@ implemented in the [`rpcserver`](../rpcserver/) package.

- [Protocol Buffers Language Guide (proto3)](https://developers.google.com/protocol-buffers/docs/proto3)
- [Protocol Buffers Basics: Go](https://developers.google.com/protocol-buffers/docs/gotutorial)
- [gRPC Basics: Go](http://www.grpc.io/docs/tutorials/basic/go.html)
- [gRPC Basics: Go](https://www.grpc.io/docs/tutorials/basic/go.html)
4 changes: 2 additions & 2 deletions rpc/jsonrpc/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ jsonrpc/types
=============

[![Build Status](https://travis-ci.org/decred/dcrwallet.png?branch=master)](https://travis-ci.org/decred/dcrwallet)
[![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/decred/dcrwallet/rpc/jsonrpc/types)
[![ISC License](https://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/decred/dcrwallet/rpc/jsonrpc/types)

Package types implements concrete types for marshalling to and from the
dcrwallet JSON-RPC API. A comprehensive suite of tests is provided to ensure
Expand Down
2 changes: 1 addition & 1 deletion rpc/jsonrpc/types/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ marshalled to and from the the wire in the appropriate format. This package
provides data structures and primitives that are registered with dcrjson to ease
this process. An overview specific to this package is provided here, however it
is also instructive to read the documentation for the dcrjson package
(http://godoc.org/github.com/decred/dcrd/dcrjson).
(https://godoc.org/github.com/decred/dcrd/dcrjson).
Marshalling and Unmarshalling
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var PreRelease = "pre"
var BuildMetadata = "dev"

// String returns the application version as a properly formed string per the
// semantic versioning 2.0.0 spec (http://semver.org/).
// semantic versioning 2.0.0 spec (https://semver.org/).
func String() string {
// Start with the major, minor, and path versions.
version := fmt.Sprintf("%d.%d.%d", Major, Minor, Patch)
Expand Down
4 changes: 2 additions & 2 deletions wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ TODO: Flesh out this section

## Documentation

[![GoDoc](https://godoc.org/github.com/decred/dcrwallet/wallet?status.png)](http://godoc.org/github.com/decred/dcrwallet/wallet)
[![GoDoc](https://godoc.org/github.com/decred/dcrwallet/wallet?status.png)](https://godoc.org/github.com/decred/dcrwallet/wallet)

Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here:
http://godoc.org/github.com/decred/dcrwallet/wallet
https://godoc.org/github.com/decred/dcrwallet/wallet

You can also view the documentation locally once the package is installed with
the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
Expand Down
4 changes: 2 additions & 2 deletions wallet/internal/bdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ if err != nil {

## Documentation

[![GoDoc](https://godoc.org/github.com/decred/dcrwallet/wallet/v2/internal/bdb?status.png)](http://godoc.org/github.com/decred/dcrwallet/wallet/v2/internal/bdb)
[![GoDoc](https://godoc.org/github.com/decred/dcrwallet/wallet/v2/internal/bdb?status.png)](https://godoc.org/github.com/decred/dcrwallet/wallet/v2/internal/bdb)

Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here:
http://godoc.org/github.com/decred/dcrwallet/wallet/v2/internal/bdb
https://godoc.org/github.com/decred/dcrwallet/wallet/v2/internal/bdb

You can also view the documentation locally once the package is installed with
the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
Expand Down
6 changes: 3 additions & 3 deletions wallet/walletdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ boltdb project at https://github.com/boltdb/bolt by Ben B. Johnson.

## Documentation

[![GoDoc](https://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb?status.png)](http://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb)
[![GoDoc](https://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb?status.png)](https://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb)

Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here:
http://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb
https://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb

You can also view the documentation locally once the package is installed with
the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
Expand All @@ -58,7 +58,7 @@ $ go get github.com/decred/dcrwallet/wallet/v2/walletdb

## Examples

* [Basic Usage Example](http://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb#example-package--BasicUsage)
* [Basic Usage Example](https://godoc.org/github.com/decred/dcrwallet/wallet/v2/walletdb#example-package--BasicUsage)
Demonstrates creating a new database, getting a namespace from it, and using a
managed read-write transaction against the namespace to store and retrieve
data.
Expand Down

0 comments on commit 8b5855e

Please sign in to comment.