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

Diff for /mandoc/html.c between version 1.148 and 1.153

version 1.148, 2011/07/04 09:42:38 version 1.153, 2014/01/05 19:10:56
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 118  static void *
Line 118  static void *
 ml_alloc(char *outopts, enum htmltype type)  ml_alloc(char *outopts, enum htmltype type)
 {  {
         struct html     *h;          struct html     *h;
         const char      *toks[4];          const char      *toks[5];
         char            *v;          char            *v;
   
         toks[0] = "style";          toks[0] = "style";
         toks[1] = "man";          toks[1] = "man";
         toks[2] = "includes";          toks[2] = "includes";
         toks[3] = NULL;          toks[3] = "fragment";
           toks[4] = NULL;
   
         h = mandoc_calloc(1, sizeof(struct html));          h = mandoc_calloc(1, sizeof(struct html));
   
Line 143  ml_alloc(char *outopts, enum htmltype type)
Line 144  ml_alloc(char *outopts, enum htmltype type)
                 case (2):                  case (2):
                         h->base_includes = v;                          h->base_includes = v;
                         break;                          break;
                   case (3):
                           h->oflags |= HTML_FRAGMENT;
                           break;
                 default:                  default:
                         break;                          break;
                 }                  }
Line 231  print_metaf(struct html *h, enum mandoc_esc deco)
Line 235  print_metaf(struct html *h, enum mandoc_esc deco)
         case (ESCAPE_FONTBOLD):          case (ESCAPE_FONTBOLD):
                 font = HTMLFONT_BOLD;                  font = HTMLFONT_BOLD;
                 break;                  break;
           case (ESCAPE_FONTBI):
                   font = HTMLFONT_BI;
                   break;
         case (ESCAPE_FONT):          case (ESCAPE_FONT):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (ESCAPE_FONTROMAN):          case (ESCAPE_FONTROMAN):
Line 249  print_metaf(struct html *h, enum mandoc_esc deco)
Line 256  print_metaf(struct html *h, enum mandoc_esc deco)
         h->metal = h->metac;          h->metal = h->metac;
         h->metac = font;          h->metac = font;
   
         if (HTMLFONT_NONE != font)          switch (font) {
                 h->metaf = HTMLFONT_BOLD == font ?          case (HTMLFONT_ITALIC):
                         print_otag(h, TAG_B, 0, NULL) :                  h->metaf = print_otag(h, TAG_I, 0, NULL);
                         print_otag(h, TAG_I, 0, NULL);                  break;
           case (HTMLFONT_BOLD):
                   h->metaf = print_otag(h, TAG_B, 0, NULL);
                   break;
           case (HTMLFONT_BI):
                   h->metaf = print_otag(h, TAG_B, 0, NULL);
                   print_otag(h, TAG_I, 0, NULL);
                   break;
           default:
                   break;
           }
 }  }
   
 int  int
 html_strlen(const char *cp)  html_strlen(const char *cp)
 {  {
         int              ssz, sz;          size_t           rsz;
         const char      *seq, *p;          int              skip, sz;
   
         /*          /*
          * Account for escaped sequences within string length           * Account for escaped sequences within string length
Line 270  html_strlen(const char *cp)
Line 287  html_strlen(const char *cp)
          */           */
   
         sz = 0;          sz = 0;
         while (NULL != (p = strchr(cp, '\\'))) {          skip = 0;
                 sz += (int)(p - cp);          while (1) {
                 ++cp;                  rsz = strcspn(cp, "\\");
                 switch (mandoc_escape(&cp, &seq, &ssz)) {                  if (rsz) {
                           cp += rsz;
                           if (skip) {
                                   skip = 0;
                                   rsz--;
                           }
                           sz += rsz;
                   }
                   if ('\0' == *cp)
                           break;
                   cp++;
                   switch (mandoc_escape(&cp, NULL, NULL)) {
                 case (ESCAPE_ERROR):                  case (ESCAPE_ERROR):
                         return(sz);                          return(sz);
                 case (ESCAPE_UNICODE):                  case (ESCAPE_UNICODE):
Line 281  html_strlen(const char *cp)
Line 309  html_strlen(const char *cp)
                 case (ESCAPE_NUMBERED):                  case (ESCAPE_NUMBERED):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ESCAPE_SPECIAL):                  case (ESCAPE_SPECIAL):
                         sz++;                          if (skip)
                                   skip = 0;
                           else
                                   sz++;
                         break;                          break;
                   case (ESCAPE_SKIPCHAR):
                           skip = 1;
                           break;
                 default:                  default:
                         break;                          break;
                 }                  }
         }          }
           return(sz);
         assert(sz >= 0);  
         return(sz + strlen(cp));  
 }  }
   
 static int  static int
