From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: * X-Spam-ASN: AS701 96.255.0.0/16 X-Spam-Status: No, score=1.4 required=3.0 tests=AWL,BAYES_00,RCVD_IN_MSPIKE_BL, RCVD_IN_MSPIKE_ZBI,RCVD_IN_PBL,RCVD_IN_RP_RNBL,RCVD_IN_SORBS_DUL,RCVD_IN_XBL, RDNS_DYNAMIC,SPF_FAIL,SPF_HELO_FAIL,TO_EQ_FM_DOM_SPF_FAIL shortcircuit=no autolearn=no autolearn_force=no version=3.4.0 Received: from 80x24.org (pool-96-255-14-191.washdc.fios.verizon.net [96.255.14.191]) by dcvr.yhbt.net (Postfix) with ESMTP id 51B2D1F407 for ; Fri, 15 Dec 2017 20:10:03 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] doc: update some URLs to support HTTPS Date: Fri, 15 Dec 2017 20:10:01 +0000 Message-Id: <20171215201001.16136-1-e@80x24.org> List-Id: HTTP to HTTPS redirects slow down the user experience and leave an opening for traffic interception and rewriting. --- README | 2 +- Rakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index bb261a6..e3ab17e 100644 --- a/README +++ b/README @@ -12,7 +12,7 @@ with people and hardware. == Reasons * No CSS. Encouraging users to use CSS leads to problems like - copy-paste hijacking: http://thejh.net/misc/website-terminal-copy-paste + copy-paste hijacking: https://thejh.net/misc/website-terminal-copy-paste External CSS also increases page load time as it often blocks page rendering. Asynchronous loading of CSS also causes accessibility problems as links/buttons may move as a user attempts to click. diff --git a/Rakefile b/Rakefile index 1cbd0f9..aaba8cb 100644 --- a/Rakefile +++ b/Rakefile @@ -7,7 +7,7 @@ task :rsync_docs do top = %w(INSTALL README COPYING) # git-set-file-times is distributed with rsync, - # Also available at: http://yhbt.net/git-set-file-times + # Also available at: https://yhbt.net/git-set-file-times # on Debian systems: /usr/share/doc/rsync/scripts/git-set-file-times.gz sh("git", "set-file-times", 'Documentation', *top) -- EW