From: Jeff King <peff@peff.net> To: "brian m. carlson" <sandals@crustytoothpaste.net> Cc: git@vger.kernel.org, "Felipe Contreras" <felipe.contreras@gmail.com>, "Martin Ågren" <martin.agren@gmail.com>, "Bagas Sanjaya" <bagasdotme@gmail.com> Subject: Re: [PATCH 1/2] doc: add an option to have Asciidoctor build man pages directly Date: Wed, 12 May 2021 02:22:06 -0400 [thread overview] Message-ID: <YJt0Dv7HP2VnLLwv@coredump.intra.peff.net> (raw) In-Reply-To: <20210512021138.63598-1-sandals@crustytoothpaste.net> On Wed, May 12, 2021 at 02:11:37AM +0000, brian m. carlson wrote: > @@ -367,9 +370,16 @@ $(OBSOLETE_HTML): %.html : %.txto asciidoc.conf asciidoctor-extensions.rb GIT-AS > manpage-base-url.xsl: manpage-base-url.xsl.in > $(QUIET_GEN)sed "s|@@MAN_BASE_URL@@|$(MAN_BASE_URL)|" $< > $@ > > +ifdef TXT_TO_MAN > +%.1 %.5 %.7 : %.txt asciidoc.conf asciidoctor-extensions.rb GIT-ASCIIDOCFLAGS > + $(QUIET_ASCIIDOC)$(RM) $@+ $@ && \ > + $(TXT_TO_MAN) -o $@+ $< && \ > + mv $@+ $@ > +else This depends on GIT-ASCIIDOCFLAGS, which is good. But I think we'd also want to tell that file whether we are using the direct backend or not. Otherwise, doing: make USE_ASCIIDOCTOR=1 git.1 make USE_ASCIIDOCTOR=1 USE_ASCIIDOCTOR_MANPAGE=1 git.1 gets confused. Because git.1 is more recent than git.txt, it things there is nothing to build in the second case. I think you want: diff --git a/Documentation/Makefile b/Documentation/Makefile index 536d9a5f3d..4b66a61f51 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -337,7 +337,7 @@ mergetools-list.made: ../git-mergetool--lib.sh $(wildcard ../mergetools/*) show_tool_names can_merge "* " || :' >mergetools-merge.txt && \ date >$@ -TRACK_ASCIIDOCFLAGS = $(subst ','\'',$(ASCIIDOC_COMMON):$(ASCIIDOC_HTML):$(ASCIIDOC_DOCBOOK)) +TRACK_ASCIIDOCFLAGS = $(subst ','\'',$(ASCIIDOC_COMMON):$(ASCIIDOC_HTML):$(ASCIIDOC_DOCBOOK):$(USE_ASCIIDOCTOR_MANPAGE)) GIT-ASCIIDOCFLAGS: FORCE @FLAGS='$(TRACK_ASCIIDOCFLAGS)'; \ With that change, plus a patch I'll send in a minute, it's easy to run doc-diff on the result. > diff --git a/Documentation/asciidoctor-extensions.rb b/Documentation/asciidoctor-extensions.rb > index d906a00803..40fa87b121 100644 > --- a/Documentation/asciidoctor-extensions.rb > +++ b/Documentation/asciidoctor-extensions.rb > @@ -15,6 +15,8 @@ module Git > "#{target}(#{attrs[1]})</ulink>" > elsif parent.document.basebackend? 'html' > %(<a href="#{prefix}#{target}.html">#{target}(#{attrs[1]})</a>) > + elsif parent.document.basebackend? 'manpage' > + %(\\fB#{target}\\fP\\fR(#{attrs[1]})\\fP) Unfortunately, this doesn't seem to work. Diffing the rendered docs between regular asciidoctor-then-xmlto and direct-to-manpage shows a lot of hunks like: For more details about the <pathspec> syntax, see the pathspec - entry in gitglossary(7). + entry in \fBgitglossary\fP\fR(7)\fP. -Peff
next prev parent reply other threads:[~2021-05-12 6:22 UTC|newest] Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-05-11 22:27 [PATCH] doc: use asciidoctor to " Felipe Contreras 2021-05-11 23:26 ` brian m. carlson 2021-05-12 0:58 ` Felipe Contreras 2021-05-12 2:11 ` [PATCH 1/2] doc: add an option to have Asciidoctor " brian m. carlson 2021-05-12 2:11 ` [PATCH 2/2] doc: remove GNU_ROFF option brian m. carlson 2021-05-12 2:18 ` Eric Sunshine 2021-05-12 2:28 ` brian m. carlson 2021-05-12 4:45 ` Felipe Contreras 2021-05-14 0:11 ` brian m. carlson 2021-05-15 13:30 ` Felipe Contreras 2021-05-13 13:11 ` Martin Ågren 2021-05-12 2:48 ` [PATCH 1/2] doc: add an option to have Asciidoctor build man pages directly Bagas Sanjaya 2021-05-12 5:03 ` Felipe Contreras 2021-05-13 23:24 ` brian m. carlson 2021-05-14 12:58 ` Felipe Contreras 2021-05-15 13:25 ` Felipe Contreras 2021-05-12 4:41 ` Felipe Contreras 2021-05-13 23:38 ` brian m. carlson 2021-05-14 19:02 ` Felipe Contreras 2021-05-12 4:43 ` Bagas Sanjaya 2021-05-13 23:54 ` brian m. carlson 2021-05-12 6:22 ` Jeff King [this message] 2021-05-12 6:30 ` Jeff King 2021-05-12 6:59 ` Jeff King 2021-05-12 19:29 ` Felipe Contreras 2021-05-13 17:30 ` Martin Ågren 2021-05-13 22:37 ` Felipe Contreras 2021-05-12 19:53 ` Eric Sunshine 2021-05-12 22:37 ` Jeff King 2021-05-14 15:34 ` Martin Ågren 2021-05-14 0:31 ` [PATCH v2 0/2] Asciidoctor native manpage builds brian m. carlson 2021-05-14 0:31 ` [PATCH v2 1/2] doc: add an option to have Asciidoctor build man pages directly brian m. carlson 2021-05-14 3:58 ` Junio C Hamano 2021-05-14 5:27 ` Jeff King 2021-05-14 20:00 ` Felipe Contreras 2021-05-14 19:55 ` brian m. carlson 2021-05-14 20:52 ` Felipe Contreras 2021-05-14 19:57 ` Felipe Contreras 2021-05-14 19:53 ` Felipe Contreras 2021-05-14 20:17 ` brian m. carlson 2021-05-14 23:31 ` Felipe Contreras 2021-05-14 0:31 ` [PATCH v2 2/2] doc: remove GNU_ROFF option brian m. carlson 2021-05-14 19:07 ` [PATCH v2 0/2] Asciidoctor native manpage builds Felipe Contreras 2021-05-14 20:00 ` brian m. carlson 2021-05-14 21:21 ` Felipe Contreras
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: http://vger.kernel.org/majordomo-info.html * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=YJt0Dv7HP2VnLLwv@coredump.intra.peff.net \ --to=peff@peff.net \ --cc=bagasdotme@gmail.com \ --cc=felipe.contreras@gmail.com \ --cc=git@vger.kernel.org \ --cc=martin.agren@gmail.com \ --cc=sandals@crustytoothpaste.net \ --subject='Re: [PATCH 1/2] doc: add an option to have Asciidoctor build man pages directly' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this inbox: https://80x24.org/mirrors/git.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).