]> granicus.if.org Git - jq/commitdiff
Change homepage .com -> .io
authorDavid Tolnay <dtolnay@gmail.com>
Sat, 25 Jul 2015 05:52:04 +0000 (22:52 -0700)
committerDavid Tolnay <dtolnay@gmail.com>
Sat, 25 Jul 2015 05:55:58 +0000 (22:55 -0700)
The .com redirects to .io, but might as well have the
correct one to begin with.

configure.ac
docs/default_manpage.md
jq.spec
main.c

index f682788f540b0870b97a70479af099b6ea407892..d9057e396a83270c33bd6e0ae838fc03ca88d557 100644 (file)
@@ -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])
index f1a29a720065417c2e47ae618ea99e79fb7e1cdb..878b83669138cfb7431587dceb58305e140fe65c 100644 (file)
@@ -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 8c050bf47353d25e9e374d3b4374e04b329f65c7..5731ec4700d726826bfe6b86ea108b873c3634ba 100644 (file)
--- 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 0ac5d62b592ad2a30de8255a7c67a12c3ce5a302..a38b6c89d538d4eb6543319b8552cafada72b086 100644 (file)
--- 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);
 }