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

Diff for /mandoc/man_html.c between version 1.16 and 1.23

version 1.16, 2009/10/28 08:00:18 version 1.23, 2009/11/16 06:07:49
Line 18 
Line 18 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h>  
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
Line 189  print_man_node(MAN_ARGS)
Line 188  print_man_node(MAN_ARGS)
                 break;                  break;
         case (MAN_TEXT):          case (MAN_TEXT):
                 print_text(h, n->string);                  print_text(h, n->string);
                 break;                  return;
         default:          default:
                   /*
                    * Close out scope of font prior to opening a macro
                    * scope.  Assert that the metafont is on the top of the
                    * stack (it's never nested).
                    */
                   if (h->metaf) {
                           assert(h->metaf == t);
                           print_tagq(h, h->metaf);
                           assert(NULL == h->metaf);
                           t = h->tags.head;
                   }
                 if (mans[n->tok].pre)                  if (mans[n->tok].pre)
                         child = (*mans[n->tok].pre)(m, n, h);                          child = (*mans[n->tok].pre)(m, n, h);
                 break;                  break;
Line 385  man_alt_pre(MAN_ARGS)
Line 395  man_alt_pre(MAN_ARGS)
         const struct man_node   *nn;          const struct man_node   *nn;
         struct tag              *t;          struct tag              *t;
         int                      i;          int                      i;
         struct htmlpair          tagi, tagb, *tagp;          enum htmlfont            fp;
   
         PAIR_CLASS_INIT(&tagi, "italic");  
         PAIR_CLASS_INIT(&tagb, "bold");  
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 switch (n->tok) {                  switch (n->tok) {
                 case (MAN_BI):                  case (MAN_BI):
                         tagp = i % 2 ? &tagi : &tagb;                          fp = i % 2 ? HTMLFONT_ITALIC : HTMLFONT_BOLD;
                         break;                          break;
                 case (MAN_IB):                  case (MAN_IB):
                         tagp = i % 2 ? &tagb : &tagi;                          fp = i % 2 ? HTMLFONT_BOLD : HTMLFONT_ITALIC;
                         break;                          break;
                 case (MAN_RI):                  case (MAN_RI):
                         tagp = i % 2 ? &tagi : NULL;                          fp = i % 2 ? HTMLFONT_ITALIC : HTMLFONT_NONE;
                         break;                          break;
                 case (MAN_IR):                  case (MAN_IR):
                         tagp = i % 2 ? NULL : &tagi;                          fp = i % 2 ? HTMLFONT_NONE : HTMLFONT_ITALIC;
                         break;                          break;
                 case (MAN_BR):                  case (MAN_BR):
                         tagp = i % 2 ? NULL : &tagb;                          fp = i % 2 ? HTMLFONT_NONE : HTMLFONT_BOLD;
                         break;                          break;
                 case (MAN_RB):                  case (MAN_RB):
                         tagp = i % 2 ? &tagb : NULL;                          fp = i % 2 ? HTMLFONT_BOLD : HTMLFONT_NONE;
                         break;                          break;
                 default:                  default:
                         abort();                          abort();
Line 418  man_alt_pre(MAN_ARGS)
Line 425  man_alt_pre(MAN_ARGS)
                 if (i)                  if (i)
                         h->flags |= HTML_NOSPACE;                          h->flags |= HTML_NOSPACE;
   
                 if (tagp) {                  t = print_ofont(h, fp);
                         t = print_otag(h, TAG_SPAN, 1, tagp);                  print_man_node(m, nn, h);
                         print_man_node(m, nn, h);                  print_tagq(h, t);
                         print_tagq(h, t);  
                 } else  
                         print_man_node(m, nn, h);  
         }          }
   
         return(0);          return(0);
Line 436  man_SB_pre(MAN_ARGS)
Line 440  man_SB_pre(MAN_ARGS)
 {  {
         struct htmlpair  tag;          struct htmlpair  tag;
   
           /* FIXME: print_ofont(). */
         PAIR_CLASS_INIT(&tag, "small bold");          PAIR_CLASS_INIT(&tag, "small bold");
         print_otag(h, TAG_SPAN, 1, &tag);          print_otag(h, TAG_SPAN, 1, &tag);
         return(1);          return(1);
Line 510  man_PP_pre(MAN_ARGS)
Line 515  man_PP_pre(MAN_ARGS)
   
         i = 0;          i = 0;
   
         if (MAN_ROOT == n->parent->tok) {          if (MAN_ROOT == n->parent->type) {
                 SCALE_HS_INIT(&su, INDENT);                  SCALE_HS_INIT(&su, INDENT);
                 bufcat_su(h, "margin-left", &su);                  bufcat_su(h, "margin-left", &su);
                 i++;                  i = 1;
         }          }
         if (n->next && n->next->child) {          if (n->prev) {
                 SCALE_VS_INIT(&su, 1);                  SCALE_VS_INIT(&su, 1);
                 bufcat_su(h, "margin-bottom", &su);                  bufcat_su(h, "margin-top", &su);
                 i++;                  i = 1;
         }          }
   
         PAIR_STYLE_INIT(&tag, h);          PAIR_STYLE_INIT(&tag, h);
         print_otag(h, TAG_DIV, i ? 1 : 0, &tag);          print_otag(h, TAG_DIV, i, &tag);
         return(1);          return(1);
 }  }
   
Line 649  man_HP_pre(MAN_ARGS)
Line 654  man_HP_pre(MAN_ARGS)
 static int  static int
 man_B_pre(MAN_ARGS)  man_B_pre(MAN_ARGS)
 {  {
         struct htmlpair  tag;  
   
         PAIR_CLASS_INIT(&tag, "bold");          print_ofont(h, HTMLFONT_BOLD);
         print_otag(h, TAG_SPAN, 1, &tag);  
         return(1);          return(1);
 }  }
   
Line 661  man_B_pre(MAN_ARGS)
Line 664  man_B_pre(MAN_ARGS)
 static int  static int
 man_I_pre(MAN_ARGS)  man_I_pre(MAN_ARGS)
 {  {
         struct htmlpair  tag;  
           print_ofont(h, HTMLFONT_ITALIC);
         PAIR_CLASS_INIT(&tag, "italic");  
         print_otag(h, TAG_SPAN, 1, &tag);  
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.23

CVSweb