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

Diff for /mandoc/html.c between version 1.150 and 1.155

version 1.150, 2011/10/05 21:35:17 version 1.155, 2014/03/23 11:25:26
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, 2014 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 31 
Line 31 
 #include <unistd.h>  #include <unistd.h>
   
 #include "mandoc.h"  #include "mandoc.h"
   #include "mandoc_aux.h"
 #include "libmandoc.h"  #include "libmandoc.h"
 #include "out.h"  #include "out.h"
 #include "html.h"  #include "html.h"
Line 235  print_metaf(struct html *h, enum mandoc_esc deco)
Line 236  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 253  print_metaf(struct html *h, enum mandoc_esc deco)
Line 257  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 274  html_strlen(const char *cp)
Line 288  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 285  html_strlen(const char *cp)
Line 310  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 303  print_encode(struct html *h, const char *p, int norecu
Line 332  print_encode(struct html *h, const char *p, int norecu
         int              c, len, nospace;          int              c, len, nospace;
         const char      *seq;          const char      *seq;
         enum mandoc_esc  esc;          enum mandoc_esc  esc;
         static const char rejs[6] = { '\\', '<', '>', '&', ASCII_HYPH, '\0' };          static const char rejs[8] = { '\\', '<', '>', '&',
                   ASCII_NBRSP, ASCII_HYPH, ASCII_BREAK, '\0' };
   
         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 326  print_encode(struct html *h, const char *p, int norecu
Line 362  print_encode(struct html *h, const char *p, int norecu
                 case ('&'):                  case ('&'):
                         printf("&amp;");                          printf("&amp;");
                         continue;                          continue;
                   case (ASCII_NBRSP):
                           putchar('-');
                           continue;
                 case (ASCII_HYPH):                  case (ASCII_HYPH):
                         putchar('-');                          putchar('-');
                           /* FALLTHROUGH */
                   case (ASCII_BREAK):
                         continue;                          continue;
                 default:                  default:
                         break;                          break;
Line 338  print_encode(struct html *h, const char *p, int norecu
Line 379  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 356  print_encode(struct html *h, const char *p, int norecu
Line 424  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 511  print_text(struct html *h, const char *word)
Line 566  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)) {
Line 664  buffmt_man(struct html *h, 
Line 729  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.150  
changed lines
  Added in v.1.155

CVSweb