X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Rakka%2FW3CDateTime.hs;h=488cd2e08eabe75c3cd76750f10b3acaaa0c7166;hb=e3e30c2bfa341cef11754e3f4d90b03844ef74d1;hp=85af47a8e7f54feba299eef30d3dd5015ed6a9dd;hpb=9ff4eb243ae1545c62a5ab2eaf8dcb2f7c40b20d;p=Rakka.git diff --git a/Rakka/W3CDateTime.hs b/Rakka/W3CDateTime.hs index 85af47a..488cd2e 100644 --- a/Rakka/W3CDateTime.hs +++ b/Rakka/W3CDateTime.hs @@ -23,13 +23,13 @@ formatW3CDateTime zonedTime timeOfDay = localTimeOfDay localTime (secInt, secFrac) = properFraction (todSec timeOfDay) in - (printf "%04d-%02d-%02dT%02d:%02d:%02d" - year - month - day - (todHour timeOfDay) - (todMin timeOfDay) - (secInt :: Int)) + printf "%04d-%02d-%02dT%02d:%02d:%02d" + year + month + day + (todHour timeOfDay) + (todMin timeOfDay) + (secInt :: Int) ++ (if secFrac == 0 then "" @@ -38,9 +38,9 @@ formatW3CDateTime zonedTime formatTimeZone :: TimeZone -> String formatTimeZone tz = case timeZoneMinutes tz of - offset | offset < 0 -> '-':(showTZ $ negate offset) + offset | offset < 0 -> '-' : (showTZ $ negate offset) | offset == 0 -> "Z" - | otherwise -> '+':(showTZ offset) + | otherwise -> '+' : showTZ offset showTZ :: Int -> String showTZ offset @@ -50,7 +50,7 @@ formatW3CDateTime zonedTime show2 hour ++ ":" ++ show2 minute show2 :: Int -> String - show2 n | n < 10 = '0':(show n) + show2 n | n < 10 = '0' : show n | otherwise = show n @@ -77,11 +77,11 @@ w3cDateTime = do year <- liftM read (count 4 digit) return zonedTime where time :: Parser (Int, Int, Double, Int) - time = do char 'T' + time = do _ <- char 'T' hour <- liftM read (count 2 digit) - char ':' + _ <- char ':' min <- liftM read (count 2 digit) - sec <- option 0 $ do char ':' + sec <- option 0 $ do _ <- char ':' secInt <- count 2 digit secFrac <- option "" $ do c <- char '.' cs <- many1 digit @@ -93,7 +93,7 @@ w3cDateTime = do year <- liftM read (count 4 digit) <|> (char '-' >> return (-1)) h <- liftM read (count 2 digit) - char ':' + _ <- char ':' m <- liftM read (count 2 digit) return $ sign * h * 60 + m) return (hour, min, sec, offMin) \ No newline at end of file