git-annex/Utility/Yesod.hs

39 lines
909 B
Haskell
Raw Normal View History

2012-07-27 02:54:31 +00:00
{- Yesod stuff, that's typically found in the scaffolded site.
-
- Also a bit of a compatability layer for older versions of yesod.
-
- Copyright 2012-2014 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU AGPL version 3 or higher.
-}
{-# LANGUAGE RankNTypes, FlexibleContexts #-}
module Utility.Yesod
( module Y
2013-06-27 19:25:28 +00:00
, liftH
, widgetFile
, hamletTemplate
) where
import Yesod as Y
import Yesod.Form.Bootstrap3 as Y hiding (bfs)
2012-07-27 02:54:31 +00:00
import Yesod.Default.Util
2013-06-03 20:33:05 +00:00
import Language.Haskell.TH.Syntax (Q, Exp)
import Data.Default (def)
import Text.Hamlet hiding (Html)
2012-07-27 02:54:31 +00:00
widgetFile :: String -> Q Exp
widgetFile = widgetFileNoReload $ def
{ wfsHamletSettings = defaultHamletSettings
{ hamletNewlines = AlwaysNewlines
}
}
hamletTemplate :: FilePath -> FilePath
2012-07-27 02:54:31 +00:00
hamletTemplate f = globFile "hamlet" f
{- Lift Handler to Widget -}
liftH :: HandlerFor site a -> WidgetFor site a
liftH = handlerToWidget