summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2013-05-23 09:16:34 -0700
committerStephen Dolan <mu@netsoc.tcd.ie>2013-05-23 09:16:34 -0700
commit6ed2da6d435d2cc7a4f89262bec81367844dbc34 (patch)
tree784bba15c79003fa788f9a18d362d999b0d6b3a9
parent22006172baba61714207c67cd207140b76f4a941 (diff)
parent444f0aacca8e29df7b2acf91b7027791c4d813d4 (diff)
Merge pull request #132 from dolmen/fix/github-urlsdocs
Fix Github URLs: stedolan.github.com -> stedolan.github.io
-rw-r--r--README.md4
-rw-r--r--docs/content/2.download/default.yml4
-rw-r--r--main.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index fa78e7a5..cbb904f9 100644
--- a/README.md
+++ b/README.md
@@ -4,12 +4,12 @@ jq
jq is a command-line JSON processor.
If you want to learn to use jq, read the documentation at
-[http://stedolan.github.com/jq](http://stedolan.github.com/jq). This
+[http://stedolan.github.io/jq](http://stedolan.github.io/jq). This
documentation is generated from the docs/ folder of this repository.
If you want to hack on jq, feel free, but be warned that its internals
are not well-documented at the moment. Bring a hard hat and a
-shovel. Also, read the wiki: http://github.com/stedolan/jq/wiki
+shovel. Also, read the wiki: https://github.com/stedolan/jq/wiki
To build jq, run
diff --git a/docs/content/2.download/default.yml b/docs/content/2.download/default.yml
index 1636948a..86b74970 100644
--- a/docs/content/2.download/default.yml
+++ b/docs/content/2.download/default.yml
@@ -31,7 +31,7 @@ body:
### OS X
- * `brew install jq` using [homebrew](http://mxcl.github.com/homebrew/)
+ * `brew install jq` using [homebrew](http://mxcl.github.io/homebrew/)
* Or, grab prebuilt [64-bit binaries](osx64/jq) or [32-bit
binaries](osx32/jq)
@@ -72,7 +72,7 @@ body:
On OS X, these are all included in Apple's command line tools, which
can be installed from [Xcode](http://developer.apple.com/technologies/tools/).
However, you may find that you need a newer version of Bison than the one provided
- by Apple. This can be found in [Homebrew](http://mxcl.github.com/homebrew/)
+ by Apple. This can be found in [Homebrew](http://mxcl.github.io/homebrew/)
or [MacPorts](http://macports.org/).
`flex` and `bison` are used to generate the lexer and parser for
diff --git a/main.c b/main.c
index 73359ffe..8a17ae42 100644
--- a/main.c
+++ b/main.c
@@ -20,13 +20,13 @@ static void usage() {
fprintf(stderr, "For a description of the command line options and\n");
fprintf(stderr, "how to write jq filters (and why you might want to)\n");
fprintf(stderr, "see the jq manpage, or the online documentation at\n");
- fprintf(stderr, "http://stedolan.github.com/jq\n\n");
+ fprintf(stderr, "http://stedolan.github.io/jq\n\n");
exit(1);
}
static void die() {
fprintf(stderr, "Use %s --help for help with command-line options,\n", progname);
- fprintf(stderr, "or see the jq documentation at http://stedolan.github.com/jq\n");
+ fprintf(stderr, "or see the jq documentation at http://stedolan.github.io/jq\n");
exit(1);
}