]> git.cameronkatri.com Git - mandoc.git/commitdiff
Properly handle -mdoc %A in all outputs. This has two-author entires
authorKristaps Dzonsons <kristaps@bsd.lv>
Sat, 4 Sep 2010 19:01:52 +0000 (19:01 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Sat, 4 Sep 2010 19:01:52 +0000 (19:01 +0000)
separated by only "and" while two or more are with ", and" for the last
author.

Also remove relevant TODO and add regression tests.

TODO
mdoc_html.c
mdoc_term.c
regress/mdoc/Rs/one_author.in [new file with mode: 0644]
regress/mdoc/Rs/three_authors.in [new file with mode: 0644]
regress/mdoc/Rs/two_authors.in [new file with mode: 0644]

diff --git a/TODO b/TODO
index 9744c444123bd3030ba6e7fb147d1af38fe147b7..5bc6b596cde294548467ad3c37d334974d292112 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,6 +1,6 @@
 ************************************************************************
 * Official mandoc TODO.
-* $Id: TODO,v 1.43 2010/09/04 18:52:21 kristaps Exp $
+* $Id: TODO,v 1.44 2010/09/04 19:01:52 kristaps Exp $
 ************************************************************************
 
 ************************************************************************
@@ -90,8 +90,6 @@
   try e.g. .Bl -column It Ta Ta
   reported by millert Fri, 02 Apr 2010 16:13:46 -0400
 
-- %A doesn't put an "and" before the final author name.
-
 ************************************************************************
 * formatting issues: gratuitious differences
 ************************************************************************
   Opening punctuation should not fall out of .Ns.
   see for example OpenBSD csh(1)
 
-- .%A should append the last author with " and " (if there are two)
-  or ", and " (if there are more), not ", "
-  see for example OpenBSD csh(1)
-
 - In .Bl -bullet, the groff bullet is "+\b+\bo\bo", the mandoc bullet
   is just "o\bo".
   see for example OpenBSD ksh(1)
index 1ee5c07667e1ca1baf1c77b4e59edb546c81f4a5..59be4e9855a026eecf84ff951d3d39ebdc67e31b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_html.c,v 1.102 2010/08/20 01:02:07 schwarze Exp $ */
+/*     $Id: mdoc_html.c,v 1.103 2010/09/04 19:01:52 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -2194,6 +2194,9 @@ mdoc__x_pre(MDOC_ARGS)
        switch (n->tok) {
        case(MDOC__A):
                PAIR_CLASS_INIT(&tag[0], "ref-auth");
+               if (n->prev && MDOC__A == n->prev->tok)
+                       if (NULL == n->next || MDOC__A != n->next->tok)
+                               print_text(h, "and");
                break;
        case(MDOC__B):
                PAIR_CLASS_INIT(&tag[0], "ref-book");
@@ -2246,6 +2249,7 @@ mdoc__x_pre(MDOC_ARGS)
 
        PAIR_HREF_INIT(&tag[1], n->child->string);
        print_otag(h, TAG_A, 2, tag);
+
        return(1);
 }
 
@@ -2255,6 +2259,11 @@ static void
 mdoc__x_post(MDOC_ARGS)
 {
 
+       if (MDOC__A == n->tok && n->next && MDOC__A == n->next->tok)
+               if (NULL == n->next->next || MDOC__A != n->next->next->tok)
+                       if (NULL == n->prev || MDOC__A != n->prev->tok)
+                               return;
+
        /* TODO: %U */
 
        h->flags |= HTML_NOSPACE;
index ba16bbc260adf471d75c12c46f297beaa26f7a08..ca865c4f2ce070de9489b2fdb84b3ff72aa42618 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_term.c,v 1.183 2010/08/21 14:04:13 schwarze Exp $ */
+/*     $Id: mdoc_term.c,v 1.184 2010/09/04 19:01:52 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -92,6 +92,7 @@ static        void      termp_sh_post(DECL_ARGS);
 static void      termp_sq_post(DECL_ARGS);
 static void      termp_ss_post(DECL_ARGS);
 
+static int       termp__a_pre(DECL_ARGS);
 static int       termp_an_pre(DECL_ARGS);
 static int       termp_ap_pre(DECL_ARGS);
 static int       termp_aq_pre(DECL_ARGS);
@@ -178,7 +179,7 @@ static      const struct termact termacts[MDOC_MAX] = {
        { termp_under_pre, NULL }, /* Va */
        { termp_vt_pre, NULL }, /* Vt */
        { termp_xr_pre, NULL }, /* Xr */
-       { NULL, termp____post }, /* %A */
+       { termp__a_pre, termp____post }, /* %A */
        { termp_under_pre, termp____post }, /* %B */
        { NULL, termp____post }, /* %D */
        { termp_under_pre, termp____post }, /* %I */
@@ -1077,6 +1078,19 @@ termp_fl_pre(DECL_ARGS)
 }
 
 
+/* ARGSUSED */
+static int
+termp__a_pre(DECL_ARGS)
+{
+
+       if (n->prev && MDOC__A == n->prev->tok)
+               if (NULL == n->next || MDOC__A != n->next->tok)
+                       term_word(p, "and");
+
+       return(1);
+}
+
+
 /* ARGSUSED */
 static int
 termp_an_pre(DECL_ARGS)
@@ -2098,6 +2112,16 @@ static void
 termp____post(DECL_ARGS)
 {
 
+       /*
+        * Handle lists of authors.  In general, print each followed by
+        * a comma.  Don't print the comma if there are only two
+        * authors.
+        */
+       if (MDOC__A == n->tok && n->next && MDOC__A == n->next->tok)
+               if (NULL == n->next->next || MDOC__A != n->next->next->tok)
+                       if (NULL == n->prev || MDOC__A != n->prev->tok)
+                               return;
+
        /* TODO: %U. */
 
        p->flags |= TERMP_NOSPACE;
diff --git a/regress/mdoc/Rs/one_author.in b/regress/mdoc/Rs/one_author.in
new file mode 100644 (file)
index 0000000..98934ec
--- /dev/null
@@ -0,0 +1,15 @@
+.Dd May 1, 2009
+.Dt FOO 1
+.Os
+.Sh NAME
+.Nm foo
+.Nd bar
+.Sh DESCRIPTION
+blah blah
+.Pp
+.Rs
+.%A joe
+.%T title
+.Re
+.Pp
+and so on
diff --git a/regress/mdoc/Rs/three_authors.in b/regress/mdoc/Rs/three_authors.in
new file mode 100644 (file)
index 0000000..245023c
--- /dev/null
@@ -0,0 +1,17 @@
+.Dd May 1, 2009
+.Dt FOO 1
+.Os
+.Sh NAME
+.Nm foo
+.Nd bar
+.Sh DESCRIPTION
+blah blah
+.Pp
+.Rs
+.%A billy-bob
+.%A joe
+.%A frank
+.%T title
+.Re
+.Pp
+and so on
diff --git a/regress/mdoc/Rs/two_authors.in b/regress/mdoc/Rs/two_authors.in
new file mode 100644 (file)
index 0000000..d1a74f2
--- /dev/null
@@ -0,0 +1,16 @@
+.Dd May 1, 2009
+.Dt FOO 1
+.Os
+.Sh NAME
+.Nm foo
+.Nd bar
+.Sh DESCRIPTION
+blah blah
+.Pp
+.Rs
+.%A joe
+.%A frank
+.%T title
+.Re
+.Pp
+and so on