Merge branch 'jk/diff-rendered-docs'
Dev doc update. * jk/diff-rendered-docs: Revert "doc/Makefile: drop doc-diff worktree and temporary files on "make clean"" doc/Makefile: drop doc-diff worktree and temporary files on "make clean" doc-diff: add --clean mode to remove temporary working gunk doc-diff: fix non-portable 'man' invocation doc-diff: always use oids inside worktree SubmittingPatches: mention doc-diff
This commit is contained in:
@ -80,7 +80,9 @@ GitHub-Travis CI hints section for details.
|
|||||||
|
|
||||||
Do not forget to update the documentation to describe the updated
|
Do not forget to update the documentation to describe the updated
|
||||||
behavior and make sure that the resulting documentation set formats
|
behavior and make sure that the resulting documentation set formats
|
||||||
well. It is currently a liberal mixture of US and UK English norms for
|
well (try the Documentation/doc-diff script).
|
||||||
|
|
||||||
|
We currently have a liberal mixture of US and UK English norms for
|
||||||
spelling and grammar, which is somewhat unfortunate. A huge patch that
|
spelling and grammar, which is somewhat unfortunate. A huge patch that
|
||||||
touches the files all over the place only to correct the inconsistency
|
touches the files all over the place only to correct the inconsistency
|
||||||
is not welcome, though. Potential clashes with other changes that can
|
is not welcome, though. Potential clashes with other changes that can
|
||||||
|
@ -1,21 +1,34 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Build two documentation trees and diff the resulting formatted output.
|
||||||
|
# Compared to a source diff, this can reveal mistakes in the formatting.
|
||||||
|
# For example:
|
||||||
|
#
|
||||||
|
# ./doc-diff origin/master HEAD
|
||||||
|
#
|
||||||
|
# would show the differences introduced by a branch based on master.
|
||||||
|
|
||||||
OPTIONS_SPEC="\
|
OPTIONS_SPEC="\
|
||||||
doc-diff [options] <from> <to> [-- <diff-options>]
|
doc-diff [options] <from> <to> [-- <diff-options>]
|
||||||
|
doc-diff (-c|--clean)
|
||||||
--
|
--
|
||||||
j=n parallel argument to pass to make
|
j=n parallel argument to pass to make
|
||||||
f force rebuild; do not rely on cached results
|
f force rebuild; do not rely on cached results
|
||||||
|
c,clean cleanup temporary working files
|
||||||
"
|
"
|
||||||
SUBDIRECTORY_OK=1
|
SUBDIRECTORY_OK=1
|
||||||
. "$(git --exec-path)/git-sh-setup"
|
. "$(git --exec-path)/git-sh-setup"
|
||||||
|
|
||||||
parallel=
|
parallel=
|
||||||
force=
|
force=
|
||||||
|
clean=
|
||||||
while test $# -gt 0
|
while test $# -gt 0
|
||||||
do
|
do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
-j)
|
-j)
|
||||||
parallel=$2; shift ;;
|
parallel=$2; shift ;;
|
||||||
|
-c|--clean)
|
||||||
|
clean=t ;;
|
||||||
-f)
|
-f)
|
||||||
force=t ;;
|
force=t ;;
|
||||||
--)
|
--)
|
||||||
@ -26,6 +39,17 @@ do
|
|||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
|
cd_to_toplevel
|
||||||
|
tmp=Documentation/tmp-doc-diff
|
||||||
|
|
||||||
|
if test -n "$clean"
|
||||||
|
then
|
||||||
|
test $# -eq 0 || usage
|
||||||
|
git worktree remove --force "$tmp/worktree" 2>/dev/null
|
||||||
|
rm -rf "$tmp"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
if test -z "$parallel"
|
if test -z "$parallel"
|
||||||
then
|
then
|
||||||
parallel=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
|
parallel=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
|
||||||
@ -42,9 +66,6 @@ to=$1; shift
|
|||||||
from_oid=$(git rev-parse --verify "$from") || exit 1
|
from_oid=$(git rev-parse --verify "$from") || exit 1
|
||||||
to_oid=$(git rev-parse --verify "$to") || exit 1
|
to_oid=$(git rev-parse --verify "$to") || exit 1
|
||||||
|
|
||||||
cd_to_toplevel
|
|
||||||
tmp=Documentation/tmp-doc-diff
|
|
||||||
|
|
||||||
if test -n "$force"
|
if test -n "$force"
|
||||||
then
|
then
|
||||||
rm -rf "$tmp"
|
rm -rf "$tmp"
|
||||||
@ -69,12 +90,12 @@ generate_render_makefile () {
|
|||||||
printf '%s: %s\n' "$dst" "$src"
|
printf '%s: %s\n' "$dst" "$src"
|
||||||
printf '\t@echo >&2 " RENDER $(notdir $@)" && \\\n'
|
printf '\t@echo >&2 " RENDER $(notdir $@)" && \\\n'
|
||||||
printf '\tmkdir -p $(dir $@) && \\\n'
|
printf '\tmkdir -p $(dir $@) && \\\n'
|
||||||
printf '\tMANWIDTH=80 man -l $< >$@+ && \\\n'
|
printf '\tMANWIDTH=80 man $< >$@+ && \\\n'
|
||||||
printf '\tmv $@+ $@\n'
|
printf '\tmv $@+ $@\n'
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# render_tree <dirname> <committish>
|
# render_tree <committish_oid>
|
||||||
render_tree () {
|
render_tree () {
|
||||||
# Skip install-man entirely if we already have an installed directory.
|
# Skip install-man entirely if we already have an installed directory.
|
||||||
# We can't rely on make here, since "install-man" unconditionally
|
# We can't rely on make here, since "install-man" unconditionally
|
||||||
@ -84,7 +105,7 @@ render_tree () {
|
|||||||
# through.
|
# through.
|
||||||
if ! test -d "$tmp/installed/$1"
|
if ! test -d "$tmp/installed/$1"
|
||||||
then
|
then
|
||||||
git -C "$tmp/worktree" checkout "$2" &&
|
git -C "$tmp/worktree" checkout --detach "$1" &&
|
||||||
make -j$parallel -C "$tmp/worktree" \
|
make -j$parallel -C "$tmp/worktree" \
|
||||||
GIT_VERSION=omitted \
|
GIT_VERSION=omitted \
|
||||||
SOURCE_DATE_EPOCH=0 \
|
SOURCE_DATE_EPOCH=0 \
|
||||||
@ -104,6 +125,6 @@ render_tree () {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
render_tree $from_oid "$from" &&
|
render_tree $from_oid &&
|
||||||
render_tree $to_oid "$to" &&
|
render_tree $to_oid &&
|
||||||
git -C $tmp/rendered diff --no-index "$@" $from_oid $to_oid
|
git -C $tmp/rendered diff --no-index "$@" $from_oid $to_oid
|
||||||
|
Reference in New Issue
Block a user