Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: introducing synopsis para #1766

Closed
wants to merge 3 commits into from

Conversation

jnavila
Copy link

@jnavila jnavila commented Jul 23, 2024

In the continuation of the simplification of manpage editing, the synopsis processing that was developed for synopsis paragraph style is also applied to all inline backquoted texts.

Refining the magic regexp took more time than expected, but this one should really enhance writers'experience. I had to fight a bit more with asciidoctor, due to discrepancies between version 2.0 on my laptop and the 1.5.6 used by Github actions.

The git-init and git-clone manpages are converted to this new system.

Changes since V1:

  • switch to sed for asciidoc filter and refine the regex for support under macOS

Changes since V2:

  • introduce the s macro to freely apply synopsis styling wherever needed, without formatting hassle.

Changes since V3:

  • replace s macro by direct processing of literal text at the level of output processors.

Changes since V4:

  • used BRE in sed filter
  • rework the processing of three dots

cc: Eric Sunshine [email protected]
cc: Josh Steadmon [email protected]
cc: Chris Torek [email protected]
cc: Torsten Bögershausen [email protected]

@jnavila jnavila force-pushed the doc_synopsis_para branch 2 times, most recently from 338a04c to 3bcbe45 Compare July 23, 2024 22:09
@jnavila
Copy link
Author

jnavila commented Jul 23, 2024

/submit

Copy link

gitgitgadget bot commented Jul 23, 2024

Submitted as [email protected]

To fetch this version into FETCH_HEAD:

git fetch https://github.com/gitgitgadget/git/ pr-1766/jnavila/doc_synopsis_para-v1

To fetch this version to local tag pr-1766/jnavila/doc_synopsis_para-v1:

git fetch --no-tags https://github.com/gitgitgadget/git/ tag pr-1766/jnavila/doc_synopsis_para-v1

Copy link

gitgitgadget bot commented Jul 23, 2024

On the Git mailing list, Jean-Noël AVILA wrote (reply to this):

Sorry for the noise: this patch series does not work on macOS.

BR

Jean-Noël


@@ -57,3 +57,17 @@ git-relative-html-prefix=
[linkgit-inlinemacro]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On the Git mailing list, Junio C Hamano wrote (reply to this):

"Jean-Noël Avila via GitGitGadget" <[email protected]> writes:

> +ifdef::backend-docbook[]
> +ifdef::doctype-manpage[]
> +[paradef-default]
> +#synopsis-style=template="verseparagraph",filter="sed -E 's!&lt;[a-z-]+&gt;!<emphasis>\\0</emphasis>!g' -E 's!([a-z-]+)!<literal>\\1</literal>!g'"
> +synopsis-style=template="verseparagraph",filter="perl -pe 's!([\[\] |()>]|^)([=+a-zA-Z0-9-:+=]+)!\\1<literal>\\2</literal>!g;s!(&lt\\;[a-zA-Z0-9-.]+&gt\\;)!<emphasis>\\1</emphasis>!g'"
> +#synopsis-style=template="verseparagraph"

This has three candidate definitions, but two are commented out?

> +endif::doctype-manpage[]
> +endif::backend-docbook[]
> +
> +ifdef::backend-xhtml11[]
> +[paradef-default]
> +synopsis-style=template="verseparagraph",filter="perl -pe 's!([\[\] |()>]|^)([+a-zA-Z0-9-:+=]+)!\\1<code>\\2</code>!g;s!(&lt\\;[a-zA-z0-9-.]+&gt\\;)!<em>\\1</em>!g'"
> +endif::backend-xhtml11[]

With this update, do we now assume that anybody who want to format
the documentation from source must have a minimally working Perl on
their $PATH?  It probably is an OK requirement to have.

@@ -760,56 +760,60 @@ Markup:

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On the Git mailing list, Junio C Hamano wrote (reply to this):

"Jean-Noël Avila via GitGitGadget" <[email protected]> writes:

> From: =?UTF-8?q?Jean-No=C3=ABl=20Avila?= <[email protected]>
>
> Signed-off-by: Jean-Noël Avila <[email protected]>
> ---
>  Documentation/CodingGuidelines | 34 +++++++++++++++++++---------------
>  1 file changed, 19 insertions(+), 15 deletions(-)
>
> diff --git a/Documentation/CodingGuidelines b/Documentation/CodingGuidelines
> index 1d92b2da03e8..4d59e8f89ec8 100644
> --- a/Documentation/CodingGuidelines
> +++ b/Documentation/CodingGuidelines
> @@ -760,56 +760,60 @@ Markup:
>  
>  Synopsis Syntax
>  
> - Syntax grammar is formatted neither as literal nor as placeholder.
> + The synopsis (a paragraph with [synopsis] attribute) is automatically
> + formatted by the toolchain and does not need typesetting.

