summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2015-07-24 22:52:04 -0700
committerDavid Tolnay <dtolnay@gmail.com>2015-07-24 22:55:58 -0700
commitb9c340a211404e403301b47f970fecf25ca97d32 (patch)
tree0e3e9c540ebfe08f973bb23181d967c6e4ff8278
parent3a964e2025d13e636e2ba4f096ce33dcc4918b1e (diff)
Change homepage .com -> .io
The .com redirects to .io, but might as well have the correct one to begin with.
-rw-r--r--configure.ac2
-rw-r--r--docs/default_manpage.md2
-rw-r--r--jq.spec2
-rw-r--r--main.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index f682788f..d9057e39 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
m4_define([jq_version], m4_esyscmd_s([git describe --tags --dirty --match 'jq-*'|sed 's/^jq-//']))
AC_INIT([jq], [jq_version], [https://github.com/stedolan/jq/issues],
- [jq], [http://stedolan.github.com/jq/])
+ [jq], [http://stedolan.github.io/jq])
m4_include([m4/ax_compare_version.m4])
m4_include([m4/ax_prog_bison_version.m4])
diff --git a/docs/default_manpage.md b/docs/default_manpage.md
index f1a29a72..878b8366 100644
--- a/docs/default_manpage.md
+++ b/docs/default_manpage.md
@@ -9,7 +9,7 @@ reducing and otherwise mangling JSON documents.
This version of `jq` was built without a manual, so this manpage is a
stub. For full documentation of the `jq` language, see:
- http://stedolan.github.com/jq
+ http://stedolan.github.io/jq
## BUGS
diff --git a/jq.spec b/jq.spec
index 8c050bf4..5731ec47 100644
--- a/jq.spec
+++ b/jq.spec
@@ -5,7 +5,7 @@ Name: jq
Version: %{myver}
Release: %{myrel}%{?dist}
Source0: jq-%{myver}.tar.gz
-URL: https://github.com/stedolan/jq
+URL: http://stedolan.github.io/jq
License: BSD
AutoReqProv: no
#BuildPrereq: autoconf, libtool, automake, flex, bison, python
diff --git a/main.c b/main.c
index 0ac5d62b..a38b6c89 100644
--- a/main.c
+++ b/main.c
@@ -48,7 +48,7 @@ static void usage(int code) {
"\tcopying jq's input to its output unmodified (except for\n"
"\tformatting).\n"
"\tFor more advanced filters see the jq(1) manpage (\"man jq\")\n"
- "\tand/or http://stedolan.github.com/jq\n\n"
+ "\tand/or http://stedolan.github.io/jq\n\n"
"\tSome of the options include:\n"
"\t -c\t\tcompact instead of pretty-printed output;\n"
"\t -n\t\tuse `null` as the single input value;\n"
@@ -69,7 +69,7 @@ static void usage(int code) {
static void die() {
fprintf(stderr, "Use %s --help for help with command-line options,\n", progname);
- fprintf(stderr, "or see the jq manpage, or online docs at http://stedolan.github.com/jq\n");
+ fprintf(stderr, "or see the jq manpage, or online docs at http://stedolan.github.io/jq\n");
exit(2);
}