From b9c340a211404e403301b47f970fecf25ca97d32 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 24 Jul 2015 22:52:04 -0700 Subject: Change homepage .com -> .io The .com redirects to .io, but might as well have the correct one to begin with. --- configure.ac | 2 +- docs/default_manpage.md | 2 +- jq.spec | 2 +- main.c | 4 ++-- 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); } -- cgit v1.2.3