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

Diff for /mandoc/mandoc.c between version 1.116 and 1.117

version 1.116, 2019/06/27 15:07:30 version 1.117, 2020/01/19 16:44:50
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * 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 536  fail:
Line 536  fail:
 }  }
   
 char *  char *
 mandoc_normdate(struct roff_man *man, char *in, int ln, int pos)  mandoc_normdate(struct roff_node *nch, struct roff_node *nbl)
 {  {
         char            *cp;          char            *cp;
         time_t           t;          time_t           t;
   
         if (man->quick)          /* No date specified. */
                 return mandoc_strdup(in == NULL ? "" : in);  
   
         /* No date specified: use today's date. */          if (nch == NULL) {
                   if (nbl == NULL)
         if (in == NULL || *in == '\0')                          mandoc_msg(MANDOCERR_DATE_MISSING, 0, 0, NULL);
                 mandoc_msg(MANDOCERR_DATE_MISSING, ln, pos, NULL);                  else
         if (in == NULL || *in == '\0' || strcmp(in, "$" "Mdocdate$") == 0)                          mandoc_msg(MANDOCERR_DATE_MISSING, nbl->line,
                               nbl->pos, "%s", roff_name[nbl->tok]);
                   return mandoc_strdup("");
           }
           if (*nch->string == '\0') {
                   mandoc_msg(MANDOCERR_DATE_MISSING, nch->line,
                       nch->pos, "%s", roff_name[nbl->tok]);
                   return mandoc_strdup("");
           }
           if (strcmp(nch->string, "$" "Mdocdate$") == 0)
                 return time2a(time(NULL));                  return time2a(time(NULL));
   
         /* Valid mdoc(7) date format. */          /* Valid mdoc(7) date format. */
   
         if (a2time(&t, "$" "Mdocdate: %b %d %Y $", in) ||          if (a2time(&t, "$" "Mdocdate: %b %d %Y $", nch->string) ||
             a2time(&t, "%b %d, %Y", in)) {              a2time(&t, "%b %d, %Y", nch->string)) {
                 cp = time2a(t);                  cp = time2a(t);
                 if (t > time(NULL) + 86400)                  if (t > time(NULL) + 86400)
                         mandoc_msg(MANDOCERR_DATE_FUTURE, ln, pos, "%s", cp);                          mandoc_msg(MANDOCERR_DATE_FUTURE, nch->line,
                 else if (*in != '$' && strcmp(in, cp) != 0)                              nch->pos, "%s %s", roff_name[nbl->tok], cp);
                         mandoc_msg(MANDOCERR_DATE_NORM, ln, pos, "%s", cp);                  else if (*nch->string != '$' &&
                       strcmp(nch->string, cp) != 0)
                           mandoc_msg(MANDOCERR_DATE_NORM, nch->line,
                               nch->pos, "%s %s", roff_name[nbl->tok], cp);
                 return cp;                  return cp;
         }          }
   
         /* In man(7), do not warn about the legacy format. */          /* In man(7), do not warn about the legacy format. */
   
         if (a2time(&t, "%Y-%m-%d", in) == 0)          if (a2time(&t, "%Y-%m-%d", nch->string) == 0)
                 mandoc_msg(MANDOCERR_DATE_BAD, ln, pos, "%s", in);                  mandoc_msg(MANDOCERR_DATE_BAD, nch->line, nch->pos,
                       "%s %s", roff_name[nbl->tok], nch->string);
         else if (t > time(NULL) + 86400)          else if (t > time(NULL) + 86400)
                 mandoc_msg(MANDOCERR_DATE_FUTURE, ln, pos, "%s", in);                  mandoc_msg(MANDOCERR_DATE_FUTURE, nch->line, nch->pos,
         else if (man->meta.macroset == MACROSET_MDOC)                      "%s %s", roff_name[nbl->tok], nch->string);
                 mandoc_msg(MANDOCERR_DATE_LEGACY, ln, pos, "Dd %s", in);          else if (nbl->tok == MDOC_Dd)
                   mandoc_msg(MANDOCERR_DATE_LEGACY, nch->line, nch->pos,
                       "Dd %s", nch->string);
   
         /* Use any non-mdoc(7) date verbatim. */          /* Use any non-mdoc(7) date verbatim. */
   
         return mandoc_strdup(in);          return mandoc_strdup(nch->string);
 }  }
   
 int  int

Legend:
Removed from v.1.116  
changed lines
  Added in v.1.117

CVSweb