meta: Update various links to https

This commit is contained in:
Tomas Babej 2021-03-12 07:55:55 -05:00
parent b4a36d942e
commit 0d1542ccd7
No known key found for this signature in database
GPG key ID: B0747C6578F7D2F5
14 changed files with 16 additions and 16 deletions

View file

@ -1350,7 +1350,7 @@ Bugs
- All holiday files have been renamed to include a locale, rather than just a
country code. For example: holidays.en-US.rc.
- Now ships with an add-on script, update-holidays.pl, which contacts
http://holidata.net, and brings the installed holiday files up to date.
https://holidata.net, and brings the installed holiday files up to date.
- Extension system now controlled by the 'extensions' configuration variable.
- HTML export in the form of an external scripts export-html.pl.
- Two additional solarized theme files, solarized-dark-256.theme and

View file

@ -142,9 +142,9 @@ Darwin, 32bit
See:
https://taskwarrior.org/issues/817
http://stackoverflow.com/questions/3261909/build-32bit-on-64-bit-linux-using-a-configure-script
http://stackoverflow.com/questions/2617508/cmake-gcc-cuda-and-m32-wtf
http://stackoverflow.com/questions/6077414/cmake-how-to-set-the-ldflags-in-cmakelists-txt
https://stackoverflow.com/questions/3261909/build-32bit-on-64-bit-linux-using-a-configure-script
https://stackoverflow.com/questions/2617508/cmake-gcc-cuda-and-m32-wtf
https://stackoverflow.com/questions/6077414/cmake-how-to-set-the-ldflags-in-cmakelists-txt
OpenBSD

View file

@ -25,7 +25,7 @@
###############################################################################
# Colors used are based on the Solarized palette created by Ethan Schoonover
# <http://ethanschoonover.com/solarized>
# <https://ethanschoonover.com/solarized>
#
# This theme was designed to work with a terminal application that is using a
# Solarized "Dark" color theme, otherwise colors will look odd. Solarized

View file

@ -25,7 +25,7 @@
###############################################################################
# Colors used are based on the Solarized palette created by Ethan Schoonover
# <http://ethanschoonover.com/solarized>
# <https://ethanschoonover.com/solarized>
#
# This theme was designed to work with a terminal application that is using a
# Solarized "Dark" color theme, otherwise colors will look odd. Solarized

View file

@ -99,7 +99,7 @@ Schwyz:
--region Schwyz \
--file holidays.de-CH.rc
See http://holidata.net for details of supported locales and regions.
See https://holidata.net for details of supported locales and regions.
It is recommended that you regularly update your holiday files. Not only does
this keep your holiday data current, but allows for corrected data to be used.

View file

@ -46,7 +46,7 @@
#
# *) Go to the project's website at
#
# http://taskwarrior.org
# https://taskwarrior.org
#
################################################################################
#the following variable is substituted for by ../../test/bash_completion.t

View file

@ -59,7 +59,7 @@
// This string is parsed and used as default values for configuration.
std::string configurationDefaults =
"# Taskwarrior program configuration file.\n"
"# For more documentation, see http://taskwarrior.org or try 'man task', 'man task-color',\n"
"# For more documentation, see https://taskwarrior.org or try 'man task', 'man task-color',\n"
"# 'man task-sync' or 'man taskrc'\n"
"\n"
"# Here is an example of entries that use the default, override and blank values\n"

View file

@ -697,7 +697,7 @@ bool Eval::parsePrimitive (
////////////////////////////////////////////////////////////////////////////////
// Dijkstra Shunting Algorithm.
// http://en.wikipedia.org/wiki/Shunting-yard_algorithm
// https://en.wikipedia.org/wiki/Shunting-yard_algorithm
//
// While there are tokens to be read:
// Read a token.

View file

@ -62,7 +62,7 @@ int CmdHelp::execute (std::string& output)
+ composeUsage ()
+ '\n'
+ "Documentation for Taskwarrior can be found using 'man task', 'man taskrc', 'man "
"task-color', 'man task-sync' or at http://taskwarrior.org\n"
"task-color', 'man task-sync' or at https://taskwarrior.org\n"
"\n"
"The general form of commands is:\n"
" task [<filter>] <command> [<mods>]\n"

View file

@ -68,7 +68,7 @@ int CmdVersion::execute (std::string& output)
Table link;
link.width (width);
link.add ("");
link.set (link.addRow (), 0, "Documentation for Taskwarrior can be found using 'man task', 'man taskrc', 'man task-color', 'man task-sync' or at http://taskwarrior.org");
link.set (link.addRow (), 0, "Documentation for Taskwarrior can be found using 'man task', 'man taskrc', 'man task-color', 'man task-sync' or at https://taskwarrior.org");
Color bold;
if (Context::getContext ().color ())

View file

@ -130,7 +130,7 @@ int confirm4 (const std::string& question)
// Also, uuid_unparse_lower is not needed on FreeBSD, because the string
// representation is always lowercase anyway.
// For the implementation details, refer to
// http://svnweb.freebsd.org/base/head/sys/kern/kern_uuid.c
// https://svnweb.freebsd.org/base/head/sys/kern/kern_uuid.c
#if defined(FREEBSD) || defined(OPENBSD)
const std::string uuid ()
{

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
# For more information, see https://github.com/wbsch/bash_tap
# Subject to the MIT License. See LICENSE file or http://opensource.org/licenses/MIT
# Subject to the MIT License. See LICENSE file or https://opensource.org/licenses/MIT
# Copyright (c) 2015 - 2021, Wilhelm Schürmann
function bashtap_on_error {

View file

@ -8,7 +8,7 @@
# "taskrc" is a file set up in bash_tap_tw.sh:setup_taskrc(), and can be
# appended to or changed as needed.
#
# Subject to the MIT License. See LICENSE file or http://opensource.org/licenses/MIT
# Subject to the MIT License. See LICENSE file or https://opensource.org/licenses/MIT
# Copyright (c) 2015 - 2021, Wilhelm Schürmann
function setup_taskrc {

View file

@ -10,7 +10,7 @@ echo "% Called at $(python3 -c 'import time; print(time.time())') with '$@'" >>
# Log what arrives via stdin to ${IN} and what comes via stdout to ${OUT}
$ORIGINALHOOK "$@" < <(tee -a ${IN}) > >(tee -a ${OUT})
# More on the < <() syntax at: http://tldp.org/LDP/abs/html/process-sub.html
# More on the < <() syntax at: https://tldp.org/LDP/abs/html/process-sub.html
EXITCODE=$?
echo "! Exit code: ${EXITCODE}" >> ${OUT}