Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit 3de6c04

Browse files
bruceadamsBurntSushi
authored andcommitted
doc: use HTTPS for all links
1 parent c0d2666 commit 3de6c04

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

BENCHMARKS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ These are some very basic and unscientific benchmarks of various commands
22
provided by `xsv`. Please see below for more information.
33

44
These benchmarks were run with
5-
[worldcitiespop_mil.csv](http://burntsushi.net/stuff/worldcitiespop_mil.csv),
5+
[worldcitiespop_mil.csv](https://burntsushi.net/stuff/worldcitiespop_mil.csv),
66
which is a random 1,000,000 row subset of the world city population dataset
77
from the [Data Science Toolkit](https://github.com/petewarden/dstkdata).
88

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "xsv"
33
version = "0.13.0" #:version
44
authors = ["Andrew Gallant <jamslam@gmail.com>"]
55
description = "A high performance CSV command line toolkit."
6-
documentation = "http://burntsushi.net/rustdoc/xsv/"
6+
documentation = "https://burntsushi.net/rustdoc/xsv/"
77
homepage = "https://github.com/BurntSushi/xsv"
88
repository = "https://github.com/BurntSushi/xsv"
99
readme = "README.md"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ a quick tour of several commands.
1111

1212
[![Linux build status](https://api.travis-ci.org/BurntSushi/xsv.svg)](https://travis-ci.org/BurntSushi/xsv)
1313
[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/xsv?svg=true)](https://ci.appveyor.com/project/BurntSushi/xsv)
14-
[![](http://meritbadge.herokuapp.com/xsv)](https://crates.io/crates/xsv)
14+
[![](https://meritbadge.herokuapp.com/xsv)](https://crates.io/crates/xsv)
1515

16-
Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
16+
Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org).
1717

1818

1919
### Available commands
@@ -61,7 +61,7 @@ several CSV files. Maybe you're interested in the population counts of each
6161
city in the world. So grab the data and start examining it:
6262

6363
```bash
64-
$ curl -LO http://burntsushi.net/stuff/worldcitiespop.csv
64+
$ curl -LO https://burntsushi.net/stuff/worldcitiespop.csv
6565
$ xsv headers worldcitiespop.csv
6666
1 Country
6767
2 City
@@ -323,7 +323,7 @@ $ nix-env -i xsv
323323
324324
Alternatively, you can compile from source by
325325
[installing Cargo](https://crates.io/install)
326-
([Rust's](http://www.rust-lang.org/) package manager)
326+
([Rust's](https://www.rust-lang.org/) package manager)
327327
and installing `xsv` using Cargo:
328328
329329
```bash
@@ -382,4 +382,4 @@ hope of dealing with data that large.
382382
### Naming collision
383383
384384
This project is unrelated to another similar project with the same name:
385-
http://mj.ucw.cz/sw/xsv/
385+
https://mj.ucw.cz/sw/xsv/

UNLICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2121
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2222
OTHER DEALINGS IN THE SOFTWARE.
2323

24-
For more information, please refer to <http://unlicense.org/>
24+
For more information, please refer to <https://unlicense.org/>

scripts/benchmark-basic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pat="$1"
1515
data=/tmp/worldcitiespop_mil.csv
1616
data_idx=/tmp/worldcitiespop_mil.csv.idx
1717
if [ ! -r "$data" ]; then
18-
curl -sS http://burntsushi.net/stuff/worldcitiespop_mil.csv > "$data"
18+
curl -sS https://burntsushi.net/stuff/worldcitiespop_mil.csv > "$data"
1919
fi
2020
data_size=$(stat --format '%s' "$data")
2121

src/cmd/sample.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fn sample_reservoir<R: io::Read>(
108108
seed: Option<usize>
109109
) -> CliResult<Vec<csv::ByteRecord>> {
110110
// The following algorithm has been adapted from:
111-
// http://en.wikipedia.org/wiki/Reservoir_sampling
111+
// https://en.wikipedia.org/wiki/Reservoir_sampling
112112
let mut reservoir = Vec::with_capacity(sample_size as usize);
113113
let mut records = rdr.byte_records().enumerate();
114114
for (_, row) in records.by_ref().take(reservoir.capacity()) {

0 commit comments

Comments
 (0)