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

Diff for /mandoc/man_term.c between version 1.29 and 1.30

version 1.29, 2009/08/22 09:10:38 version 1.30, 2009/09/15 08:16:20
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 130  extern size_t    strlcpy(char *, const char *, size_t)
Line 129  extern size_t    strlcpy(char *, const char *, size_t)
 extern  size_t            strlcat(char *, const char *, size_t);  extern  size_t            strlcat(char *, const char *, size_t);
 #endif  #endif
   
 static  void              print_head(struct termp *,  static  int               print_head(struct termp *,
                                 const struct man_meta *);                                  const struct man_meta *);
 static  void              print_body(DECL_ARGS);  static  void              print_body(DECL_ARGS);
 static  void              print_node(DECL_ARGS);  static  void              print_node(DECL_ARGS);
 static  void              print_foot(struct termp *,  static  int               print_foot(struct termp *,
                                 const struct man_meta *);                                  const struct man_meta *);
 static  void              fmt_block_vspace(struct termp *,  static  void              fmt_block_vspace(struct termp *,
                                 const struct man_node *);                                  const struct man_node *);
Line 146  man_run(struct termp *p, const struct man *m)
Line 145  man_run(struct termp *p, const struct man *m)
 {  {
         struct mtermp    mt;          struct mtermp    mt;
   
         print_head(p, man_meta(m));          if ( ! print_head(p, man_meta(m)))
                   return(0);
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         assert(man_node(m));          assert(man_node(m));
         assert(MAN_ROOT == man_node(m)->type);          assert(MAN_ROOT == man_node(m)->type);
Line 157  man_run(struct termp *p, const struct man *m)
Line 157  man_run(struct termp *p, const struct man *m)
   
         if (man_node(m)->child)          if (man_node(m)->child)
                 print_body(p, &mt, man_node(m)->child, man_meta(m));                  print_body(p, &mt, man_node(m)->child, man_meta(m));
         print_foot(p, man_meta(m));          if ( ! print_foot(p, man_meta(m)))
                   return(0);
   
         return(1);          return(1);
 }  }
Line 222  static int
Line 223  static int
 pre_I(DECL_ARGS)  pre_I(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_UNDER;          p->under++;
         return(1);          return(1);
 }  }
   
Line 232  static int
Line 233  static int
 pre_r(DECL_ARGS)  pre_r(DECL_ARGS)
 {  {
   
         p->flags &= ~TERMP_UNDER;          p->bold = p->under = 0;
         p->flags &= ~TERMP_BOLD;  
         return(1);          return(1);
 }  }
   
Line 244  post_i(DECL_ARGS)
Line 244  post_i(DECL_ARGS)
 {  {
   
         if (n->nchild)          if (n->nchild)
                 p->flags &= ~TERMP_UNDER;                  p->under--;
 }  }
   
   
Line 253  static void
Line 253  static void
 post_I(DECL_ARGS)  post_I(DECL_ARGS)
 {  {
   
         p->flags &= ~TERMP_UNDER;          p->under--;
 }  }
   
   
Line 287  pre_IR(DECL_ARGS)
Line 287  pre_IR(DECL_ARGS)
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags |= TERMP_UNDER;                          p->under++;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_node(p, mt, nn, m);
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags &= ~TERMP_UNDER;                          p->under--;
         }          }
         return(0);          return(0);
 }  }
Line 306  pre_IB(DECL_ARGS)
Line 306  pre_IB(DECL_ARGS)
         int              i;          int              i;
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 p->flags |= i % 2 ? TERMP_BOLD : TERMP_UNDER;                  if (i % 2)
                           p->bold++;
                   else
                           p->under++;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_node(p, mt, nn, m);
                 p->flags &= i % 2 ? ~TERMP_BOLD : ~TERMP_UNDER;                  if (i % 2)
                           p->bold--;
                   else
                           p->under--;
         }          }
         return(0);          return(0);
 }  }
Line 325  pre_RB(DECL_ARGS)
Line 331  pre_RB(DECL_ARGS)
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if (i % 2)                  if (i % 2)
                         p->flags |= TERMP_BOLD;                          p->bold++;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_node(p, mt, nn, m);
                 if (i % 2)                  if (i % 2)
                         p->flags &= ~TERMP_BOLD;                          p->bold--;
         }          }
         return(0);          return(0);
 }  }
Line 345  pre_RI(DECL_ARGS)
Line 351  pre_RI(DECL_ARGS)
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags |= TERMP_UNDER;                          p->under++;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_node(p, mt, nn, m);
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags &= ~TERMP_UNDER;                          p->under--;
         }          }
         return(0);          return(0);
 }  }