Line 304  print_encode(struct html *h, const char *p, int norecu
Line 336  print_encode(struct html *h, const char *p, int norecu
         nospace = 0;          nospace = 0;
   
         while ('\0' != *p) {          while ('\0' != *p) {
                   if (HTML_SKIPCHAR & h->flags && '\\' != *p) {
                           h->flags &= ~HTML_SKIPCHAR;
                           p++;
                           continue;
                   }
   
                 sz = strcspn(p, rejs);                  sz = strcspn(p, rejs);
   
                 fwrite(p, 1, sz, stdout);                  fwrite(p, 1, sz, stdout);
Line 334  print_encode(struct html *h, const char *p, int norecu
Line 372  print_encode(struct html *h, const char *p, int norecu
                         break;                          break;
   
                 switch (esc) {                  switch (esc) {
                   case (ESCAPE_FONT):
                           /* FALLTHROUGH */
                   case (ESCAPE_FONTPREV):
                           /* FALLTHROUGH */
                   case (ESCAPE_FONTBOLD):
                           /* FALLTHROUGH */
                   case (ESCAPE_FONTITALIC):
                           /* FALLTHROUGH */
                   case (ESCAPE_FONTBI):
                           /* FALLTHROUGH */
                   case (ESCAPE_FONTROMAN):
                           if (0 == norecurse)
                                   print_metaf(h, esc);
                           continue;
                   case (ESCAPE_SKIPCHAR):
                           h->flags |= HTML_SKIPCHAR;
                           continue;
                   default:
                           break;
                   }
   
                   if (h->flags & HTML_SKIPCHAR) {
                           h->flags &= ~HTML_SKIPCHAR;
                           continue;
                   }
   
                   switch (esc) {
                 case (ESCAPE_UNICODE):                  case (ESCAPE_UNICODE):
                         /* Skip passed "u" header. */                          /* Skip passed "u" header. */
                         c = mchars_num2uc(seq + 1, len - 1);                          c = mchars_num2uc(seq + 1, len - 1);
Line 352  print_encode(struct html *h, const char *p, int norecu
Line 417  print_encode(struct html *h, const char *p, int norecu
                         else if (-1 == c && 1 == len)                          else if (-1 == c && 1 == len)
                                 putchar((int)*seq);                                  putchar((int)*seq);
                         break;                          break;
                 case (ESCAPE_FONT):  
                         /* FALLTHROUGH */  
                 case (ESCAPE_FONTPREV):  
                         /* FALLTHROUGH */  
                 case (ESCAPE_FONTBOLD):  
                         /* FALLTHROUGH */  
                 case (ESCAPE_FONTITALIC):  
                         /* FALLTHROUGH */  
                 case (ESCAPE_FONTROMAN):  
                         if (norecurse)  
                                 break;  
                         print_metaf(h, esc);  
                         break;  
                 case (ESCAPE_NOSPACE):                  case (ESCAPE_NOSPACE):
                         if ('\0' == *p)                          if ('\0' == *p)
                                 nospace = 1;                                  nospace = 1;
Line 507  print_text(struct html *h, const char *word)
Line 559  print_text(struct html *h, const char *word)
         }          }
   
         assert(NULL == h->metaf);          assert(NULL == h->metaf);
         if (HTMLFONT_NONE != h->metac)          switch (h->metac) {
                 h->metaf = HTMLFONT_BOLD == h->metac ?          case (HTMLFONT_ITALIC):
                         print_otag(h, TAG_B, 0, NULL) :                  h->metaf = print_otag(h, TAG_I, 0, NULL);
                         print_otag(h, TAG_I, 0, NULL);                  break;
           case (HTMLFONT_BOLD):
                   h->metaf = print_otag(h, TAG_B, 0, NULL);
                   break;
           case (HTMLFONT_BI):
                   h->metaf = print_otag(h, TAG_B, 0, NULL);
                   print_otag(h, TAG_I, 0, NULL);
                   break;
           default:
                   break;
           }
   
         assert(word);          assert(word);
         if ( ! print_encode(h, word, 0))          if ( ! print_encode(h, word, 0)) {
                 if ( ! (h->flags & HTML_NONOSPACE))                  if ( ! (h->flags & HTML_NONOSPACE))
                         h->flags &= ~HTML_NOSPACE;                          h->flags &= ~HTML_NOSPACE;
           } else
                   h->flags |= HTML_NOSPACE;
   
         if (h->metaf) {          if (h->metaf) {
                 print_tagq(h, h->metaf);                  print_tagq(h, h->metaf);
Line 658  buffmt_man(struct html *h, 
Line 722  buffmt_man(struct html *h, 
                         bufcat(h, sec ? sec : "1");                          bufcat(h, sec ? sec : "1");
                         break;                          break;
                 case('N'):                  case('N'):
                         bufcat_fmt(h, name);                          bufcat_fmt(h, "%s", name);
                         break;                          break;
                 default:                  default:
                         bufncat(h, p, 2);                          bufncat(h, p, 2);

Legend:
Removed from v.1.148  
changed lines
  Added in v.1.153

CVSweb