* limiting amount of queries with couchDB's limit parameter

This commit is contained in:
Vincent Ambo 2012-03-03 04:02:30 +01:00
parent 65a5443e2d
commit 7114876693
2 changed files with 6 additions and 6 deletions

View file

@ -72,12 +72,12 @@ blogTemplate lang t_append body = H.docTypeHtml $ do --add body
H.a ! A.href (toValue imu) ! A.target "_blank" $ "iMessage"
"."
renderEntries :: [Entry] -> Int -> String-> Html
renderEntries entries num topText = H.div ! A.class_ "innerBox" $ do
renderEntries :: [Entry] -> String-> Html
renderEntries entries topText = H.div ! A.class_ "innerBox" $ do
H.div ! A.class_ "innerBoxTop" $ toHtml topText
H.div ! A.class_ "innerBoxMiddle" $ do
H.ul $
sequence_ $ take num $ reverse $ map showEntry entries
sequence_ $ reverse $ map showEntry entries
where
showEntry :: Entry -> Html
showEntry e = H.li $ do