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

Diff for /mandoc/html.c between version 1.93 and 1.94

version 1.93, 2010/01/29 14:39:37 version 1.94, 2010/01/30 06:55:56
Line 96  static void    print_doctype(struct html *);
Line 96  static void    print_doctype(struct html *);
 static  void              print_xmltype(struct html *);  static  void              print_xmltype(struct html *);
 static  int               print_encode(struct html *, const char *, int);  static  int               print_encode(struct html *, const char *, int);
 static  void              print_metaf(struct html *, enum roffdeco);  static  void              print_metaf(struct html *, enum roffdeco);
   static  void              print_attr(struct html *,
                                   const char *, const char *);
 static  void             *ml_alloc(char *, enum htmltype);  static  void             *ml_alloc(char *, enum htmltype);
   
   
Line 310  print_encode(struct html *h, const char *p, int norecu
Line 312  print_encode(struct html *h, const char *p, int norecu
                 } else if ('>' == *p) {                  } else if ('>' == *p) {
                         printf(">");                          printf(">");
                         continue;                          continue;
                   /* FIXME: already escaped? */
                 } else if ('&' == *p) {                  } else if ('&' == *p) {
                         printf("&");                          printf("&");
                         continue;                          continue;
Line 351  print_encode(struct html *h, const char *p, int norecu
Line 354  print_encode(struct html *h, const char *p, int norecu
 }  }
   
   
   static void
   print_attr(struct html *h, const char *key, const char *val)
   {
           printf(" %s=\"", key);
           (void)print_encode(h, val, 1);
           putchar('\"');
   }
   
   
 struct tag *  struct tag *
 print_otag(struct html *h, enum htmltag tag,  print_otag(struct html *h, enum htmltag tag,
                 int sz, const struct htmlpair *p)                  int sz, const struct htmlpair *p)
Line 358  print_otag(struct html *h, enum htmltag tag, 
Line 370  print_otag(struct html *h, enum htmltag tag, 
         int              i;          int              i;
         struct tag      *t;          struct tag      *t;
   
           /* 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 = malloc(sizeof(struct tag));
                 if (NULL == t) {                  if (NULL == t) {
Line 374  print_otag(struct html *h, enum htmltag tag, 
Line 388  print_otag(struct html *h, enum htmltag tag, 
                 if ( ! (HTML_CLRLINE & htmltags[tag].flags))                  if ( ! (HTML_CLRLINE & htmltags[tag].flags))
                         putchar(' ');                          putchar(' ');
   
           /* Print out the tag name and attributes. */
   
         printf("<%s", htmltags[tag].name);          printf("<%s", htmltags[tag].name);
         for (i = 0; i < sz; i++) {          for (i = 0; i < sz; i++)
                 printf(" %s=\"", htmlattrs[p[i].key]);                  print_attr(h, htmlattrs[p[i].key], p[i].val);
                 assert(p->val);  
                 (void)print_encode(h, p[i].val, 1);          /* Add non-overridable attributes. */
                 putchar('\"');  
           if (TAG_HTML == tag && HTML_XHTML_1_0_STRICT == h->type) {
                   print_attr(h, "xmlns", "http://www.w3.org/1999/xhtml");
                   print_attr(h, "xml:lang", "en");
                   print_attr(h, "lang", "en");
         }          }
   
           /* Accomodate for XML "well-formed" singleton escaping. */
   
         if (HTML_AUTOCLOSE & htmltags[tag].flags)          if (HTML_AUTOCLOSE & htmltags[tag].flags)
                 switch (h->type) {                  switch (h->type) {

Legend:
Removed from v.1.93  
changed lines
  Added in v.1.94

CVSweb