diff options
author | Guillermo Ramos | 2014-09-27 15:34:15 +0200 |
---|---|---|
committer | Guillermo Ramos | 2014-09-27 16:12:49 +0200 |
commit | 6e99d20972bec95d3502ef7549d74f67b4cf0001 (patch) | |
tree | 387c36753f158db69dc117ede96a8586d4697f63 /Settings/StaticFiles.hs | |
download | turing-web-6e99d20972bec95d3502ef7549d74f67b4cf0001.tar.gz |
Initial commit (using Yesod's scaffolding)
Diffstat (limited to 'Settings/StaticFiles.hs')
-rw-r--r-- | Settings/StaticFiles.hs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Settings/StaticFiles.hs b/Settings/StaticFiles.hs new file mode 100644 index 0000000..cb37905 --- /dev/null +++ b/Settings/StaticFiles.hs @@ -0,0 +1,35 @@ +module Settings.StaticFiles where + +import Prelude (IO) +import Yesod.Static +import qualified Yesod.Static as Static +import Settings (staticDir) +import Settings.Development +import Language.Haskell.TH (Q, Exp, Name) +import Data.Default (def) + +-- | use this to create your static file serving site +staticSite :: IO Static.Static +staticSite = if development then Static.staticDevel staticDir + else Static.static staticDir + +-- | This generates easy references to files in the static directory at compile time, +-- giving you compile-time verification that referenced files exist. +-- Warning: any files added to your static directory during run-time can't be +-- accessed this way. You'll have to use their FilePath or URL to access them. +$(staticFiles Settings.staticDir) + +combineSettings :: CombineSettings +combineSettings = def + +-- The following two functions can be used to combine multiple CSS or JS files +-- at compile time to decrease the number of http requests. +-- Sample usage (inside a Widget): +-- +-- > $(combineStylesheets 'StaticR [style1_css, style2_css]) + +combineStylesheets :: Name -> [Route Static] -> Q Exp +combineStylesheets = combineStylesheets' development combineSettings + +combineScripts :: Name -> [Route Static] -> Q Exp +combineScripts = combineScripts' development combineSettings |