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

Diff for /mandoc/html.c between version 1.3 and 1.4

version 1.3, 2008/12/03 21:27:56 version 1.4, 2008/12/04 11:25:29
Line 16 
Line 16 
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  * PERFORMANCE OF THIS SOFTWARE.   * PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include <sys/param.h>
   #include <sys/stat.h>
   
 #include <assert.h>  #include <assert.h>
   #include <err.h>
   #include <fcntl.h>
 #include <stdlib.h>  #include <stdlib.h>
   #include <stdio.h>
 #include <string.h>  #include <string.h>
   #include <unistd.h>
   
 #include "libmdocml.h"  #include "libmdocml.h"
 #include "private.h"  #include "private.h"
 #include "ml.h"  #include "ml.h"
   
   
   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 *,
                                 const struct md_args *,                                  const struct md_args *,
                                 enum md_ns, int);                                  enum md_ns, int);
Line 32  static ssize_t  html_begintag(struct md_mbuf *, 
Line 41  static ssize_t  html_begintag(struct md_mbuf *, 
                                 const struct md_args *,                                  const struct md_args *,
                                 enum md_ns, int,                                  enum md_ns, int,
                                 const int *, const char **);                                  const int *, const char **);
 static  int             html_begin(struct md_mbuf *,  static  int             html_begin(struct md_mbuf *,
                                 const struct md_args *);                                  const struct md_args *,
                                   const struct tm *,
                                   const char *, const char *,
                                   const char *, const char *);
 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  ssize_t         html_blocktagname(struct md_mbuf *,
Line 58  static ssize_t  html_inlinetagargs(struct md_mbuf *,
Line 70  static ssize_t  html_inlinetagargs(struct md_mbuf *,
                                 const int *, const char **);                                  const int *, const char **);
   
   
   static int
   html_loadcss(struct md_mbuf *mbuf, const char *css)
   {
           size_t           res, bufsz;
           char            *buf;
           struct stat      st;
           int              fd, c;
           ssize_t          ssz;
   
           c = 0;
           res = 0;
           buf = NULL;
   
           if (-1 == (fd = open(css, O_RDONLY, 0))) {
                   warn("%s", css);
                   return(0);
           }
   
           if (-1 == fstat(fd, &st)) {
                   warn("%s", css);
                   goto out;
           }
   
           bufsz = MAX(st.st_blksize, BUFSIZ);
           if (NULL == (buf = malloc(bufsz))) {
                   warn("malloc");
                   goto out;
           }
   
           for (;;) {
                   if (-1 == (ssz = read(fd, buf, bufsz))) {
                           warn("%s", css);
                           goto out;
                   } else if (0 == ssz)
                           break;
                   if ( ! ml_nputs(mbuf, buf, (size_t)ssz, &res))
                           goto out;
           }
   
           c = 1;
   
   out:
           if (-1 == close(fd)) {
                   warn("%s", css);
                   c = 0;
           }
   
           if (buf)
                   free(buf);
   
           return(c);
   }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 html_begin(struct md_mbuf *mbuf, const struct md_args *args)  html_begin(struct md_mbuf *mbuf, const struct md_args *args,
                   const struct tm *tm, const char *os,
                   const char *title, const char *section,
                   const char *vol)
 {  {
           const char      *preamble, *css, *trail;
           char             buf[512];
         size_t           res;          size_t           res;
   
           preamble =
           "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n"
           "    \"http://www.w3.org/TR/html4/strict.dtd\">\n"
           "<html>\n"
           "<head>\n"
           "    <meta http-equiv=\"Content-Type\"\n"
           "         content=\"text/html;charset=utf-8\">\n"
           "    <meta name=\"resource-type\" content=\"document\">\n"
           "    <title>Manual Page for %s(%s)</title>\n";
   
           css =
           "    <link rel=\"stylesheet\" type=\"text/css\"\n"
           "         href=\"%s\">\n";
           trail =
           "</head>\n"
           "<body>\n"
           "<div class=\"mdoc\">\n";
   
         res = 0;          res = 0;
         if ( ! ml_puts(mbuf, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD "  
                                 "HTML 4.01//EN\" \"http://www.w3.org"          (void)snprintf(buf, sizeof(buf) - 1,
                                 "/TR/html4/strict.dtd\">\n", &res))                          preamble, title, section);
   
           if ( ! ml_puts(mbuf, buf, &res))
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, "<html>\n", &res))  
           assert(args->params.html.css);
           if (HTML_CSS_EMBED & args->params.html.flags) {
                   if ( ! ml_puts(mbuf, "    <style><!--\n", &res))
                           return(0);
                   if ( ! html_loadcss(mbuf, args->params.html.css))
                           return(0);
                   if ( ! ml_puts(mbuf, "    --!></style>\n", &res))
                           return(0);
           } else {
                   (void)snprintf(buf, sizeof(buf) - 1, css,
                                   args->params.html.css);
                   if ( ! ml_puts(mbuf, buf, &res))
                           return(0);
           }
   
           if ( ! ml_puts(mbuf, trail, &res))
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, "<head>\n", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, " <title>Manual page</title>\n", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, " <meta http-equiv=\"Content-Type\" "  
                                 "content=\"text/html; "  
                                 "charset=utf-8\">\n", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, " <meta name=\"resource-type\" "  
                                 "content=\"document\">\n", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, "</head>\n", &res))  
                 return(0);  
         if ( ! ml_puts(mbuf, "<body>", &res))  
                 return(0);  
   
         return(1);          return(1);
 }  }
Line 98  html_end(struct md_mbuf *mbuf, const struct md_args *a
Line 190  html_end(struct md_mbuf *mbuf, const struct md_args *a
         size_t           res;          size_t           res;
   
         res = 0;          res = 0;
         if ( ! ml_puts(mbuf, "</body>\n</html>", &res))          if ( ! ml_puts(mbuf, "</div></body>\n</html>", &res))
                 return(0);                  return(0);
   
         return(1);          return(1);
Line 113  html_blockbodytagname(struct md_mbuf *mbuf, 
Line 205  html_blockbodytagname(struct md_mbuf *mbuf, 
         size_t           res;          size_t           res;
   
         res = 0;          res = 0;
           if ( ! ml_puts(mbuf, "div", &res))
                   return(-1);
   
         switch (tok) {  
         case (ROFF_Sh):  
                 if ( ! ml_puts(mbuf, "blockquote", &res))  
                         return(-1);  
                 break;  
         default:  
                 if ( ! ml_puts(mbuf, "div", &res))  
                         return(-1);  
                 break;  
         }  
   
         return((ssize_t)res);          return((ssize_t)res);
 }  }
   
Line 139  html_blockheadtagname(struct md_mbuf *mbuf, 
Line 222  html_blockheadtagname(struct md_mbuf *mbuf, 
         size_t           res;          size_t           res;
   
         res = 0;          res = 0;
           if ( ! ml_puts(mbuf, "div", &res))
                   return(-1);
   
         switch (tok) {  
         case (ROFF_Sh):  
                 if ( ! ml_puts(mbuf, "h1", &res))  
                         return(-1);  
                 break;  
         case (ROFF_Ss):  
                 if ( ! ml_puts(mbuf, "h2", &res))  
                         return(-1);  
                 break;  
         default:  
                 if ( ! ml_puts(mbuf, "div", &res))  
                         return(-1);  
                 break;  
         }  
   
         return((ssize_t)res);          return((ssize_t)res);
 }  }
   
Line 167  html_blocktagname(struct md_mbuf *mbuf, 
Line 237  html_blocktagname(struct md_mbuf *mbuf, 
         size_t           res;          size_t           res;
   
         res = 0;          res = 0;
           if ( ! ml_puts(mbuf, "div", &res))
                   return(-1);
   
         switch (tok) {  
         case (ROFF_Bd):  
                 if ( ! ml_puts(mbuf, "pre", &res))  
                         return(-1);  
                 break;  
         case (ROFF_Bl):  
                 if ( ! ml_puts(mbuf, "ul", &res))  
                         return(-1);  
                 break;  
         case (ROFF_It):  
                 if ( ! ml_puts(mbuf, "li", &res))  
                         return(-1);  
                 break;  
         default:  
                 if ( ! ml_puts(mbuf, "div", &res))  
                         return(-1);  
                 break;  
         }  
   
         return((ssize_t)res);          return((ssize_t)res);
 }  }
   
Line 200  html_blockheadtagargs(struct md_mbuf *mbuf, const stru
Line 253  html_blockheadtagargs(struct md_mbuf *mbuf, const stru
   
         res = 0;          res = 0;
   
         if ( ! ml_puts(mbuf, " class=\"head:", &res))          if ( ! ml_puts(mbuf, " class=\"head-", &res))
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, toknames[tok], &res))          if ( ! ml_puts(mbuf, toknames[tok], &res))
                 return(0);                  return(0);
Line 225  html_blockbodytagargs(struct md_mbuf *mbuf, const stru
Line 278  html_blockbodytagargs(struct md_mbuf *mbuf, const stru
   
         res = 0;          res = 0;
   
         if ( ! ml_puts(mbuf, " class=\"body:", &res))          if ( ! ml_puts(mbuf, " class=\"body-", &res))
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, toknames[tok], &res))          if ( ! ml_puts(mbuf, toknames[tok], &res))
                 return(0);                  return(0);
Line 250  html_blocktagargs(struct md_mbuf *mbuf, const struct m
Line 303  html_blocktagargs(struct md_mbuf *mbuf, const struct m
   
         res = 0;          res = 0;
   
         if ( ! ml_puts(mbuf, " class=\"block:", &res))          if ( ! ml_puts(mbuf, " class=\"block-", &res))
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, toknames[tok], &res))          if ( ! ml_puts(mbuf, toknames[tok], &res))
                 return(0);                  return(0);
Line 275  html_inlinetagargs(struct md_mbuf *mbuf, const struct 
Line 328  html_inlinetagargs(struct md_mbuf *mbuf, const struct 
   
         res = 0;          res = 0;
   
         if ( ! ml_puts(mbuf, " class=\"inline:", &res))          if ( ! ml_puts(mbuf, " class=\"inline-", &res))
                 return(0);                  return(0);
         if ( ! ml_puts(mbuf, toknames[tok], &res))          if ( ! ml_puts(mbuf, toknames[tok], &res))
                 return(0);                  return(0);
Line 302  html_inlinetagname(struct md_mbuf *mbuf, 
Line 355  html_inlinetagname(struct md_mbuf *mbuf, 
         res = 0;          res = 0;
   
         switch (tok) {          switch (tok) {
           case (ROFF_Pp):
                   if ( ! ml_puts(mbuf, "div", &res))
                           return(-1);
                   break;
         default:          default:
                 if ( ! ml_puts(mbuf, "span", &res))                  if ( ! ml_puts(mbuf, "span", &res))
                         return(-1);                          return(-1);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb