JATS writer: ensure validity of pub-date.

We try to parse the date and convert to year, month, day,
as expected in pub-date.  We also add an iso-8601-date attribute
if possible.
This commit is contained in:
John MacFarlane 2019-06-11 17:01:36 -07:00
parent f7c0d2fb3f
commit 5bbaedac57
3 changed files with 30 additions and 14 deletions

View file

@ -120,22 +120,14 @@ $endif$
</author-notes>
$endif$
$if(date)$
$if(date.iso-8601)$
<pub-date pub-type="epub" iso-8601-date="$date.iso-8601$">
$else$
<pub-date pub-type="epub">
$endif$
<pub-date pub-type="epub"$if(date.iso-8601)$ iso-8601-date="$date.iso-8601$"$endif$>
$if(date.day)$
<day>$pub-date.day$</day>
<day>$date.day$</day>
$endif$
$if(date.month)$
<month>$pub-date.month$</month>
$endif$
$if(date.year)$
<year>$pub-date.year$</year>
$else$
<string-date>$date$</string-date>
<month>$date.month$</month>
$endif$
<year>$date.year$</year>
</pub-date>
$endif$
$if(article.volume)$

View file

@ -20,7 +20,9 @@ import Control.Monad.State
import Data.Char (toLower)
import Data.Generics (everywhere, mkT)
import Data.List (isSuffixOf, partition, isPrefixOf)
import qualified Data.Map as M
import Data.Maybe (fromMaybe)
import Data.Time (toGregorian, Day, parseTimeM, defaultTimeLocale, formatTime)
import Data.Text (Text)
import Text.Pandoc.Class (PandocMonad, report)
import Text.Pandoc.Definition
@ -88,8 +90,21 @@ docToJATS opts (Pandoc meta blocks) = do
backs <- mapM (elementToJATS opts' startLvl) backElements
let fns = inTagsIndented "fn-group" $ vcat notes
let back = render' $ vcat backs $$ fns
let date = case getField "date" metadata -- an object
`mplus`
(getField "date" metadata >>= parseDate) of
Nothing -> mempty
Just day ->
let (y,m,d) = toGregorian day
in M.insert ("year" :: String) (show y)
$ M.insert "month" (show m)
$ M.insert "day" (show d)
$ M.insert "iso-8601"
(formatTime defaultTimeLocale "%F" day)
$ mempty
let context = defField "body" main
$ defField "back" back
$ resetField ("date" :: String) date
$ defField "mathml" (case writerHTMLMathMethod opts of
MathML -> True
_ -> False) metadata
@ -505,3 +520,10 @@ demoteHeaderAndRefs (Header _ _ ils) = Para ils
demoteHeaderAndRefs (Div ("refs",cls,kvs) bs) =
Div ("",cls,kvs) bs
demoteHeaderAndRefs x = x
parseDate :: String -> Maybe Day
parseDate s = msum (map (\fs -> parsetimeWith fs s) formats) :: Maybe Day
where parsetimeWith = parseTimeM True defaultTimeLocale
formats = ["%x","%m/%d/%Y", "%D","%F", "%d %b %Y",
"%e %B %Y", "%b. %e, %Y", "%B %e, %Y",
"%Y%m%d", "%Y%m", "%Y"]

View file

@ -22,8 +22,10 @@
<string-name>Anonymous</string-name>
</contrib>
</contrib-group>
<pub-date pub-type="epub">
<string-date>July 17, 2006</string-date>
<pub-date pub-type="epub" iso-8601-date="2006-07-17">
<day>17</day>
<month>7</month>
<year>2006</year>
</pub-date>
</article-meta>
</front>