epub-tools-1.0.0.0: src/EpubTools/EpubName/Format/MagClarkesworld.hs
-- Copyright: 2008-2011 Dino Morelli
-- License: BSD3 (see LICENSE)
-- Author: Dino Morelli <dino@ui3.info>
module EpubTools.EpubName.Format.MagClarkesworld
( fmtMagClarkesworld )
where
import Codec.Epub.Opf.Package.Metadata
import Text.Printf
import EpubTools.EpubName.Format.Util ( format )
import EpubTools.EpubName.Util
fmtMagClarkesworld :: Metadata -> EN (String, String)
fmtMagClarkesworld = format "MagClarkesworld"
".*" (const "")
"^(Clarkesworld)[^0-9]*([0-9]+)$" title
title :: String -> [String] -> String
title _ (name:issue:_) =
printf "%s%03d" name (read issue :: Int)
title _ _ = undefined