Line 365  pre_BR(DECL_ARGS)
Line 371  pre_BR(DECL_ARGS)
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags |= TERMP_BOLD;                          p->bold++;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_node(p, mt, nn, m);
                 if ( ! (i % 2))                  if ( ! (i % 2))
                         p->flags &= ~TERMP_BOLD;                          p->bold--;
         }          }
         return(0);          return(0);
 }  }
Line 384  pre_BI(DECL_ARGS)
Line 390  pre_BI(DECL_ARGS)
         int              i;          int              i;
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 p->flags |= i % 2 ? TERMP_UNDER : TERMP_BOLD;                  if (i % 2)
                           p->under++;
                   else
                           p->bold++;
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_node(p, mt, nn, m);                  print_node(p, mt, nn, m);
                 p->flags &= i % 2 ? ~TERMP_UNDER : ~TERMP_BOLD;                  if (i % 2)
                           p->under--;
                   else
                           p->bold--;
         }          }
         return(0);          return(0);
 }  }
Line 399  static int
Line 411  static int
 pre_B(DECL_ARGS)  pre_B(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_BOLD;          p->bold++;
         return(1);          return(1);
 }  }
   
Line 409  static void
Line 421  static void
 post_B(DECL_ARGS)  post_B(DECL_ARGS)
 {  {
   
         p->flags &= ~TERMP_BOLD;          p->bold--;
 }  }
   
   
Line 720  pre_SS(DECL_ARGS)
Line 732  pre_SS(DECL_ARGS)
                 term_vspace(p);                  term_vspace(p);
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 p->flags |= TERMP_BOLD;                  p->bold++;
                 p->offset = HALFINDENT;                  p->offset = HALFINDENT;
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
Line 742  post_SS(DECL_ARGS)
Line 754  post_SS(DECL_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MAN_HEAD):          case (MAN_HEAD):
                 term_newln(p);                  term_newln(p);
                 p->flags &= ~TERMP_BOLD;                  p->bold--;
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
                 term_newln(p);                  term_newln(p);
Line 769  pre_SH(DECL_ARGS)
Line 781  pre_SH(DECL_ARGS)
                 term_vspace(p);                  term_vspace(p);
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 p->flags |= TERMP_BOLD;                  p->bold++;
                 p->offset = 0;                  p->offset = 0;
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
Line 791  post_SH(DECL_ARGS)
Line 803  post_SH(DECL_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MAN_HEAD):          case (MAN_HEAD):
                 term_newln(p);                  term_newln(p);
                 p->flags &= ~TERMP_BOLD;                  p->bold--;
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
                 term_newln(p);                  term_newln(p);
Line 908  print_body(DECL_ARGS)
Line 920  print_body(DECL_ARGS)
 }  }
   
   
 static void  static int
 print_foot(struct termp *p, const struct man_meta *meta)  print_foot(struct termp *p, const struct man_meta *meta)
 {  {
         struct tm       *tm;          struct tm       *tm;
         char            *buf;          char            *buf;
   
         if (NULL == (buf = malloc(p->rmargin)))          if (NULL == (buf = malloc(p->rmargin)))
                 err(1, "malloc");                  return(0);
   
         tm = localtime(&meta->date);          tm = localtime(&meta->date);
   
         if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm))          if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm))
                 err(1, "strftime");                  buf[0] = 0;
   
         term_vspace(p);          term_vspace(p);
   
Line 943  print_foot(struct termp *p, const struct man_meta *met
Line 955  print_foot(struct termp *p, const struct man_meta *met
         term_flushln(p);          term_flushln(p);
   
         free(buf);          free(buf);
           return(1);
 }  }
   
   
 static void  static int
 print_head(struct termp *p, const struct man_meta *meta)  print_head(struct termp *p, const struct man_meta *meta)
 {  {
         char            *buf, *title;          char            *buf, *title;
Line 955  print_head(struct termp *p, const struct man_meta *met
Line 968  print_head(struct termp *p, const struct man_meta *met
         p->offset = 0;          p->offset = 0;
   
         if (NULL == (buf = malloc(p->rmargin)))          if (NULL == (buf = malloc(p->rmargin)))
                 err(1, "malloc");                  return(0);
         if (NULL == (title = malloc(p->rmargin)))          if (NULL == (title = malloc(p->rmargin)))
                 err(1, "malloc");                  return(0);
   
         if (meta->vol)          if (meta->vol)
                 (void)strlcpy(buf, meta->vol, p->rmargin);                  (void)strlcpy(buf, meta->vol, p->rmargin);
Line 995  print_head(struct termp *p, const struct man_meta *met
Line 1008  print_head(struct termp *p, const struct man_meta *met
   
         free(title);          free(title);
         free(buf);          free(buf);
           return(1);
 }  }
   

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30

CVSweb