Override the [header] macro of asciidoc's docbook backend to add version information to the generated man pages. Signed-off-by: Frank Lichtenheld <frank@xxxxxxxxxxxxxx> --- Documentation/asciidoc.conf.in | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) I personally prefer to have this information available in the man page. Copying the whole [header] template is at best ugly but works. Better suggestions welcome. diff --git a/Documentation/asciidoc.conf.in b/Documentation/asciidoc.conf.in index 44b1ce4..a86c31d 100644 --- a/Documentation/asciidoc.conf.in +++ b/Documentation/asciidoc.conf.in @@ -31,6 +31,23 @@ ifdef::backend-docbook[] {title#}</example> endif::backend-docbook[] +ifdef::backend-docbook[] +[header] +template::[header-declarations] +<refentry> +<refmeta> +<refentrytitle>{mantitle}</refentrytitle> +<manvolnum>{manvolnum}</manvolnum> +<refmiscinfo class="source">Git</refmiscinfo> +<refmiscinfo class="version">@@GIT_VERSION@@</refmiscinfo> +<refmiscinfo class="manual">Git Manual</refmiscinfo> +</refmeta> +<refnamediv> + <refname>{manname}</refname> + <refpurpose>{manpurpose}</refpurpose> +</refnamediv> +endif::backend-docbook[] + ifdef::backend-xhtml11[] [gitlink-inlinemacro] <a href="{target}.html">{target}{0?({0})}</a> -- 1.5.0.3 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html