diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-24 11:55:40 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-24 11:55:40 +0100 |
commit | 788a37cd3ea28e890c3f6f4ffca087e580dafcbd (patch) | |
tree | 965b092d4555a972e3d6ac92de8b69cea18754d3 /src/Text/Hakyll | |
parent | 4295de01bc524b5dccb17dfe2e50f2121feeea07 (diff) | |
download | hakyll-788a37cd3ea28e890c3f6f4ffca087e580dafcbd.tar.gz |
Use ascending list for serializing where possible.
Diffstat (limited to 'src/Text/Hakyll')
-rw-r--r-- | src/Text/Hakyll/Page.hs | 4 | ||||
-rw-r--r-- | src/Text/Hakyll/Tags.hs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Text/Hakyll/Page.hs b/src/Text/Hakyll/Page.hs index b9507b6..0cf86ee 100644 --- a/src/Text/Hakyll/Page.hs +++ b/src/Text/Hakyll/Page.hs @@ -149,5 +149,5 @@ instance Renderable Page where -- Make pages serializable. instance Binary Page where - put (Page context) = put $ M.toList context - get = liftM (Page . M.fromList) get + put (Page context) = put $ M.toAscList context + get = liftM (Page . M.fromAscList) get diff --git a/src/Text/Hakyll/Tags.hs b/src/Text/Hakyll/Tags.hs index 6a179a5..efd7bed 100644 --- a/src/Text/Hakyll/Tags.hs +++ b/src/Text/Hakyll/Tags.hs @@ -45,9 +45,9 @@ readTagMap :: String -- ^ Unique identifier for the tagmap. -> Hakyll (M.Map String [FilePath]) readTagMap identifier paths = do isCacheMoreRecent' <- isCacheMoreRecent fileName paths - if isCacheMoreRecent' then M.fromList <$> getFromCache fileName + if isCacheMoreRecent' then M.fromAscList <$> getFromCache fileName else do tagMap <- readTagMap' - storeInCache (M.toList tagMap) fileName + storeInCache (M.toAscList tagMap) fileName return tagMap where fileName = "_tagmap" </> identifier |