From 8b5855ece5fc371c5f03483d907a6b458c2c6115 Mon Sep 17 00:00:00 2001 From: David Hill Date: Tue, 18 Jun 2019 16:36:56 +0000 Subject: [PATCH] multi: use https links where available --- rpc/documentation/README.md | 2 +- rpc/documentation/api.md | 4 ++-- rpc/documentation/clientusage.md | 2 +- rpc/documentation/serverchanges.md | 4 ++-- rpc/jsonrpc/types/README.md | 4 ++-- rpc/jsonrpc/types/doc.go | 2 +- version/version.go | 2 +- wallet/README.md | 4 ++-- wallet/internal/bdb/README.md | 4 ++-- wallet/walletdb/README.md | 6 +++--- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/rpc/documentation/README.md b/rpc/documentation/README.md index 88fe01661..d79b87940 100644 --- a/rpc/documentation/README.md +++ b/rpc/documentation/README.md @@ -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. diff --git a/rpc/documentation/api.md b/rpc/documentation/api.md index dd13f91f5..bad89641c 100644 --- a/rpc/documentation/api.md +++ b/rpc/documentation/api.md @@ -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 @@ -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 diff --git a/rpc/documentation/clientusage.md b/rpc/documentation/clientusage.md index 1b94634e9..6ffd44943 100644 --- a/rpc/documentation/clientusage.md +++ b/rpc/documentation/clientusage.md @@ -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 diff --git a/rpc/documentation/serverchanges.md b/rpc/documentation/serverchanges.md index 2ce1831fb..c3ef07397 100644 --- a/rpc/documentation/serverchanges.md +++ b/rpc/documentation/serverchanges.md @@ -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 @@ -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) diff --git a/rpc/jsonrpc/types/README.md b/rpc/jsonrpc/types/README.md index 95c4f48b2..54c4be45e 100644 --- a/rpc/jsonrpc/types/README.md +++ b/rpc/jsonrpc/types/README.md @@ -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 diff --git a/rpc/jsonrpc/types/doc.go b/rpc/jsonrpc/types/doc.go index d6481d733..452b041d5 100644 --- a/rpc/jsonrpc/types/doc.go +++ b/rpc/jsonrpc/types/doc.go @@ -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 diff --git a/version/version.go b/version/version.go index d5f3b7bd9..b0977331e 100644 --- a/version/version.go +++ b/version/version.go @@ -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) diff --git a/wallet/README.md b/wallet/README.md index 90cb53777..3279adada 100644 --- a/wallet/README.md +++ b/wallet/README.md @@ -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 diff --git a/wallet/internal/bdb/README.md b/wallet/internal/bdb/README.md index 6c1933677..039bf991a 100644 --- a/wallet/internal/bdb/README.md +++ b/wallet/internal/bdb/README.md @@ -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 diff --git a/wallet/walletdb/README.md b/wallet/walletdb/README.md index 9a47d7eb3..839511bc0 100644 --- a/wallet/walletdb/README.md +++ b/wallet/walletdb/README.md @@ -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 @@ -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.