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

Diff for /mandoc/html.c between version 1.231 and 1.238

version 1.231, 2018/05/29 02:10:10 version 1.238, 2018/06/25 16:54:59
Line 69  static const struct htmldata htmltags[TAG_MAX] = {
Line 69  static const struct htmldata htmltags[TAG_MAX] = {
         {"br",          HTML_NOSTACK | HTML_AUTOCLOSE | HTML_NLALL},          {"br",          HTML_NOSTACK | HTML_AUTOCLOSE | HTML_NLALL},
         {"a",           0},          {"a",           0},
         {"table",       HTML_NLALL | HTML_INDENT},          {"table",       HTML_NLALL | HTML_INDENT},
         {"colgroup",    HTML_NLALL | HTML_INDENT},  
         {"col",         HTML_NOSTACK | HTML_AUTOCLOSE | HTML_NLALL},  
         {"tr",          HTML_NLALL | HTML_INDENT},          {"tr",          HTML_NLALL | HTML_INDENT},
         {"td",          HTML_NLAROUND},          {"td",          HTML_NLAROUND},
         {"li",          HTML_NLAROUND | HTML_INDENT},          {"li",          HTML_NLAROUND | HTML_INDENT},
Line 106  static const struct htmldata htmltags[TAG_MAX] = {
Line 104  static const struct htmldata htmltags[TAG_MAX] = {
         {"mover",       0},          {"mover",       0},
 };  };
   
 static  const char      *const roffscales[SCALE_MAX] = {  
         "cm", /* SCALE_CM */  
         "in", /* SCALE_IN */  
         "pc", /* SCALE_PC */  
         "pt", /* SCALE_PT */  
         "em", /* SCALE_EM */  
         "em", /* SCALE_MM */  
         "ex", /* SCALE_EN */  
         "ex", /* SCALE_BU */  
         "em", /* SCALE_VS */  
         "ex", /* SCALE_FS */  
 };  
   
 /* Avoid duplicate HTML id= attributes. */  /* Avoid duplicate HTML id= attributes. */
 static  struct ohash     id_unique;  static  struct ohash     id_unique;
   
 static  void     a2width(const char *, struct roffsu *);  
 static  void     print_byte(struct html *, char);  static  void     print_byte(struct html *, char);
 static  void     print_endword(struct html *);  static  void     print_endword(struct html *);
 static  void     print_indent(struct html *);  static  void     print_indent(struct html *);
Line 326  html_make_id(const struct roff_node *n, int unique)
Line 310  html_make_id(const struct roff_node *n, int unique)
         return buf;          return buf;
 }  }
   
 int  
 html_strlen(const char *cp)  
 {  
         size_t           rsz;  
         int              skip, sz;  
   
         /*  
          * Account for escaped sequences within string length  
          * calculations.  This follows the logic in term_strlen() as we  
          * must calculate the width of produced strings.  
          * Assume that characters are always width of "1".  This is  
          * hacky, but it gets the job done for approximation of widths.  
          */  
   
         sz = 0;  
         skip = 0;  
         while (1) {  
                 rsz = strcspn(cp, "\\");  
                 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:  
                         return sz;  
                 case ESCAPE_UNICODE:  
                 case ESCAPE_NUMBERED:  
                 case ESCAPE_SPECIAL:  
                 case ESCAPE_OVERSTRIKE:  
                         if (skip)  
                                 skip = 0;  
                         else  
                                 sz++;  
                         break;  
                 case ESCAPE_SKIPCHAR:  
                         skip = 1;  
                         break;  
                 default:  
                         break;  
                 }  
         }  
         return sz;  
 }  
   
 static int  static int
 print_escape(struct html *h, char c)  print_escape(struct html *h, char c)
 {  {
Line 556  struct tag *
Line 489  struct tag *
 print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)  print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
 {  {
         va_list          ap;          va_list          ap;
         struct roffsu    mysu, *su;  
         char             numbuf[16];  
         struct tag      *t;          struct tag      *t;
         const char      *attr;          const char      *attr;
         char            *arg1, *arg2;          char            *arg1, *arg2;
         double           v;          int              tflags;
         int              i, have_style, tflags;  
   
         tflags = htmltags[tag].flags;          tflags = htmltags[tag].flags;
   
Line 602  print_otag(struct html *h, enum htmltag tag, const cha
Line 532  print_otag(struct html *h, enum htmltag tag, const cha
   
         va_start(ap, fmt);          va_start(ap, fmt);
   
         have_style = 0;  
         while (*fmt != '\0') {          while (*fmt != '\0') {
                 if (*fmt == 's') {  
                         have_style = 1;  
                         fmt++;  
                         break;  
                 }  
   
                 /* Parse a non-style attribute and its arguments. */                  /* Parse attributes and arguments. */
   
                 arg1 = va_arg(ap, char *);                  arg1 = va_arg(ap, char *);
                   arg2 = NULL;
                 switch (*fmt++) {                  switch (*fmt++) {
                 case 'c':                  case 'c':
                         attr = "class";                          attr = "class";
Line 623  print_otag(struct html *h, enum htmltag tag, const cha
Line 548  print_otag(struct html *h, enum htmltag tag, const cha
                 case 'i':                  case 'i':
                         attr = "id";                          attr = "id";
                         break;                          break;
                   case 's':
                           attr = "style";
                           arg2 = va_arg(ap, char *);
                           break;
                 case '?':                  case '?':
                         attr = arg1;                          attr = arg1;
                         arg1 = va_arg(ap, char *);                          arg1 = va_arg(ap, char *);
Line 630  print_otag(struct html *h, enum htmltag tag, const cha
Line 559  print_otag(struct html *h, enum htmltag tag, const cha
                 default:                  default:
                         abort();                          abort();
                 }                  }
                 arg2 = NULL;  
                 if (*fmt == 'M')                  if (*fmt == 'M')
                         arg2 = va_arg(ap, char *);                          arg2 = va_arg(ap, char *);
                 if (arg1 == NULL)                  if (arg1 == NULL)
                         continue;                          continue;
   
                 /* Print the non-style attributes. */                  /* Print the attributes. */
   
                 print_byte(h, ' ');                  print_byte(h, ' ');
                 print_word(h, attr);                  print_word(h, attr);
Line 663  print_otag(struct html *h, enum htmltag tag, const cha
Line 591  print_otag(struct html *h, enum htmltag tag, const cha
                         fmt++;                          fmt++;
                         break;                          break;
                 default:                  default:
                         print_encode(h, arg1, NULL, 1);                          if (arg2 == NULL)
                         break;                                  print_encode(h, arg1, NULL, 1);
                 }                          else {
                 print_byte(h, '"');                                  print_word(h, arg1);
         }                                  print_byte(h, ':');
                                   print_byte(h, ' ');
         /* Print out styles. */                                  print_word(h, arg2);
                                   print_byte(h, ';');
         while (*fmt != '\0') {  
                 arg1 = NULL;  
                 su = NULL;  
   
                 /* First letter: input argument type. */  
   
                 switch (*fmt++) {  
                 case 'h':  
                         i = va_arg(ap, int);  
                         su = &mysu;  
                         SCALE_HS_INIT(su, i);  
                         break;  
                 case 's':  
                         arg1 = va_arg(ap, char *);  
                         break;  
                 case 'u':  
                         su = va_arg(ap, struct roffsu *);  
                         break;  
                 case 'w':  
                         if ((arg2 = va_arg(ap, char *)) != NULL) {  
                                 su = &mysu;  
                                 a2width(arg2, su);  
                         }                          }
                         if (*fmt == '+') {  
                                 if (su != NULL) {  
                                         /* Make even bold text fit. */  
                                         su->scale *= 1.2;  
                                         /* Add padding. */  
                                         su->scale += 3.0;  
                                 }  
                                 fmt++;  
                         }  
                         break;                          break;
                 default:  
                         abort();  
                 }                  }
   
                 /* Second letter: style name. */  
   
                 switch (*fmt++) {  
                 case 'h':  
                         attr = "height";  
                         break;  
                 case 'i':  
                         attr = "text-indent";  
                         break;  
                 case 'l':  
                         attr = "margin-left";  
                         break;  
                 case 'w':  
                         attr = "width";  
                         break;  
                 case 'W':  
                         attr = "min-width";  
                         break;  
                 case '?':  
                         attr = arg1;  
                         arg1 = va_arg(ap, char *);  
                         break;  
                 default:  
                         abort();  
                 }  
                 if (su == NULL && arg1 == NULL)  
                         continue;  
   
                 if (have_style == 1)  
                         print_word(h, " style=\"");  
                 else  
                         print_byte(h, ' ');  
                 print_word(h, attr);  
                 print_byte(h, ':');  
                 print_byte(h, ' ');  
                 if (su != NULL) {  
                         v = su->scale;  
                         if (su->unit == SCALE_MM && (v /= 100.0) == 0.0)  
                                 v = 1.0;  
                         else if (su->unit == SCALE_BU)  
                                 v /= 24.0;  
                         (void)snprintf(numbuf, sizeof(numbuf), "%.2f", v);  
                         print_word(h, numbuf);  
                         print_word(h, roffscales[su->unit]);  
                 } else  
                         print_word(h, arg1);  
                 print_byte(h, ';');  
                 have_style = 2;  
         }  
         if (have_style == 2)  
                 print_byte(h, '"');                  print_byte(h, '"');
           }
         va_end(ap);          va_end(ap);
   
         /* Accommodate for "well-formed" singleton escaping. */          /* Accommodate for "well-formed" singleton escaping. */
Line 1039  print_word(struct html *h, const char *cp)
Line 883  print_word(struct html *h, const char *cp)
 {  {
         while (*cp != '\0')          while (*cp != '\0')
                 print_byte(h, *cp++);                  print_byte(h, *cp++);
 }  
   
 /*  
  * Calculate the scaling unit passed in a `-width' argument.  This uses  
  * either a native scaling unit (e.g., 1i, 2m) or the string length of  
  * the value.  
  */  
 static void  
 a2width(const char *p, struct roffsu *su)  
 {  
         const char      *end;  
   
         end = a2roffsu(p, su, SCALE_MAX);  
         if (end == NULL || *end != '\0') {  
                 su->unit = SCALE_EN;  
                 su->scale = html_strlen(p);  
         } else if (su->scale < 0.0)  
                 su->scale = 0.0;  
 }  }

Legend:
Removed from v.1.231  
changed lines
  Added in v.1.238

CVSweb