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

Diff for /mandoc/html.c between version 1.125 and 1.128

version 1.125, 2011/01/13 14:30:13 version 1.128, 2011/03/17 08:49:34
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2011 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 93  static const char *const htmlattrs[ATTR_MAX] = {
Line 94  static const char *const htmlattrs[ATTR_MAX] = {
         "colspan", /* ATTR_COLSPAN */          "colspan", /* ATTR_COLSPAN */
 };  };
   
   static  void              print_num(struct html *, const char *, size_t);
 static  void              print_spec(struct html *, enum roffdeco,  static  void              print_spec(struct html *, enum roffdeco,
                                 const char *, size_t);                                  const char *, size_t);
 static  void              print_res(struct html *, const char *, size_t);  static  void              print_res(struct html *, const char *, size_t);
Line 118  ml_alloc(char *outopts, enum htmltype type)
Line 120  ml_alloc(char *outopts, enum htmltype type)
         toks[2] = "includes";          toks[2] = "includes";
         toks[3] = NULL;          toks[3] = NULL;
   
         h = calloc(1, sizeof(struct html));          h = mandoc_calloc(1, sizeof(struct html));
         if (NULL == h) {  
                 perror(NULL);  
                 exit((int)MANDOCLEVEL_SYSERR);  
         }  
   
         h->type = type;          h->type = type;
         h->tags.head = NULL;          h->tags.head = NULL;
Line 212  print_gen_head(struct html *h)
Line 210  print_gen_head(struct html *h)
         }          }
 }  }
   
   /* ARGSUSED */
   static void
   print_num(struct html *h, const char *p, size_t len)
   {
           const char      *rhs;
   
           rhs = chars_num2char(p, len);
           if (rhs)
                   putchar((int)*rhs);
   }
   
 static void  static void
 print_spec(struct html *h, enum roffdeco d, const char *p, size_t len)  print_spec(struct html *h, enum roffdeco d, const char *p, size_t len)
 {  {
Line 333  print_encode(struct html *h, const char *p, int norecu
Line 341  print_encode(struct html *h, const char *p, int norecu
                 len = a2roffdeco(&deco, &seq, &sz);                  len = a2roffdeco(&deco, &seq, &sz);
   
                 switch (deco) {                  switch (deco) {
                   case (DECO_NUMBERED):
                           print_num(h, seq, sz);
                           break;
                 case (DECO_RESERVED):                  case (DECO_RESERVED):
                         print_res(h, seq, sz);                          print_res(h, seq, sz);
                         break;                          break;
Line 385  print_otag(struct html *h, enum htmltag tag, 
Line 396  print_otag(struct html *h, enum htmltag tag, 
         /* Push this tags onto the stack of open scopes. */          /* Push this tags onto the stack of open scopes. */
   
         if ( ! (HTML_NOSTACK & htmltags[tag].flags)) {          if ( ! (HTML_NOSTACK & htmltags[tag].flags)) {
                 t = malloc(sizeof(struct tag));                  t = mandoc_malloc(sizeof(struct tag));
                 if (NULL == t) {  
                         perror(NULL);  
                         exit((int)MANDOCLEVEL_SYSERR);  
                 }  
                 t->tag = tag;                  t->tag = tag;
                 t->next = h->tags.head;                  t->next = h->tags.head;
                 h->tags.head = t;                  h->tags.head = t;

Legend:
Removed from v.1.125  
changed lines
  Added in v.1.128

CVSweb