[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc_html.c between version 1.24 and 1.40

version 1.24, 2009/10/07 14:39:00 version 1.40, 2009/10/27 04:50:15
Line 16 
Line 16 
  */   */
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/queue.h>  
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
Line 29 
Line 28 
 #include "out.h"  #include "out.h"
 #include "html.h"  #include "html.h"
 #include "mdoc.h"  #include "mdoc.h"
   #include "main.h"
   
 #define INDENT           5  #define INDENT           5
 #define HALFINDENT       3  #define HALFINDENT       3
Line 49  static void    print_mdoc_nodelist(MDOC_ARGS);
Line 49  static void    print_mdoc_nodelist(MDOC_ARGS);
   
 static  void              a2width(const char *, struct roffsu *);  static  void              a2width(const char *, struct roffsu *);
 static  void              a2offs(const char *, struct roffsu *);  static  void              a2offs(const char *, struct roffsu *);
   
 static  int               a2list(const struct mdoc_node *);  static  int               a2list(const struct mdoc_node *);
   
 static  void              mdoc_root_post(MDOC_ARGS);  static  void              mdoc_root_post(MDOC_ARGS);
 static  int               mdoc_root_pre(MDOC_ARGS);  static  int               mdoc_root_pre(MDOC_ARGS);
 static  int               mdoc_it_block_pre(MDOC_ARGS, int,  
                                 struct roffsu *, int,  
                                 struct roffsu *);  
 static  int               mdoc_it_head_pre(MDOC_ARGS, int,  
                                 struct roffsu *);  
 static  int               mdoc_it_body_pre(MDOC_ARGS, int);  
   
 static  void              mdoc__x_post(MDOC_ARGS);  static  void              mdoc__x_post(MDOC_ARGS);
 static  int               mdoc__x_pre(MDOC_ARGS);  static  int               mdoc__x_pre(MDOC_ARGS);
Line 96  static void    mdoc_fo_post(MDOC_ARGS);
Line 91  static void    mdoc_fo_post(MDOC_ARGS);
 static  int               mdoc_fo_pre(MDOC_ARGS);  static  int               mdoc_fo_pre(MDOC_ARGS);
 static  int               mdoc_ic_pre(MDOC_ARGS);  static  int               mdoc_ic_pre(MDOC_ARGS);
 static  int               mdoc_in_pre(MDOC_ARGS);  static  int               mdoc_in_pre(MDOC_ARGS);
   static  int               mdoc_it_block_pre(MDOC_ARGS, int, int,
                                   struct roffsu *, struct roffsu *);
   static  int               mdoc_it_head_pre(MDOC_ARGS, int,
                                   struct roffsu *);
   static  int               mdoc_it_body_pre(MDOC_ARGS, int);
 static  int               mdoc_it_pre(MDOC_ARGS);  static  int               mdoc_it_pre(MDOC_ARGS);
 static  int               mdoc_lb_pre(MDOC_ARGS);  static  int               mdoc_lb_pre(MDOC_ARGS);
 static  int               mdoc_li_pre(MDOC_ARGS);  static  int               mdoc_li_pre(MDOC_ARGS);
Line 253  static const struct htmlmdoc mdocs[MDOC_MAX] = {
Line 253  static const struct htmlmdoc mdocs[MDOC_MAX] = {
         {mdoc__x_pre, mdoc__x_post}, /* %Q */          {mdoc__x_pre, mdoc__x_post}, /* %Q */
         {mdoc_sp_pre, NULL}, /* br */          {mdoc_sp_pre, NULL}, /* br */
         {mdoc_sp_pre, NULL}, /* sp */          {mdoc_sp_pre, NULL}, /* sp */
           {mdoc__x_pre, mdoc__x_post}, /* %U */
 };  };
   
   
Line 326  static void
Line 327  static void
 a2width(const char *p, struct roffsu *su)  a2width(const char *p, struct roffsu *su)
 {  {
   
         if (a2roffsu(p, su))          if ( ! a2roffsu(p, su, SCALE_MAX)) {
                 return;                  su->unit = SCALE_EM;
         su->unit = SCALE_EM;                  su->scale = (int)strlen(p);
         su->scale = (int)strlen(p);          }
 }  }
   
   
Line 342  static void
Line 343  static void
 a2offs(const char *p, struct roffsu *su)  a2offs(const char *p, struct roffsu *su)
 {  {
   
           /* FIXME: "right"? */
   
         if (0 == strcmp(p, "left"))          if (0 == strcmp(p, "left"))
                 SCALE_HS_INIT(su, 0);                  SCALE_HS_INIT(su, 0);
         else if (0 == strcmp(p, "indent"))          else if (0 == strcmp(p, "indent"))
                 SCALE_HS_INIT(su, INDENT);                  SCALE_HS_INIT(su, INDENT);
         else if (0 == strcmp(p, "indent-two"))          else if (0 == strcmp(p, "indent-two"))
                 SCALE_HS_INIT(su, INDENT * 2);                  SCALE_HS_INIT(su, INDENT * 2);
         else if ( ! a2roffsu(p, su)) {          else if ( ! a2roffsu(p, su, SCALE_MAX)) {
                 su->unit = SCALE_EM;                  su->unit = SCALE_EM;
                 su->scale = (int)strlen(p);                  su->scale = (int)strlen(p);
         }          }
Line 413  print_mdoc_node(MDOC_ARGS)
Line 416  print_mdoc_node(MDOC_ARGS)
         struct tag      *t;          struct tag      *t;
   
         child = 1;          child = 1;
         t = SLIST_FIRST(&h->tags);          t = h->tags.head;
   
         bufinit(h);          bufinit(h);
         switch (n->type) {          switch (n->type) {
Line 453  print_mdoc_node(MDOC_ARGS)
Line 456  print_mdoc_node(MDOC_ARGS)
 static void  static void
 mdoc_root_post(MDOC_ARGS)  mdoc_root_post(MDOC_ARGS)
 {  {
         struct tm        tm;          struct htmlpair  tag[3];
         struct htmlpair  tag[2];  
         struct tag      *t, *tt;          struct tag      *t, *tt;
         char             b[BUFSIZ];          char             b[DATESIZ];
   
           time2a(m->date, b, DATESIZ);
   
         /*          /*
          * XXX: this should use divs, but in Firefox, divs with nested           * XXX: this should use divs, but in Firefox, divs with nested
          * divs for some reason puke when trying to put a border line           * divs for some reason puke when trying to put a border line
          * below.  So I use tables, instead.           * below.  So I use tables, instead.
          */           */
   
         (void)localtime_r(&m->date, &tm);  
   
         if (0 == strftime(b, BUFSIZ - 1, "%B %e, %Y", &tm))  
                 err(EXIT_FAILURE, "strftime");  
   
         PAIR_CLASS_INIT(&tag[0], "footer");          PAIR_CLASS_INIT(&tag[0], "footer");
         bufcat_style(h, "width", "100%");          bufcat_style(h, "width", "100%");
         PAIR_STYLE_INIT(&tag[1], h);          PAIR_STYLE_INIT(&tag[1], h);
         t = print_otag(h, TAG_TABLE, 2, tag);          PAIR_SUMMARY_INIT(&tag[2], "footer");
   
           t = print_otag(h, TAG_TABLE, 3, tag);
         tt = print_otag(h, TAG_TR, 0, NULL);          tt = print_otag(h, TAG_TR, 0, NULL);
   
         bufinit(h);          bufinit(h);
Line 496  mdoc_root_post(MDOC_ARGS)
Line 497  mdoc_root_post(MDOC_ARGS)
 static int  static int
 mdoc_root_pre(MDOC_ARGS)  mdoc_root_pre(MDOC_ARGS)
 {  {
         struct htmlpair  tag[2];          struct htmlpair  tag[3];
         struct tag      *t, *tt;          struct tag      *t, *tt;
         char             b[BUFSIZ], title[BUFSIZ];          char             b[BUFSIZ], title[BUFSIZ];
   
Line 516  mdoc_root_pre(MDOC_ARGS)
Line 517  mdoc_root_pre(MDOC_ARGS)
         PAIR_CLASS_INIT(&tag[0], "header");          PAIR_CLASS_INIT(&tag[0], "header");
         bufcat_style(h, "width", "100%");          bufcat_style(h, "width", "100%");
         PAIR_STYLE_INIT(&tag[1], h);          PAIR_STYLE_INIT(&tag[1], h);
         t = print_otag(h, TAG_TABLE, 2, tag);          PAIR_SUMMARY_INIT(&tag[2], "header");
   
           t = print_otag(h, TAG_TABLE, 3, tag);
   
         tt = print_otag(h, TAG_TR, 0, NULL);          tt = print_otag(h, TAG_TR, 0, NULL);
   
         bufinit(h);          bufinit(h);
Line 552  mdoc_sh_pre(MDOC_ARGS)
Line 556  mdoc_sh_pre(MDOC_ARGS)
 {  {
         struct htmlpair          tag[2];          struct htmlpair          tag[2];
         const struct mdoc_node  *nn;          const struct mdoc_node  *nn;
         char                     link[BUFSIZ];          char                     lbuf[BUFSIZ];
         struct roffsu            su;          struct roffsu            su;
   
         if (MDOC_BODY == n->type) {          if (MDOC_BODY == n->type) {
Line 579  mdoc_sh_pre(MDOC_ARGS)
Line 583  mdoc_sh_pre(MDOC_ARGS)
                 return(1);                  return(1);
         }          }
   
         link[0] = 0;          lbuf[0] = 0;
         for (nn = n->child; nn; nn = nn->next) {          for (nn = n->child; nn; nn = nn->next) {
                 (void)strlcat(link, nn->string, BUFSIZ);                  (void)strlcat(lbuf, nn->string, BUFSIZ);
                 if (nn->next)                  if (nn->next)
                         (void)strlcat(link, "_", BUFSIZ);                          (void)strlcat(lbuf, "_", BUFSIZ);
         }          }
   
         /*          /*
Line 593  mdoc_sh_pre(MDOC_ARGS)
Line 597  mdoc_sh_pre(MDOC_ARGS)
   
         PAIR_CLASS_INIT(&tag[0], "sec-head");          PAIR_CLASS_INIT(&tag[0], "sec-head");
         tag[1].key = ATTR_ID;          tag[1].key = ATTR_ID;
         tag[1].val = link;          tag[1].val = lbuf;
         print_otag(h, TAG_DIV, 2, tag);          print_otag(h, TAG_DIV, 2, tag);
         return(1);          return(1);
 }  }
Line 605  mdoc_ss_pre(MDOC_ARGS)
Line 609  mdoc_ss_pre(MDOC_ARGS)
 {  {
         struct htmlpair          tag[3];          struct htmlpair          tag[3];
         const struct mdoc_node  *nn;          const struct mdoc_node  *nn;
         char                     link[BUFSIZ];          char                     lbuf[BUFSIZ];
         struct roffsu            su;          struct roffsu            su;
   
         SCALE_VS_INIT(&su, 1);          SCALE_VS_INIT(&su, 1);
Line 632  mdoc_ss_pre(MDOC_ARGS)
Line 636  mdoc_ss_pre(MDOC_ARGS)
   
         /* TODO: see note in mdoc_sh_pre() about duplicates. */          /* TODO: see note in mdoc_sh_pre() about duplicates. */
   
         link[0] = 0;          lbuf[0] = 0;
         for (nn = n->child; nn; nn = nn->next) {          for (nn = n->child; nn; nn = nn->next) {
                 (void)strlcat(link, nn->string, BUFSIZ);                  (void)strlcat(lbuf, nn->string, BUFSIZ);
                 if (nn->next)                  if (nn->next)
                         (void)strlcat(link, "_", BUFSIZ);                          (void)strlcat(lbuf, "_", BUFSIZ);
         }          }
   
         SCALE_HS_INIT(&su, INDENT - HALFINDENT);          SCALE_HS_INIT(&su, INDENT - HALFINDENT);
Line 646  mdoc_ss_pre(MDOC_ARGS)
Line 650  mdoc_ss_pre(MDOC_ARGS)
         PAIR_CLASS_INIT(&tag[0], "ssec-head");          PAIR_CLASS_INIT(&tag[0], "ssec-head");
         PAIR_STYLE_INIT(&tag[1], h);          PAIR_STYLE_INIT(&tag[1], h);
         tag[2].key = ATTR_ID;          tag[2].key = ATTR_ID;
         tag[2].val = link;          tag[2].val = lbuf;
         print_otag(h, TAG_DIV, 3, tag);          print_otag(h, TAG_DIV, 3, tag);
         return(1);          return(1);
 }  }
Line 855  mdoc_bx_pre(MDOC_ARGS)
Line 859  mdoc_bx_pre(MDOC_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 mdoc_it_block_pre(MDOC_ARGS, int type, struct roffsu *offs,  mdoc_it_block_pre(MDOC_ARGS, int type, int comp,
                 int comp, struct roffsu *width)                  struct roffsu *offs, struct roffsu *width)
 {  {
         struct htmlpair          tag;          struct htmlpair          tag;
         const struct mdoc_node  *nn;          const struct mdoc_node  *nn;
Line 908  mdoc_it_block_pre(MDOC_ARGS, int type, struct roffsu *
Line 912  mdoc_it_block_pre(MDOC_ARGS, int type, struct roffsu *
 }  }
   
   
   /* ARGSUSED */
 static int  static int
 mdoc_it_body_pre(MDOC_ARGS, int type)  mdoc_it_body_pre(MDOC_ARGS, int type)
 {  {
Line 937  mdoc_it_body_pre(MDOC_ARGS, int type)
Line 942  mdoc_it_body_pre(MDOC_ARGS, int type)
 }  }
   
   
   /* ARGSUSED */
 static int  static int
 mdoc_it_head_pre(MDOC_ARGS, int type, struct roffsu *width)  mdoc_it_head_pre(MDOC_ARGS, int type, struct roffsu *width)
 {  {
Line 979  mdoc_it_head_pre(MDOC_ARGS, int type, struct roffsu *w
Line 985  mdoc_it_head_pre(MDOC_ARGS, int type, struct roffsu *w
                 print_otag(h, TAG_SPAN, 1, &tag);                  print_otag(h, TAG_SPAN, 1, &tag);
                 break;                  break;
         case (MDOC_Enum):          case (MDOC_Enum):
                 ord = SLIST_FIRST(&h->ords);                  ord = h->ords.head;
                 assert(ord);                  assert(ord);
                 nbuf[BUFSIZ - 1] = 0;                  nbuf[BUFSIZ - 1] = 0;
                 (void)snprintf(nbuf, BUFSIZ - 1, "%d.", ord->pos++);                  (void)snprintf(nbuf, BUFSIZ - 1, "%d.", ord->pos++);
Line 1063  mdoc_it_pre(MDOC_ARGS)
Line 1069  mdoc_it_pre(MDOC_ARGS)
         /* Override width in some cases. */          /* Override width in some cases. */
   
         switch (type) {          switch (type) {
           case (MDOC_Item):
                   /* FALLTHROUGH */
         case (MDOC_Inset):          case (MDOC_Inset):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Diag):          case (MDOC_Diag):
Line 1079  mdoc_it_pre(MDOC_ARGS)
Line 1087  mdoc_it_pre(MDOC_ARGS)
         if (MDOC_BODY == n->type)          if (MDOC_BODY == n->type)
                 return(mdoc_it_body_pre(m, n, h, type));                  return(mdoc_it_body_pre(m, n, h, type));
         if (MDOC_BLOCK == n->type)          if (MDOC_BLOCK == n->type)
                 return(mdoc_it_block_pre(m, n, h, type,                  return(mdoc_it_block_pre(m, n, h, type, comp,
                                         &offs, comp, &width));                                          &offs, &width));
   
         /* Override column widths. */          /* Override column widths. */
   
Line 1112  mdoc_bl_pre(MDOC_ARGS)
Line 1120  mdoc_bl_pre(MDOC_ARGS)
                 err(EXIT_FAILURE, "malloc");                  err(EXIT_FAILURE, "malloc");
         ord->cookie = n;          ord->cookie = n;
         ord->pos = 1;          ord->pos = 1;
         SLIST_INSERT_HEAD(&h->ords, ord, entry);          ord->next = h->ords.head;
           h->ords.head = ord;
         return(1);          return(1);
 }  }
   
Line 1128  mdoc_bl_post(MDOC_ARGS)
Line 1137  mdoc_bl_post(MDOC_ARGS)
         if (MDOC_Enum != a2list(n))          if (MDOC_Enum != a2list(n))
                 return;                  return;
   
         ord = SLIST_FIRST(&h->ords);          ord = h->ords.head;
         assert(ord);          assert(ord);
         SLIST_REMOVE_HEAD(&h->ords, entry);          h->ords.head = ord->next;
         free(ord);          free(ord);
 }  }
   
Line 1267  mdoc_d1_pre(MDOC_ARGS)
Line 1276  mdoc_d1_pre(MDOC_ARGS)
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
   
           /* FIXME: D1 shouldn't be literal. */
   
         SCALE_VS_INIT(&su, INDENT - 2);          SCALE_VS_INIT(&su, INDENT - 2);
         bufcat_su(h, "margin-left", &su);          bufcat_su(h, "margin-left", &su);
         PAIR_CLASS_INIT(&tag[0], "lit");          PAIR_CLASS_INIT(&tag[0], "lit");
Line 1282  mdoc_sx_pre(MDOC_ARGS)
Line 1293  mdoc_sx_pre(MDOC_ARGS)
 {  {
         struct htmlpair          tag[2];          struct htmlpair          tag[2];
         const struct mdoc_node  *nn;          const struct mdoc_node  *nn;
         char                     link[BUFSIZ];          char                     buf[BUFSIZ];
   
         /* FIXME: duplicates? */          /* FIXME: duplicates? */
   
         (void)strlcpy(link, "#", BUFSIZ);          (void)strlcpy(buf, "#", BUFSIZ);
         for (nn = n->child; nn; nn = nn->next) {          for (nn = n->child; nn; nn = nn->next) {
                 (void)strlcat(link, nn->string, BUFSIZ);                  (void)strlcat(buf, nn->string, BUFSIZ);
                 if (nn->next)                  if (nn->next)
                         (void)strlcat(link, "_", BUFSIZ);                          (void)strlcat(buf, "_", BUFSIZ);
         }          }
   
         PAIR_CLASS_INIT(&tag[0], "link-sec");          PAIR_CLASS_INIT(&tag[0], "link-sec");
         tag[1].key = ATTR_HREF;          tag[1].key = ATTR_HREF;
         tag[1].val = link;          tag[1].val = buf;
   
         print_otag(h, TAG_A, 2, tag);          print_otag(h, TAG_A, 2, tag);
         return(1);          return(1);
Line 1354  mdoc_bd_pre(MDOC_ARGS)
Line 1365  mdoc_bd_pre(MDOC_ARGS)
                 case (MDOC_Compact):                  case (MDOC_Compact):
                         comp = 1;                          comp = 1;
                         break;                          break;
                   case (MDOC_Centred):
                           /* FALLTHROUGH */
                 case (MDOC_Ragged):                  case (MDOC_Ragged):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Filled):                  case (MDOC_Filled):
Line 1363  mdoc_bd_pre(MDOC_ARGS)
Line 1376  mdoc_bd_pre(MDOC_ARGS)
                 case (MDOC_Literal):                  case (MDOC_Literal):
                         type = bl->args->argv[i].arg;                          type = bl->args->argv[i].arg;
                         break;                          break;
                   default:
                           break;
                 }                  }
   
           /* FIXME: -centered, etc. formatting. */
   
         if (MDOC_BLOCK == n->type) {          if (MDOC_BLOCK == n->type) {
                 bufcat_su(h, "margin-left", &su);                  bufcat_su(h, "margin-left", &su);
                 for (nn = n; nn && ! comp; nn = nn->parent) {                  for (nn = n; nn && ! comp; nn = nn->parent) {
Line 1453  mdoc_cd_pre(MDOC_ARGS)
Line 1470  mdoc_cd_pre(MDOC_ARGS)
 {  {
         struct htmlpair tag;          struct htmlpair tag;
   
           print_otag(h, TAG_DIV, 0, NULL);
         PAIR_CLASS_INIT(&tag, "config");          PAIR_CLASS_INIT(&tag, "config");
         print_otag(h, TAG_SPAN, 1, &tag);          print_otag(h, TAG_SPAN, 1, &tag);
         return(1);          return(1);
Line 1622  mdoc_fn_pre(MDOC_ARGS)
Line 1640  mdoc_fn_pre(MDOC_ARGS)
         assert(n->child->string);          assert(n->child->string);
         sp = n->child->string;          sp = n->child->string;
   
         if ((ep = strchr(sp, ' '))) {          ep = strchr(sp, ' ');
           if (NULL != ep) {
                 PAIR_CLASS_INIT(&tag[0], "ftype");                  PAIR_CLASS_INIT(&tag[0], "ftype");
                 t = print_otag(h, TAG_SPAN, 1, tag);                  t = print_otag(h, TAG_SPAN, 1, tag);
   
Line 1743  mdoc_lk_pre(MDOC_ARGS)
Line 1762  mdoc_lk_pre(MDOC_ARGS)
         tag[1].val = nn->string;          tag[1].val = nn->string;
         print_otag(h, TAG_A, 2, tag);          print_otag(h, TAG_A, 2, tag);
   
           if (NULL == nn->next)
                   return(1);
   
         for (nn = nn->next; nn; nn = nn->next)          for (nn = nn->next; nn; nn = nn->next)
                 print_text(h, nn->string);                  print_text(h, nn->string);
   
Line 1827  mdoc_in_pre(MDOC_ARGS)
Line 1849  mdoc_in_pre(MDOC_ARGS)
                         print_otag(h, TAG_DIV, 0, NULL);                          print_otag(h, TAG_DIV, 0, NULL);
         }          }
   
           /* FIXME: there's a buffer bug in here somewhere. */
   
         PAIR_CLASS_INIT(&tag[0], "includes");          PAIR_CLASS_INIT(&tag[0], "includes");
         print_otag(h, TAG_SPAN, 1, tag);          print_otag(h, TAG_SPAN, 1, tag);
   
Line 2131  mdoc_lb_pre(MDOC_ARGS)
Line 2155  mdoc_lb_pre(MDOC_ARGS)
 static int  static int
 mdoc__x_pre(MDOC_ARGS)  mdoc__x_pre(MDOC_ARGS)
 {  {
         struct htmlpair tag;          struct htmlpair tag[2];
   
         switch (n->tok) {          switch (n->tok) {
         case(MDOC__A):          case(MDOC__A):
                 PAIR_CLASS_INIT(&tag, "ref-auth");                  PAIR_CLASS_INIT(&tag[0], "ref-auth");
                 break;                  break;
         case(MDOC__B):          case(MDOC__B):
                 PAIR_CLASS_INIT(&tag, "ref-book");                  PAIR_CLASS_INIT(&tag[0], "ref-book");
                 break;                  break;
         case(MDOC__C):          case(MDOC__C):
                 PAIR_CLASS_INIT(&tag, "ref-city");                  PAIR_CLASS_INIT(&tag[0], "ref-city");
                 break;                  break;
         case(MDOC__D):          case(MDOC__D):
                 PAIR_CLASS_INIT(&tag, "ref-date");                  PAIR_CLASS_INIT(&tag[0], "ref-date");
                 break;                  break;
         case(MDOC__I):          case(MDOC__I):
                 PAIR_CLASS_INIT(&tag, "ref-issue");                  PAIR_CLASS_INIT(&tag[0], "ref-issue");
                 break;                  break;
         case(MDOC__J):          case(MDOC__J):
                 PAIR_CLASS_INIT(&tag, "ref-jrnl");                  PAIR_CLASS_INIT(&tag[0], "ref-jrnl");
                 break;                  break;
         case(MDOC__N):          case(MDOC__N):
                 PAIR_CLASS_INIT(&tag, "ref-num");                  PAIR_CLASS_INIT(&tag[0], "ref-num");
                 break;                  break;
         case(MDOC__O):          case(MDOC__O):
                 PAIR_CLASS_INIT(&tag, "ref-opt");                  PAIR_CLASS_INIT(&tag[0], "ref-opt");
                 break;                  break;
         case(MDOC__P):          case(MDOC__P):
                 PAIR_CLASS_INIT(&tag, "ref-page");                  PAIR_CLASS_INIT(&tag[0], "ref-page");
                 break;                  break;
         case(MDOC__Q):          case(MDOC__Q):
                 PAIR_CLASS_INIT(&tag, "ref-corp");                  PAIR_CLASS_INIT(&tag[0], "ref-corp");
                 break;                  break;
         case(MDOC__R):          case(MDOC__R):
                 PAIR_CLASS_INIT(&tag, "ref-rep");                  PAIR_CLASS_INIT(&tag[0], "ref-rep");
                 break;                  break;
         case(MDOC__T):          case(MDOC__T):
                 PAIR_CLASS_INIT(&tag, "ref-title");                  PAIR_CLASS_INIT(&tag[0], "ref-title");
                 print_text(h, "\\(lq");                  print_text(h, "\\(lq");
                 h->flags |= HTML_NOSPACE;                  h->flags |= HTML_NOSPACE;
                 break;                  break;
           case(MDOC__U):
                   PAIR_CLASS_INIT(&tag[0], "link-ref");
                   break;
         case(MDOC__V):          case(MDOC__V):
                 PAIR_CLASS_INIT(&tag, "ref-vol");                  PAIR_CLASS_INIT(&tag[0], "ref-vol");
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         print_otag(h, TAG_SPAN, 1, &tag);          if (MDOC__U != n->tok) {
                   print_otag(h, TAG_SPAN, 1, tag);
                   return(1);
           }
   
           PAIR_HREF_INIT(&tag[1], n->child->string);
           print_otag(h, TAG_A, 2, tag);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.40

CVSweb