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

Diff for /mandoc/Attic/man_action.c between version 1.27 and 1.43

version 1.27, 2010/03/23 11:30:48 version 1.43, 2010/11/30 15:24:27
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 18 
Line 18 
 #include "config.h"  #include "config.h"
 #endif  #endif
   
 #include <sys/utsname.h>  
   
 #include <assert.h>  #include <assert.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   #include <time.h>
   
   #include "mandoc.h"
 #include "libman.h"  #include "libman.h"
 #include "libmandoc.h"  #include "libmandoc.h"
   
Line 31  struct actions {
Line 31  struct actions {
         int     (*post)(struct man *);          int     (*post)(struct man *);
 };  };
   
 static  int       post_TH(struct man *);  
 static  int       post_fi(struct man *);  
 static  int       post_nf(struct man *);  
   
 const   struct actions man_actions[MAN_MAX] = {  const   struct actions man_actions[MAN_MAX] = {
         { NULL }, /* br */          { NULL }, /* br */
         { post_TH }, /* TH */          { NULL }, /* TH */
         { NULL }, /* SH */          { NULL }, /* SH */
         { NULL }, /* SS */          { NULL }, /* SS */
         { NULL }, /* TP */          { NULL }, /* TP */
Line 60  const struct actions man_actions[MAN_MAX] = {
Line 56  const struct actions man_actions[MAN_MAX] = {
         { NULL }, /* na */          { NULL }, /* na */
         { NULL }, /* i */          { NULL }, /* i */
         { NULL }, /* sp */          { NULL }, /* sp */
         { post_nf }, /* nf */          { NULL }, /* nf */
         { post_fi }, /* fi */          { NULL }, /* fi */
         { NULL }, /* r */          { NULL }, /* r */
         { NULL }, /* RE */          { NULL }, /* RE */
         { NULL }, /* RS */          { NULL }, /* RS */
Line 69  const struct actions man_actions[MAN_MAX] = {
Line 65  const struct actions man_actions[MAN_MAX] = {
         { NULL }, /* UC */          { NULL }, /* UC */
         { NULL }, /* PD */          { NULL }, /* PD */
         { NULL }, /* Sp */          { NULL }, /* Sp */
         { post_nf }, /* Vb */          { NULL }, /* Vb */
         { post_fi }, /* Ve */          { NULL }, /* Ve */
           { NULL }, /* AT */
           { NULL }, /* in */
 };  };
   
   
Line 97  man_action_post(struct man *m)
Line 95  man_action_post(struct man *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);  
 }  
   
   
 static int  
 post_TH(struct man *m)  
 {  
         struct man_node *n;  
         char            *ep;  
         long             lval;  
   
         if (m->meta.title)  
                 free(m->meta.title);  
         if (m->meta.vol)  
                 free(m->meta.vol);  
         if (m->meta.source)  
                 free(m->meta.source);  
   
         m->meta.title = m->meta.vol = m->meta.source = NULL;  
         m->meta.msec = 0;  
         m->meta.date = 0;  
   
         /* ->TITLE<- MSEC DATE SOURCE VOL */  
   
         n = m->last->child;  
         assert(n);  
         m->meta.title = mandoc_strdup(n->string);  
   
         /* TITLE ->MSEC<- DATE SOURCE VOL */  
   
         n = n->next;  
         assert(n);  
   
         lval = strtol(n->string, &ep, 10);  
         if (n->string[0] != '\0' && *ep == '\0')  
                 m->meta.msec = (int)lval;  
         else if ( ! man_nwarn(m, n, WMSEC))  
                 return(0);  
   
         /* TITLE MSEC ->DATE<- SOURCE VOL */  
   
         n = n->next;  
         if (n) {  
                 m->meta.date = mandoc_a2time  
                         (MTIME_ISO_8601, n->string);  
   
                 if (0 == m->meta.date) {  
                         if ( ! man_nwarn(m, n, WDATE))  
                                 return(0);  
                         m->meta.date = time(NULL);  
                 }  
         } else  
                 m->meta.date = time(NULL);  
   
         /* TITLE MSEC DATE ->SOURCE<- VOL */  
   
         if (n && (n = n->next))  
                 m->meta.source = mandoc_strdup(n->string);  
   
         /* TITLE MSEC DATE SOURCE ->VOL<- */  
   
         if (n && (n = n->next))  
                 m->meta.vol = mandoc_strdup(n->string);  
   
         n = m->last;  
         man_node_unlink(m, n);  
         man_node_freelist(n);  
         return(1);  
 }  

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.43

CVSweb