be310ac4d0
Old 1.0.1 version is still supported as well. Cabal autodetects which version is available, but in the Makefile, WITH_OLD_YESOD has to be configured appropriately. I have not squashed all the $newline warnings with the new Yesod. They should go away eventually anyway as Yesod moves past that transition.
31 lines
660 B
Haskell
31 lines
660 B
Haskell
{- 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
|
|
|
|
import Yesod.Default.Util
|
|
import Language.Haskell.TH.Syntax
|
|
#ifndef WITH_OLD_YESOD
|
|
import Data.Default (def)
|
|
import Text.Hamlet
|
|
#endif
|
|
|
|
widgetFile :: String -> Q Exp
|
|
#ifdef WITH_OLD_YESOD
|
|
widgetFile = widgetFileNoReload
|
|
#else
|
|
widgetFile = widgetFileNoReload $ def
|
|
{ wfsHamletSettings = defaultHamletSettings
|
|
{ hamletNewlines = AlwaysNewlines
|
|
}
|
|
}
|
|
#endif
|
|
|
|
hamletTemplate :: FilePath -> FilePath
|
|
hamletTemplate f = globFile "hamlet" f
|