How pleasant ;-)

>   And a somewhat more contrived example:
> -   `--diff-filter=[(A|C|D|M|R|T|U|X|B)...[*]]`
> +   --diff-filter=[(A|C|D|M|R|T|U|X|B)...[*]]
>     Here "=" is outside the brackets, because "--diff-filter=" is a
>     valid usage.  "*" has its own pair of brackets, because it can
>     (optionally) be specified only when one or more of the letters is

@jnavila jnavila force-pushed the doc_synopsis_para branch 4 times, most recently from 5e419d6 to 2a61e09 Compare July 24, 2024 20:30
@jnavila
Copy link
Author

jnavila commented Jul 24, 2024

/submit

Copy link

gitgitgadget bot commented Jul 24, 2024

Submitted as [email protected]

To fetch this version into FETCH_HEAD:

git fetch https://github.com/gitgitgadget/git/ pr-1766/jnavila/doc_synopsis_para-v2

To fetch this version to local tag pr-1766/jnavila/doc_synopsis_para-v2:

git fetch --no-tags https://github.com/gitgitgadget/git/ tag pr-1766/jnavila/doc_synopsis_para-v2

Copy link

gitgitgadget bot commented Jul 24, 2024

On the Git mailing list, Junio C Hamano wrote (reply to this):

"Jean-Noël Avila via GitGitGadget" <[email protected]> writes:

> Following several issues with the way the formatting of synopsis is done in
> the manpages that were recently reworked, this patch series introduces the
> processing of a new custom paragraph attribute 'synopsis'.

The rendered result looks OK but the source being just like what we
would write in plain text files without any extra mark-up makes it
look quite nice.

