Upgrade git:// and http:// URLs to https://

Work on fish-shell/fish-site#47

[ci skip]
This commit is contained in:
David Adam 2017-02-17 21:30:43 +08:00
parent ce61ada623
commit 40de253b3a
10 changed files with 14 additions and 14 deletions

View file

@ -1,15 +1,15 @@
[fish](http://fishshell.com/) - the friendly interactive shell [![Build Status](https://travis-ci.org/fish-shell/fish-shell.svg?branch=master)](https://travis-ci.org/fish-shell/fish-shell) [fish](https://fishshell.com/) - the friendly interactive shell [![Build Status](https://travis-ci.org/fish-shell/fish-shell.svg?branch=master)](https://travis-ci.org/fish-shell/fish-shell)
================================================ ================================================
fish is a smart and user-friendly command line shell for OS X, Linux, and the rest of the family. fish includes features like syntax highlighting, autosuggest-as-you-type, and fancy tab completions that just work, with no configuration required. fish is a smart and user-friendly command line shell for OS X, Linux, and the rest of the family. fish includes features like syntax highlighting, autosuggest-as-you-type, and fancy tab completions that just work, with no configuration required.
For more on fish's design philosophy, see the [design document](http://fishshell.com/docs/current/design.html). For more on fish's design philosophy, see the [design document](https://fishshell.com/docs/current/design.html).
## Quick Start ## Quick Start
fish generally works like other shells, like bash or zsh. A few important differences can be found at <http://fishshell.com/docs/current/tutorial.html> by searching for the magic phrase "unlike other shells". fish generally works like other shells, like bash or zsh. A few important differences can be found at <https://fishshell.com/docs/current/tutorial.html> by searching for the magic phrase "unlike other shells".
Detailed user documentation is available by running `help` within fish, and also at <http://fishshell.com/docs/current/index.html> Detailed user documentation is available by running `help` within fish, and also at <https://fishshell.com/docs/current/index.html>
## Building ## Building

4
debian/control vendored
View file

@ -6,8 +6,8 @@ Uploaders: David Adam <zanchey@ucc.gu.uwa.edu.au>
Build-Depends: debhelper (>= 9.0.0), libncurses5-dev, autoconf, autotools-dev, dh-autoreconf, gettext Build-Depends: debhelper (>= 9.0.0), libncurses5-dev, autoconf, autotools-dev, dh-autoreconf, gettext
# When libpcre2-dev is available on all supported Debian versions, add a dependency on that. # When libpcre2-dev is available on all supported Debian versions, add a dependency on that.
Standards-Version: 3.9.4 Standards-Version: 3.9.4
Homepage: http://fishshell.com/ Homepage: https://fishshell.com/
Vcs-Git: git://github.com/fish-shell/fish-shell.git Vcs-Git: https://github.com/fish-shell/fish-shell.git
Vcs-Browser: https://github.com/fish-shell/fish-shell Vcs-Browser: https://github.com/fish-shell/fish-shell
Package: fish Package: fish

View file

@ -17,7 +17,7 @@
\section introduction Introduction \section introduction Introduction
This is the documentation for `fish`, the friendly interactive shell. `fish` is a user friendly commandline shell intended mostly for interactive use. A shell is a program used to execute other programs. For the latest information on `fish`, please visit the <a href="http://fishshell.com/">`fish` homepage</a>. This is the documentation for `fish`, the friendly interactive shell. `fish` is a user friendly commandline shell intended mostly for interactive use. A shell is a program used to execute other programs. For the latest information on `fish`, please visit the <a href="https://fishshell.com/">`fish` homepage</a>.
\section syntax Syntax overview \section syntax Syntax overview

View file

@ -9,7 +9,7 @@ $extrastylesheet
</head> </head>
<body> <body>
<div id="top" class="qindex"><!-- do not close this div here, it is closed by doxygen! --> <div id="top" class="qindex"><!-- do not close this div here, it is closed by doxygen! -->
<a href="http://fishshell.com/"><code>fish</code> shell</a> <a href="https://fishshell.com/"><code>fish</code> shell</a>
| |
<a href="index.html">Documentation</a> <a href="index.html">Documentation</a>
| |

View file

@ -6,5 +6,5 @@ confdir=@extra_confdir@
Name: fish Name: fish
Description: fish, the friendly interactive shell Description: fish, the friendly interactive shell
URL: http://fishshell.com/ URL: https://fishshell.com/
Version: @fish_build_version@ Version: @fish_build_version@

View file

@ -6,7 +6,7 @@ Release: 0.%{?dist}
License: GPL-2.0 License: GPL-2.0
Group: System/Shells Group: System/Shells
URL: http://fishshell.com/ URL: https://fishshell.com/
Source0: %{name}_@VERSION@.orig.tar.gz Source0: %{name}_@VERSION@.orig.tar.gz
BuildRequires: ncurses-devel gettext gcc-c++ autoconf BuildRequires: ncurses-devel gettext gcc-c++ autoconf

View file

@ -125,7 +125,7 @@ function help --description 'Show help for the fish shell'
else else
# Go to the web. Only include one dot in the version string # Go to the web. Only include one dot in the version string
set -l version_string (echo $FISH_VERSION| cut -d . -f 1,2) set -l version_string (echo $FISH_VERSION| cut -d . -f 1,2)
set page_url http://fishshell.com/docs/$version_string/$fish_help_page set page_url https://fishshell.com/docs/$version_string/$fish_help_page
end end
# OS X /usr/bin/open swallows fragments (anchors), so use osascript # OS X /usr/bin/open swallows fragments (anchors), so use osascript

View file

@ -854,7 +854,7 @@ void history_t::get_string_representation(wcstring *result, const wcstring &sepa
// Append new items. Note that in principle we could use const_reverse_iterator, but we do not // Append new items. Note that in principle we could use const_reverse_iterator, but we do not
// because reverse_iterator is not convertible to const_reverse_iterator. See // because reverse_iterator is not convertible to const_reverse_iterator. See
// http://github.com/fish-shell/fish-shell/issues/431. // https://github.com/fish-shell/fish-shell/issues/431.
for (history_item_list_t::reverse_iterator iter = new_items.rbegin(); iter < new_items.rend(); for (history_item_list_t::reverse_iterator iter = new_items.rbegin(); iter < new_items.rend();
++iter) { ++iter) {
// Skip a pending item if we have one. // Skip a pending item if we have one.

View file

@ -5,7 +5,7 @@
// all internal commands use wide characters and hence this library is useful. // all internal commands use wide characters and hence this library is useful.
// //
// If you want to use this version of getopt in your program, download the fish sourcecode, // If you want to use this version of getopt in your program, download the fish sourcecode,
// available at <a href='http://fishshell.com'>the fish homepage</a>. Extract the sourcode, copy // available at <a href='https://fishshell.com'>the fish homepage</a>. Extract the sourcode, copy
// wgetopt.c and wgetopt.h into your program directory, include wgetopt.h in your program, and use // wgetopt.c and wgetopt.h into your program directory, include wgetopt.h in your program, and use
// all the regular getopt functions, prefixing every function, global variable and structure with a // all the regular getopt functions, prefixing every function, global variable and structure with a
// 'w', and use only wide character strings. There are no other functional changes in this version // 'w', and use only wide character strings. There are no other functional changes in this version

View file

@ -5,7 +5,7 @@
// all internal commands use wide characters and hence this library is useful. // all internal commands use wide characters and hence this library is useful.
// //
// If you want to use this version of getopt in your program, // If you want to use this version of getopt in your program,
// 1. Download the fish sourcecode, available at http://fishshell.com // 1. Download the fish sourcecode, available at https://fishshell.com
// 2. Extract the sourcode // 2. Extract the sourcode
// 3. Copy wgetopt.cpp and wgetopt.h into your program directory, // 3. Copy wgetopt.cpp and wgetopt.h into your program directory,
// 4. #include wgetopt.h in your program // 4. #include wgetopt.h in your program