git-annex/Utility/Yesod.hs

32 lines
660 B
Haskell
Raw Normal View History

2012-07-27 02:54:31 +00:00
{- Yesod stuff, that's typically found in the scaffolded site.
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
{-# LANGUAGE CPP #-}
module Utility.Yesod where
2012-07-27 02:54:31 +00:00
import Yesod.Default.Util
import Language.Haskell.TH.Syntax
#ifndef WITH_OLD_YESOD
import Data.Default (def)
import Text.Hamlet
#endif
2012-07-27 02:54:31 +00:00
widgetFile :: String -> Q Exp
#ifdef WITH_OLD_YESOD
2012-07-27 02:54:31 +00:00
widgetFile = widgetFileNoReload
#else
widgetFile = widgetFileNoReload $ def
{ wfsHamletSettings = defaultHamletSettings
{ hamletNewlines = AlwaysNewlines
}
}
#endif
hamletTemplate :: FilePath -> FilePath
2012-07-27 02:54:31 +00:00
hamletTemplate f = globFile "hamlet" f