I wonder what we want to do with some oddballs, like git-shortlog
that uses "|" not as an alternative but literally a pipe (i.e. "feed
the output of this other command via a pipe to this command"),
though.

    git log --pretty=short | git shortlog [<options>]

There may be also some page that indicates "this command takes its
input from its standard input" by using something like

    git cmd [--foo] [--bar] <input-file

which we may need to think how to handle.  The easiest way out may
be to say "don't do these to indicate/force where the input comes
from".  I dunno.

Thanks.

Copy link

gitgitgadget bot commented Jul 25, 2024

On the Git mailing list, Jean-Noël AVILA wrote (reply to this):

On Thursday, 25 July 2024 01:15:48 CEST Junio C Hamano wrote:
> "Jean-Noël Avila via GitGitGadget" <[email protected]> writes:
> 
> > Following several issues with the way the formatting of synopsis is done 
in
> > the manpages that were recently reworked, this patch series introduces the
> > processing of a new custom paragraph attribute 'synopsis'.
> 
> The rendered result looks OK but the source being just like what we
> would write in plain text files without any extra mark-up makes it
> look quite nice.
> 
> I wonder what we want to do with some oddballs, like git-shortlog
> that uses "|" not as an alternative but literally a pipe (i.e. "feed
> the output of this other command via a pipe to this command"),
> though.
> 
>     git log --pretty=short | git shortlog [<options>]

I must confess that while reviewing my patch, by switching all [verse] to 
[synopsis] , I looked at this line and understood the pipe as an alternative 
from the grammar, not as a shell pipe. I also noted a few spots where the 
grammar may be misinterpreted e.g. parenthesis in git-grep.

In theory the typesetting should tell the keyword apart from the grammar, but 
for signs such as pipes and parenthesis  the rendering does not change enough.

> 
> There may be also some page that indicates "this command takes its
> input from its standard input" by using something like
> 
>     git cmd [--foo] [--bar] <input-file
> 
> which we may need to think how to handle.  The easiest way out may
> be to say "don't do these to indicate/force where the input comes
> from".  I dunno.
> 

The form 

    git cmd  [--foo] [--bar] < <input-file>

is completely acceptable , would render correctly and would remove the use of 
the pipe. The thing is that this pipe isn't even part of the command. It is 
just an example. Maybe it should not appear in the synopsis at all.

For keyword signs that are already used in expressing the grammar, we could 
quote the sign to indicate that it is a keyword : "(" .

Thanks




Copy link

gitgitgadget bot commented Jul 25, 2024

On the Git mailing list, Junio C Hamano wrote (reply to this):

Jean-Noël AVILA <[email protected]> writes:

> The form 
>
>     git cmd  [--foo] [--bar] < <input-file>
>
> is completely acceptable , would render correctly and would remove the use of 
> the pipe.

Nice.  I was afraid that it might be interpreted as a placeholder
whose description is "<input-file" ;-)

> The thing is that this pipe isn't even part of the command. It is 
> just an example. Maybe it should not appear in the synopsis at all.

Historically the command was designed to read from "git log" as its
upstream and nothing else, which was where that sample command in
the synopsis originated, but it is unusual to spell out the upstream
(or downstream for that matter) of a pipe even when the command is
often used inside a pipeline in the synopsis section.

> For keyword signs that are already used in expressing the grammar, we could 
> quote the sign to indicate that it is a keyword : "(" .

Copy link

gitgitgadget bot commented Jul 25, 2024

This patch series was integrated into seen via git@a4a7687.

@gitgitgadget gitgitgadget bot added the seen label Jul 25, 2024
Copy link

gitgitgadget bot commented Jul 26, 2024

This branch is now known as ja/doc-synopsis-markup.

Copy link

gitgitgadget bot commented Jul 26, 2024

This patch series was integrated into seen via git@f040e0f.

Copy link

gitgitgadget bot commented Jul 29, 2024

This patch series was integrated into seen via git@4971d11.

Copy link

gitgitgadget bot commented Jul 29, 2024

There was a status update in the "New Topics" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Inviting further discussion.
source: <[email protected]>

Copy link

gitgitgadget bot commented Jul 30, 2024

This patch series was integrated into seen via git@f5cf403.

Copy link

gitgitgadget bot commented Jul 30, 2024

This patch series was integrated into seen via git@1b553a7.

Copy link

gitgitgadget bot commented Jul 31, 2024

This patch series was integrated into seen via git@391ba1d.

Copy link

gitgitgadget bot commented Aug 1, 2024

This patch series was integrated into seen via git@bf0d271.

Copy link

gitgitgadget bot commented Aug 1, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Inviting further discussion.
source: <[email protected]>

Copy link

gitgitgadget bot commented Aug 5, 2024

This patch series was integrated into seen via git@306287d.

Copy link

gitgitgadget bot commented Aug 5, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Inviting further discussion.
source: <[email protected]>

Copy link

gitgitgadget bot commented Aug 6, 2024

This patch series was integrated into seen via git@ceed501.

Copy link

gitgitgadget bot commented Sep 24, 2024

On the Git mailing list, Junio C Hamano wrote (reply to this):

Josh Steadmon <[email protected]> writes:

>> I checked my High Sierra installation (macOS 10.13) which is even
>> older than Big Sur (macOS 11), and High Sierra's "sed" also
>> understands -E.
>
> Hi folks, sorry for the false alarm and the delayed response. For some
> reason our build environment has a >decade old version of sed. I'm still
> tracking down why that is, but please do not hold back this topic any
> longer due to our out-of-date-ness. Sorry again!

Thanks.

I think Jean-Noël's latest rewrote ERE down to BRE but also tweaked
something else around U+2026 …. Please try that version again when
you have a chance.

Copy link

gitgitgadget bot commented Sep 25, 2024

This patch series was integrated into seen via git@c0a1d61.

Copy link

gitgitgadget bot commented Sep 26, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Reverted out of 'next', and then replaced.
Will merge to 'next'?
source: <[email protected]>

Copy link

gitgitgadget bot commented Sep 26, 2024

This patch series was integrated into seen via git@6eb3a4e.

Copy link

gitgitgadget bot commented Sep 26, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Reverted out of 'next', and then replaced.
Will merge to 'next'?
source: <[email protected]>

Copy link

gitgitgadget bot commented Sep 27, 2024

This patch series was integrated into seen via git@2291cb7.

Copy link

gitgitgadget bot commented Sep 27, 2024

This patch series was integrated into seen via git@55e57e6.

Copy link

gitgitgadget bot commented Sep 30, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Reverted out of 'next', and then replaced.
Will merge to 'next'.
source: <[email protected]>

Copy link

gitgitgadget bot commented Oct 1, 2024

This patch series was integrated into seen via git@95597c8.

Copy link

gitgitgadget bot commented Oct 1, 2024

This patch series was integrated into next via git@15ec13e.

Copy link

gitgitgadget bot commented Oct 1, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Will merge to 'master'.
source: <[email protected]>

Copy link

gitgitgadget bot commented Oct 2, 2024

This patch series was integrated into seen via git@13da69d.

Copy link

gitgitgadget bot commented Oct 2, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Will cook in 'next'.
source: <[email protected]>

Copy link

gitgitgadget bot commented Oct 2, 2024

On the Git mailing list, Josh Steadmon wrote (reply to this):

On 2024.09.24 13:33, Junio C Hamano wrote:
> Torsten B�gershausen <[email protected]> writes:
> 
> > On Tue, Sep 24, 2024 at 10:16:10AM -0700, Junio C Hamano wrote:
> >> "Jean-No�l Avila via GitGitGadget" <[email protected]> writes:
> >>
> >> > Changes since V4:
> >> >
> >> >  * used BRE in sed filter
> >> >  * rework the processing of three dots
> >> ...
> >> Josh (or whoever is taking over this week from him at Google), can
> >> you see if the breakage you saw that stopped us merging the topic
> >> before it causes us trouble on 'master' reproduces with this version
> >> (either by running "make doc" on the topic branch by itself, or on
> >> 'seen' that merges the topic) in your environment that had trouble
> >> with the previous round?
> >>
> >> It would also be highly appreciated if other macOS users try "make
> >> doc" and see the resulting git-init and git-clone documentation
> >> pages are reasonable, both for the previous round that has been
> >> cooking in 'next' and for this latest round.  Inputs from folks on
> >> more mainstream platforms with modern asciidoc/asciidoctor toolchain
> >> would also help.  The more people we have who look at how the new
> >> way the synopsis section is written and how the resulting documents
> >> get rendered, the more fairly we can assess the value of this topic.
> >>
> > Here a report from a MacOs user,
> > asciidoc --version
> > asciidoc 10.2.0
> >
> > installed via macports.
> >
> > No problems seen in the seen branch.
> >
> > I diffed git-init.html from seen of today against both master and next,
> > some (minor) improvements (like GIT_OBJECT_DIRECTORY vs $GIT_OBJECT_DIRECTORY)
> > All in all it looks all sensible.
> > (and yes, `sed` understands -E)
> 
> Since I haven't pushed out the 'seen' branch with latest iteration,
> your sucess report is about the previous iteration that Josh said
> "still breaks on MacOS" [*].  The plot thickens...
> 
> Thanks.
> 
> 
> [Reference]
> 
>  * https://lore.kernel.org/git/4ww5v253vz2g4i3z2x3dmgkrot7mcn2qm6ckjcxbyky6yvrozy@mr5hnrsfj6sn/

I finally got the chance to test this version on $DAYJOB's build
infrastructure, and I verified that it works (I also got a much more
recent version of sed installed).

Copy link

gitgitgadget bot commented Oct 2, 2024

On the Git mailing list, Junio C Hamano wrote (reply to this):

Josh Steadmon <[email protected]> writes:

> I finally got the chance to test this version on $DAYJOB's build
> infrastructure, and I verified that it works (I also got a much more
> recent version of sed installed).

Thanks for a follow-up.

Copy link

gitgitgadget bot commented Oct 4, 2024

This patch series was integrated into seen via git@54e1d00.

Copy link

gitgitgadget bot commented Oct 4, 2024

This patch series was integrated into seen via git@09a010c.

Copy link

gitgitgadget bot commented Oct 5, 2024

This patch series was integrated into seen via git@af08cec.

Copy link

gitgitgadget bot commented Oct 5, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Will cook in 'next'.
source: <[email protected]>

Copy link

gitgitgadget bot commented Oct 7, 2024

This patch series was integrated into seen via git@66a3e57.

Copy link

gitgitgadget bot commented Oct 7, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Will cook in 'next'.
source: <[email protected]>

Copy link

gitgitgadget bot commented Oct 9, 2024

There was a status update in the "Cooking" section about the branch ja/doc-synopsis-markup on the Git mailing list:

The way AsciiDoc is used for SYNOPSIS part of the manual pages has
been revamped.  The sources, at least for the simple cases, got
vastly pleasant to work with.

Will cook in 'next'.
source: <[email protected]>

Copy link

gitgitgadget bot commented Oct 9, 2024

This patch series was integrated into seen via git@ead5af0.

Copy link

gitgitgadget bot commented Oct 9, 2024

This patch series was integrated into seen via git@a1cf574.

Copy link

gitgitgadget bot commented Oct 10, 2024

This patch series was integrated into seen via git@7994503.

Copy link

gitgitgadget bot commented Oct 10, 2024

This patch series was integrated into master via git@7994503.

Copy link

gitgitgadget bot commented Oct 10, 2024

This patch series was integrated into next via git@7994503.

@gitgitgadget gitgitgadget bot added the master label Oct 10, 2024
Copy link

gitgitgadget bot commented Oct 10, 2024

Closed via 7994503.

@gitgitgadget gitgitgadget bot closed this Oct 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant