[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.22 and 1.26

version 1.22, 2009/10/30 05:58:37 version 1.26, 2010/03/22 14:03:03
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
 #include <sys/utsname.h>  #include <sys/utsname.h>
   
 #include <assert.h>  #include <assert.h>
 #include <errno.h>  
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
Line 67  const struct actions man_actions[MAN_MAX] = {
Line 70  const struct actions man_actions[MAN_MAX] = {
         { NULL }, /* PD */          { NULL }, /* PD */
 };  };
   
 static  time_t    man_atotime(const char *);  
 #ifdef __linux__  
 extern  char     *strptime(const char *, const char *, struct tm *);  
 #endif  
   
   
 int  int
 man_action_post(struct man *m)  man_action_post(struct man *m)
 {  {
Line 149  post_TH(struct man *m)
Line 147  post_TH(struct man *m)
         n = n->next;          n = n->next;
         assert(n);          assert(n);
   
         errno = 0;  
         lval = strtol(n->string, &ep, 10);          lval = strtol(n->string, &ep, 10);
         if (n->string[0] != '\0' && *ep == '\0')          if (n->string[0] != '\0' && *ep == '\0')
                 m->meta.msec = (int)lval;                  m->meta.msec = (int)lval;
Line 158  post_TH(struct man *m)
Line 155  post_TH(struct man *m)
   
         /* TITLE MSEC ->DATE<- SOURCE VOL */          /* TITLE MSEC ->DATE<- SOURCE VOL */
   
         if (NULL == (n = n->next))          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);                  m->meta.date = time(NULL);
         else if (0 == (m->meta.date = man_atotime(n->string))) {  
                 if ( ! man_nwarn(m, n, WDATE))  
                         return(0);  
                 m->meta.date = time(NULL);  
         }  
   
         /* TITLE MSEC DATE ->SOURCE<- VOL */          /* TITLE MSEC DATE ->SOURCE<- VOL */
   
Line 176  post_TH(struct man *m)
Line 178  post_TH(struct man *m)
         if (n && (n = n->next))          if (n && (n = n->next))
                 m->meta.vol = mandoc_strdup(n->string);                  m->meta.vol = mandoc_strdup(n->string);
   
         /*          n = m->last;
          * The end document shouldn't have the prologue macros as part          man_node_unlink(m, n);
          * of the syntax tree (they encompass only meta-data).  
          */  
   
         if (m->last->parent->child == m->last) {  
                 m->last->parent->child = NULL;  
                 n = m->last;  
                 m->last = m->last->parent;  
                 m->next = MAN_NEXT_CHILD;  
         } else {  
                 assert(m->last->prev);  
                 m->last->prev->next = NULL;  
                 n = m->last;  
                 m->last = m->last->prev;  
                 m->next = MAN_NEXT_SIBLING;  
         }  
   
         man_node_freelist(n);          man_node_freelist(n);
         return(1);          return(1);
 }  
   
   
 static time_t  
 man_atotime(const char *p)  
 {  
         struct tm        tm;  
         char            *pp;  
   
         memset(&tm, 0, sizeof(struct tm));  
   
         if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp)  
                 return(mktime(&tm));  
         if ((pp = strptime(p, "%d %b %Y", &tm)) && 0 == *pp)  
                 return(mktime(&tm));  
         if ((pp = strptime(p, "%b %d, %Y", &tm)) && 0 == *pp)  
                 return(mktime(&tm));  
         if ((pp = strptime(p, "%b %Y", &tm)) && 0 == *pp)  
                 return(mktime(&tm));  
   
         return(0);  
 }  }

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.26

CVSweb