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

Diff for /mandoc/html.c between version 1.6 and 1.7

version 1.6, 2008/12/04 23:10:51 version 1.7, 2008/12/05 11:28:16
Line 32 
Line 32 
 #include "ml.h"  #include "ml.h"
   
   
   struct  htmlnode {
           int              type;
           int             *argc[ROFF_MAXLINEARG];
           char            *argv[ROFF_MAXLINEARG];
           struct htmlnode *parent;
   };
   
   
   struct  htmlq {
           struct htmlnode *last;
   };
   
   
 static  int             html_loadcss(struct md_mbuf *, const char *);  static  int             html_loadcss(struct md_mbuf *, const char *);
   
 static  ssize_t         html_endtag(struct md_mbuf *,  static  ssize_t         html_endtag(struct md_mbuf *,
Line 46  static int  html_begin(struct md_mbuf *,
Line 59  static int  html_begin(struct md_mbuf *,
                                 const struct tm *,                                  const struct tm *,
                                 const char *, const char *,                                  const char *, const char *,
                                 const char *, const char *);                                  const char *, const char *);
   static  int             html_printargs(struct md_mbuf *, int,
                                   const char *, const int *,
                                   const char **, size_t *);
 static  int             html_end(struct md_mbuf *,  static  int             html_end(struct md_mbuf *,
                                 const struct md_args *);                                  const struct md_args *);
 static  ssize_t         html_blocktagname(struct md_mbuf *,  static  int             html_blocktagname(struct md_mbuf *,
                                 const struct md_args *, int);                                  const struct md_args *, int, size_t *);
 static  ssize_t         html_blocktagargs(struct md_mbuf *,  static  int             html_blocktagargs(struct md_mbuf *,
                                 const struct md_args *, int,                                  const struct md_args *, int,
                                 const int *, const char **);                                  const int *, const char **, size_t *);
 static  ssize_t         html_blockheadtagname(struct md_mbuf *,  static  int             html_blockheadtagname(struct md_mbuf *,
                                 const struct md_args *, int);                                  const struct md_args *, int, size_t *);
 static  ssize_t         html_blockheadtagargs(struct md_mbuf *,  static  int             html_blockheadtagargs(struct md_mbuf *,
                                 const struct md_args *, int,                                  const struct md_args *, int,
                                 const int *, const char **);                                  const int *, const char **, size_t *);
 static  ssize_t         html_blockbodytagname(struct md_mbuf *,  static  int             html_blockbodytagname(struct md_mbuf *,
                                 const struct md_args *, int);                                  const struct md_args *, int, size_t *);
 static  ssize_t         html_blockbodytagargs(struct md_mbuf *,  static  int             html_blockbodytagargs(struct md_mbuf *,
                                 const struct md_args *, int,                                  const struct md_args *, int,
                                 const int *, const char **);                                  const int *, const char **, size_t *);
 static  ssize_t         html_inlinetagname(struct md_mbuf *,  static  int             html_inlinetagname(struct md_mbuf *,
                                 const struct md_args *, int);                                  const struct md_args *, int, size_t *);
 static  ssize_t         html_inlinetagargs(struct md_mbuf *,  static  int             html_inlinetagargs(struct md_mbuf *,
                                 const struct md_args *, int,                                  const struct md_args *, int,
                                 const int *, const char **);                                  const int *, const char **, size_t *);
   
   
 static int  static int
Line 198  html_end(struct md_mbuf *mbuf, const struct md_args *a
Line 214  html_end(struct md_mbuf *mbuf, const struct md_args *a
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static int
 html_blockbodytagname(struct md_mbuf *mbuf,  html_blockbodytagname(struct md_mbuf *mbuf,
                 const struct md_args *args, int tok)                  const struct md_args *args, int tok, size_t *res)
 {  {
         size_t           res;  
   
         res = 0;          return(ml_puts(mbuf, "div", res));
         if ( ! ml_puts(mbuf, "div", &res))  
                 return(-1);  
   
         return((ssize_t)res);  
 }  }
   
   
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static int
 html_blockheadtagname(struct md_mbuf *mbuf,  html_blockheadtagname(struct md_mbuf *mbuf,
                 const struct md_args *args, int tok)                  const struct md_args *args, int tok, size_t *res)
 {  {
         size_t           res;  
   
         res = 0;          return(ml_puts(mbuf, "div", res));
         if ( ! ml_puts(mbuf, "div", &res))  
                 return(-1);  
   
         return((ssize_t)res);  
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static int
 html_blocktagname(struct md_mbuf *mbuf,  html_blocktagname(struct md_mbuf *mbuf,
                 const struct md_args *args, int tok)                  const struct md_args *args, int tok, size_t *res)
 {  {
         size_t           res;  
   
         res = 0;          return(ml_puts(mbuf, "div", res));
         if ( ! ml_puts(mbuf, "div", &res))  
                 return(-1);  
   
         return((ssize_t)res);  
 }  }
   
   
 /* ARGSUSED */  static int
 static ssize_t  html_printargs(struct md_mbuf *mbuf, int tok, const char *ns,
 html_blockheadtagargs(struct md_mbuf *mbuf, const struct md_args *args,                  const int *argc, const char **argv, size_t *res)
                 int tok, const int *argc, const char **argv)  
 {  {
         size_t           res;          int              i, c;
   
         res = 0;          if ( ! ml_puts(mbuf, " class=\"", res))
   
         if ( ! ml_puts(mbuf, " class=\"head-", &res))  
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, toknames[tok], &res))          if ( ! ml_puts(mbuf, ns, res))
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, "\"", &res))          if ( ! ml_puts(mbuf, "-", res))
                 return(0);                  return(0);
           if ( ! ml_puts(mbuf, toknames[tok], res))
                   return(0);
           if ( ! ml_puts(mbuf, "\"", res))
                   return(0);
   
         switch (tok) {          if (NULL == argv || NULL == argc)
         default:                  return(1);
                 break;          assert(argv && argc);
   
           /* FIXME: ignores values. */
   
           for (i = 0; ROFF_ARGMAX != (c = argc[i]); i++) {
                   if (argv[i])
                           continue;
                   if ( ! ml_puts(mbuf, " class=\"", res))
                           return(0);
                   if ( ! ml_puts(mbuf, ns, res))
                           return(0);
                   if ( ! ml_puts(mbuf, "-", res))
                           return(0);
                   if ( ! ml_puts(mbuf, toknames[tok], res))
                           return(0);
                   if ( ! ml_puts(mbuf, "-", res))
                           return(0);
                   if ( ! ml_puts(mbuf, tokargnames[c], res))
                           return(0);
                   if ( ! ml_puts(mbuf, "\"", res))
                           return(0);
         }          }
   
         return(0);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static int
 html_blockbodytagargs(struct md_mbuf *mbuf, const struct md_args *args,  html_blockheadtagargs(struct md_mbuf *mbuf,
                 int tok, const int *argc, const char **argv)                  const struct md_args *args, int tok,
                   const int *argc, const char **argv, size_t *res)
 {  {
         size_t           res;  
   
         res = 0;          return(html_printargs(mbuf, tok, "head", argc, argv, res));
   }
   
         if ( ! ml_puts(mbuf, " class=\"body-", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, toknames[tok], &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, "\"", &res))  
                 return(0);  
   
         switch (tok) {  /* ARGSUSED */
         default:  static int
                 break;  html_blockbodytagargs(struct md_mbuf *mbuf,
         }                  const struct md_args *args, int tok,
                   const int *argc, const char **argv, size_t *res)
   {
   
         return(res);          return(html_printargs(mbuf, tok, "body", argc, argv, res));
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static int
 html_blocktagargs(struct md_mbuf *mbuf, const struct md_args *args,  html_blocktagargs(struct md_mbuf *mbuf,
                 int tok, const int *argc, const char **argv)                  const struct md_args *args, int tok,
                   const int *argc, const char **argv, size_t *res)
 {  {
         size_t           res;  
   
         res = 0;          return(html_printargs(mbuf, tok, "block", argc, argv, res));
   
         if ( ! ml_puts(mbuf, " class=\"block-", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, toknames[tok], &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, "\"", &res))  
                 return(0);  
   
         switch (tok) {  
         default:  
                 break;  
         }  
   
         return(0);  
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static int
 html_inlinetagargs(struct md_mbuf *mbuf, const struct md_args *args,  html_inlinetagargs(struct md_mbuf *mbuf,
                 int tok, const int *argc, const char **argv)                  const struct md_args *args, int tok,
                   const int *argc, const char **argv, size_t *res)
 {  {
         size_t           res;  
   
         res = 0;          return(html_printargs(mbuf, tok, "inline", argc, argv, res));
   
         if ( ! ml_puts(mbuf, " class=\"inline-", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, toknames[tok], &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, "\"", &res))  
                 return(0);  
   
   
         switch (tok) {  
         default:  
                 break;  
         }  
   
         return(0);  
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static int
 html_inlinetagname(struct md_mbuf *mbuf,  html_inlinetagname(struct md_mbuf *mbuf,
                 const struct md_args *args, int tok)                  const struct md_args *args, int tok, size_t *res)
 {  {
         size_t           res;  
   
         res = 0;  
   
         switch (tok) {          switch (tok) {
         case (ROFF_Pp):          case (ROFF_Pp):
                 if ( ! ml_puts(mbuf, "div", &res))                  return(ml_puts(mbuf, "div", res));
                         return(-1);  
                 break;  
         default:          default:
                 if ( ! ml_puts(mbuf, "span", &res))                  return(ml_puts(mbuf, "span", res));
                         return(-1);  
                 break;  
         }          }
           return(1);
         return((ssize_t)res);  
 }  }
   
   
Line 374  html_begintag(struct md_mbuf *mbuf, const struct md_ar
Line 356  html_begintag(struct md_mbuf *mbuf, const struct md_ar
                 enum md_ns ns, int tok,                  enum md_ns ns, int tok,
                 const int *argc, const char **argv)                  const int *argc, const char **argv)
 {  {
           size_t           res;
   
         assert(ns != MD_NS_DEFAULT);          assert(ns != MD_NS_DEFAULT);
           res = 0;
   
         switch (ns) {          switch (ns) {
         case (MD_NS_BLOCK):          case (MD_NS_BLOCK):
                 if ( ! html_blocktagname(mbuf, args, tok))                  if ( ! html_blocktagname(mbuf, args, tok, &res))
                         return(0);                          return(-1);
                 if (NULL == argc || NULL == argv)                  if ( ! html_blocktagargs(mbuf, args, tok,
                         return(1);                                          argc, argv, &res))
                 assert(argc && argv);                          return(-1);
                 return(html_blocktagargs(mbuf, args,                  break;
                                         tok, argc, argv));  
         case (MD_NS_BODY):          case (MD_NS_BODY):
                 if ( ! html_blockbodytagname(mbuf, args, tok))                  if ( ! html_blockbodytagname(mbuf, args, tok, &res))
                         return(0);                          return(-1);
                 if (NULL == argc || NULL == argv)                  if ( ! html_blockbodytagargs(mbuf, args, tok,
                         return(1);                                          argc, argv, &res))
                 assert(argc && argv);                          return(-1);
                 return(html_blockbodytagargs(mbuf, args,                  break;
                                         tok, argc, argv));  
         case (MD_NS_HEAD):          case (MD_NS_HEAD):
                 if ( ! html_blockheadtagname(mbuf, args, tok))                  if ( ! html_blockheadtagname(mbuf, args, tok, &res))
                         return(0);                          return(-1);
                 if (NULL == argc || NULL == argv)                  if ( ! html_blockheadtagargs(mbuf, args, tok,
                         return(1);                                          argc, argv, &res))
                 assert(argc && argv);                          return(-1);
                 return(html_blockheadtagargs(mbuf, args,                  break;
                                         tok, argc, argv));  
         default:          default:
                   if ( ! html_inlinetagname(mbuf, args, tok, &res))
                           return(-1);
                   if ( ! html_inlinetagargs(mbuf, args, tok,
                                           argc, argv, &res))
                           return(-1);
                 break;                  break;
         }          }
   
         if ( ! html_inlinetagname(mbuf, args, tok))          return((ssize_t)res);
                 return(0);  
         if (NULL == argc || NULL == argv)  
                 return(1);  
         assert(argc && argv);  
         return(html_inlinetagargs(mbuf, args, tok, argc, argv));  
 }  }
   
   
Line 418  static ssize_t 
Line 400  static ssize_t 
 html_endtag(struct md_mbuf *mbuf, const struct md_args *args,  html_endtag(struct md_mbuf *mbuf, const struct md_args *args,
                 enum md_ns ns, int tok)                  enum md_ns ns, int tok)
 {  {
           size_t           res;
   
         assert(ns != MD_NS_DEFAULT);          assert(ns != MD_NS_DEFAULT);
           res = 0;
   
         switch (ns) {          switch (ns) {
         case (MD_NS_BLOCK):          case (MD_NS_BLOCK):
                 return(html_blocktagname(mbuf, args, tok));                  if ( ! html_blocktagname(mbuf, args, tok, &res))
                           return(-1);
                   break;
         case (MD_NS_BODY):          case (MD_NS_BODY):
                 return(html_blockbodytagname(mbuf, args, tok));                  if ( ! html_blockbodytagname(mbuf, args, tok, &res))
                           return(-1);
                   break;
         case (MD_NS_HEAD):          case (MD_NS_HEAD):
                 return(html_blockheadtagname(mbuf, args, tok));                  if ( ! html_blockheadtagname(mbuf, args, tok, &res))
                           return(-1);
                   break;
         default:          default:
                   if ( ! html_inlinetagname(mbuf, args, tok, &res))
                           return(-1);
                 break;                  break;
         }          }
   
         return(html_inlinetagname(mbuf, args, tok));          return((ssize_t)res);
 }  }
   
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb