]> git.cameronkatri.com Git - mandoc.git/commitdiff
*** empty log message ***
authorKristaps Dzonsons <kristaps@bsd.lv>
Wed, 10 Dec 2008 00:53:40 +0000 (00:53 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Wed, 10 Dec 2008 00:53:40 +0000 (00:53 +0000)
Makefile
html.c
html.h
ml.c
tags.c
xml.c

index c11a4f03726026c729217a8486618da901be5156..4132579304d48de8547bce9e449db883115a55dd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,7 @@ lint: llib-lmdocml.ln
 
 dist: mdocml.tgz
 
-www: $(HTML) $(XML)
+www: all $(HTML) $(XML)
 
 regress: mdocml
        @for f in $(FAIL); do \
diff --git a/html.c b/html.c
index b2b88a41a9f246bab383deac5f7e19b2462206a8..caf6f473513c27a3673c027cf4efdebe4ce53b23 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.19 2008/12/10 00:52:46 kristaps Exp $ */
+/* $Id: html.c,v 1.20 2008/12/10 00:58:15 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -485,7 +485,10 @@ html_begin(struct md_mbuf *mbuf, const struct md_args *args,
        if ( ! html_tputln(mbuf, ML_CLOSE, i, HTML_TAG_TD))
                return(0);
 
-       if ( ! html_tputln(mbuf, ML_OPEN, i, HTML_TAG_TD))
+       attr[0].attr = HTML_ATTR_ALIGN;
+       attr[0].val = "right";
+
+       if ( ! html_aputln(mbuf, ML_OPEN, i, HTML_TAG_TD, 1, attr))
                return(0);
        if ( ! ml_putstring(mbuf, ts, NULL))
                return(0);
diff --git a/html.h b/html.h
index f437cced277c8dc572ca718e75ca161eed4d030e..7fe1292e1e794121d920499e7e2b01fb595b29b3 100644 (file)
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.1 2008/12/10 00:52:46 kristaps Exp $ */
+/* $Id: html.h,v 1.2 2008/12/10 00:58:15 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -51,6 +51,7 @@ enum  html_attr {
        HTML_ATTR_REL   = 5,
        HTML_ATTR_HREF  = 6,
        HTML_ATTR_WIDTH = 7,
+       HTML_ATTR_ALIGN = 8,
 };
 
 enum   html_type {
diff --git a/ml.c b/ml.c
index d3754acb27dbb0e608ae7f3338c5f209e0376ab0..efee89040fbaa750312bf64919499500327ed831 100644 (file)
--- a/ml.c
+++ b/ml.c
@@ -1,4 +1,4 @@
-/* $Id: ml.c,v 1.8 2008/12/09 17:09:12 kristaps Exp $ */
+/* $Id: ml.c,v 1.9 2008/12/10 00:58:15 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -20,7 +20,6 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "private.h"
 #include "ml.h"
 
 #ifdef __linux__
diff --git a/tags.c b/tags.c
index 46831e262c2b5ba7621adf1bab4f00f7ac7c9584..35c0655eba16d72b0d2ff7b314b13b467866a6f2 100644 (file)
--- a/tags.c
+++ b/tags.c
@@ -1,4 +1,4 @@
-/* $Id: tags.c,v 1.1 2008/12/10 00:52:46 kristaps Exp $ */
+/* $Id: tags.c,v 1.2 2008/12/10 00:58:15 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -37,6 +37,7 @@ static        const char * const tagnames[] = {
 static const char * const attrnames[] = {
        "class",        "http-equiv",   "content",      "name",
        "type",         "rel",          "href",         "width",
+       "align",
        };
 
 static const char * const typenames[] = {
diff --git a/xml.c b/xml.c
index 212778e5c1a00432a557e93d03b4d83437ae06af..673ca2b27be9f6e397ff32802828901bc71f56bc 100644 (file)
--- a/xml.c
+++ b/xml.c
@@ -1,4 +1,4 @@
-/* $Id: xml.c,v 1.21 2008/12/09 17:09:12 kristaps Exp $ */
+/* $Id: xml.c,v 1.22 2008/12/10 00:53:40 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -68,6 +68,8 @@ xml_printtagargs(struct md_mbuf *mbuf, const int *argc,
                if ( ! ml_nputs(mbuf, " ", 1, &res))
                        return(-1);
 
+               /* FIXME: should puke on some, no? */
+
                if ( ! ml_puts(mbuf, tokargnames[c], &res))
                        return(-1);
                if ( ! ml_nputs(mbuf, "=\"", 2, &res))