]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_action.c
Additions to -Tman -Thtml: all structural components tested & in place.
[mandoc.git] / man_action.c
index e1a4b6c0ec848b8e4e0b167f55060fc216deacf1..6ca7f9e2b8f20a3a0cecf1011664dc35d1491117 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_action.c,v 1.14 2009/07/24 20:22:24 kristaps Exp $ */
+/*     $Id: man_action.c,v 1.19 2009/08/22 09:10:38 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
 
 #include "libman.h"
 
-#ifdef __linux__
-extern char            *strptime(const char *, const char *, struct tm *);
-#endif
-
 struct actions {
        int     (*post)(struct man *);
 };
 
-
 static int       post_TH(struct man *);
-static time_t    man_atotime(const char *);
+static int       post_fi(struct man *);
+static int       post_nf(struct man *);
 
 const  struct actions man_actions[MAN_MAX] = {
        { NULL }, /* br */
@@ -60,8 +56,20 @@ const        struct actions man_actions[MAN_MAX] = {
        { NULL }, /* na */
        { NULL }, /* i */
        { NULL }, /* sp */
+       { post_nf }, /* nf */
+       { post_fi }, /* fi */
+       { NULL }, /* r */
+       { NULL }, /* RE */
+       { NULL }, /* RS */
+       { NULL }, /* DT */
+       { NULL }, /* UC */
 };
 
+static time_t    man_atotime(const char *);
+#ifdef __linux__
+extern char     *strptime(const char *, const char *, struct tm *);
+#endif
+
 
 int
 man_action_post(struct man *m)
@@ -73,14 +81,39 @@ man_action_post(struct man *m)
 
        switch (m->last->type) {
        case (MAN_TEXT):
-               break;
+               /* FALLTHROUGH */
        case (MAN_ROOT):
-               break;
+               return(1);
        default:
-               if (NULL == man_actions[m->last->tok].post)
-                       break;
-               return((*man_actions[m->last->tok].post)(m));
+               break;
        }
+
+       if (NULL == man_actions[m->last->tok].post)
+               return(1);
+       return((*man_actions[m->last->tok].post)(m));
+}
+
+
+static int
+post_fi(struct man *m)
+{
+
+       if ( ! (MAN_LITERAL & m->flags))
+               if ( ! man_nwarn(m, m->last, WNLITERAL))
+                       return(0);
+       m->flags &= ~MAN_LITERAL;
+       return(1);
+}
+
+
+static int
+post_nf(struct man *m)
+{
+
+       if (MAN_LITERAL & m->flags)
+               if ( ! man_nwarn(m, m->last, WOLITERAL))
+                       return(0);
+       m->flags |= MAN_LITERAL;
        return(1);
 }
 
@@ -151,12 +184,10 @@ post_TH(struct man *m)
         */
 
        if (m->last->parent->child == m->last) {
-               assert(MAN_ROOT == m->last->parent->type);
                m->last->parent->child = NULL;
                n = m->last;
                m->last = m->last->parent;
                m->next = MAN_NEXT_CHILD;
-               assert(m->last == m->first);
        } else {
                assert(m->last->prev);
                m->last->prev->next = NULL;