diff --git a/yesod-bin/hsfiles/minimal.hsfiles b/yesod-bin/hsfiles/minimal.hsfiles index cb07eee4..1f2b56e2 100644 --- a/yesod-bin/hsfiles/minimal.hsfiles +++ b/yesod-bin/hsfiles/minimal.hsfiles @@ -32,13 +32,17 @@ config/client_session_key.aes *.hi *.o *.sqlite3 +*.sqlite3-shm +*.sqlite3-wal .hsenv* cabal-dev/ +.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp +*.keter {-# START_FILE Add.hs #-} {-# LANGUAGE OverloadedStrings #-} diff --git a/yesod-bin/hsfiles/mongo.hsfiles b/yesod-bin/hsfiles/mongo.hsfiles index e974c9d4..a26a4c28 100644 --- a/yesod-bin/hsfiles/mongo.hsfiles +++ b/yesod-bin/hsfiles/mongo.hsfiles @@ -32,13 +32,17 @@ config/client_session_key.aes *.hi *.o *.sqlite3 +*.sqlite3-shm +*.sqlite3-wal .hsenv* cabal-dev/ +.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp +*.keter {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-} @@ -81,7 +85,7 @@ import Handler.Home mkYesodDispatch "App" resourcesApp -- | This function allocates resources (such as a database connection pool), --- performs initialization and return a foundation datatype value. This is also +-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App @@ -101,7 +105,7 @@ makeFoundation appSettings = do return App {..} -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and --- applyng some additional middlewares. +-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do logWare <- mkRequestLogger def @@ -496,6 +500,7 @@ library GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -507,7 +512,7 @@ library , yesod >= 1.4.1 && < 1.5 , yesod-core >= 1.4.6 && < 1.5 , yesod-auth >= 1.4.0 && < 1.5 - , yesod-static >= 1.4.0.3 && < 1.5 + , yesod-static >= 1.4.0.3 && < 1.6 , yesod-form >= 1.4.0 && < 1.5 , classy-prelude >= 0.10.2 , classy-prelude-conduit >= 0.10.2 @@ -565,6 +570,7 @@ test-suite test GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -940,7 +946,7 @@ stanzas: # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination -# copy-to: user@host:/opt/keter/incoming +# copy-to: user@host:/opt/keter/incoming/ # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22 @@ -9034,7 +9040,7 @@ $maybe msg <- mmsg Send it!
-
  • And last but not least, Testing. In tests/main.hs you will find a # +
  • And last but not least, Testing. In test/Spec.hs you will find a # test suite that performs tests on this page. # You can run your tests by doing:
    yesod test
    diff --git a/yesod-bin/hsfiles/mysql.hsfiles b/yesod-bin/hsfiles/mysql.hsfiles index 2e719704..6f5ed61c 100644 --- a/yesod-bin/hsfiles/mysql.hsfiles +++ b/yesod-bin/hsfiles/mysql.hsfiles @@ -32,13 +32,17 @@ config/client_session_key.aes *.hi *.o *.sqlite3 +*.sqlite3-shm +*.sqlite3-wal .hsenv* cabal-dev/ +.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp +*.keter {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-} @@ -82,7 +86,7 @@ import Handler.Home mkYesodDispatch "App" resourcesApp -- | This function allocates resources (such as a database connection pool), --- performs initialization and return a foundation datatype value. This is also +-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App @@ -119,7 +123,7 @@ makeFoundation appSettings = do return $ mkFoundation pool -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and --- applyng some additional middlewares. +-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do logWare <- mkRequestLogger def @@ -510,6 +514,7 @@ library GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -521,7 +526,7 @@ library , yesod >= 1.4.1 && < 1.5 , yesod-core >= 1.4.6 && < 1.5 , yesod-auth >= 1.4.0 && < 1.5 - , yesod-static >= 1.4.0.3 && < 1.5 + , yesod-static >= 1.4.0.3 && < 1.6 , yesod-form >= 1.4.0 && < 1.5 , classy-prelude >= 0.10.2 , classy-prelude-conduit >= 0.10.2 @@ -579,6 +584,7 @@ test-suite test GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -952,7 +958,7 @@ stanzas: # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination -# copy-to: user@host:/opt/keter/incoming +# copy-to: user@host:/opt/keter/incoming/ # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22 @@ -9047,7 +9053,7 @@ $maybe msg <- mmsg Send it!
    -
  • And last but not least, Testing. In tests/main.hs you will find a # +
  • And last but not least, Testing. In test/Spec.hs you will find a # test suite that performs tests on this page. # You can run your tests by doing:
    yesod test
    diff --git a/yesod-bin/hsfiles/postgres-fay.hsfiles b/yesod-bin/hsfiles/postgres-fay.hsfiles index b60059ce..5ea19bee 100644 --- a/yesod-bin/hsfiles/postgres-fay.hsfiles +++ b/yesod-bin/hsfiles/postgres-fay.hsfiles @@ -37,11 +37,13 @@ config/client_session_key.aes fay/Fay/Yesod.hs .hsenv* cabal-dev/ +.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp +*.keter {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-} @@ -87,7 +89,7 @@ import Handler.Home mkYesodDispatch "App" resourcesApp -- | This function allocates resources (such as a database connection pool), --- performs initialization and return a foundation datatype value. This is also +-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App @@ -125,7 +127,7 @@ makeFoundation appSettings = do return $ mkFoundation pool -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and --- applyng some additional middlewares. +-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do logWare <- mkRequestLogger def @@ -552,6 +554,7 @@ library GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction RankNTypes @@ -564,7 +567,7 @@ library , yesod >= 1.4.1 && < 1.5 , yesod-core >= 1.4.6 && < 1.5 , yesod-auth >= 1.4.0 && < 1.5 - , yesod-static >= 1.4.0.3 && < 1.5 + , yesod-static >= 1.4.0.3 && < 1.6 , yesod-form >= 1.4.0 && < 1.5 , yesod-fay >= 0.7 && < 0.8 , fay >= 0.21.2.1 && < 0.24 @@ -623,6 +626,7 @@ test-suite test GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -1011,7 +1015,7 @@ stanzas: # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination -# copy-to: user@host:/opt/keter/incoming +# copy-to: user@host:/opt/keter/incoming/ # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22 @@ -9162,7 +9166,7 @@ $maybe msg <- mmsg Send it!
    -
  • And last but not least, Testing. In tests/main.hs you will find a # +
  • And last but not least, Testing. In test/Spec.hs you will find a # test suite that performs tests on this page. # You can run your tests by doing:
    yesod test
    diff --git a/yesod-bin/hsfiles/postgres.hsfiles b/yesod-bin/hsfiles/postgres.hsfiles index 646add02..80baac8f 100644 --- a/yesod-bin/hsfiles/postgres.hsfiles +++ b/yesod-bin/hsfiles/postgres.hsfiles @@ -32,13 +32,17 @@ config/client_session_key.aes *.hi *.o *.sqlite3 +*.sqlite3-shm +*.sqlite3-wal .hsenv* cabal-dev/ +.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp +*.keter {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-} @@ -82,7 +86,7 @@ import Handler.Home mkYesodDispatch "App" resourcesApp -- | This function allocates resources (such as a database connection pool), --- performs initialization and return a foundation datatype value. This is also +-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App @@ -119,7 +123,7 @@ makeFoundation appSettings = do return $ mkFoundation pool -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and --- applyng some additional middlewares. +-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do logWare <- mkRequestLogger def @@ -510,6 +514,7 @@ library GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -521,7 +526,7 @@ library , yesod >= 1.4.1 && < 1.5 , yesod-core >= 1.4.6 && < 1.5 , yesod-auth >= 1.4.0 && < 1.5 - , yesod-static >= 1.4.0.3 && < 1.5 + , yesod-static >= 1.4.0.3 && < 1.6 , yesod-form >= 1.4.0 && < 1.5 , classy-prelude >= 0.10.2 , classy-prelude-conduit >= 0.10.2 @@ -579,6 +584,7 @@ test-suite test GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -952,7 +958,7 @@ stanzas: # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination -# copy-to: user@host:/opt/keter/incoming +# copy-to: user@host:/opt/keter/incoming/ # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22 @@ -9047,7 +9053,7 @@ $maybe msg <- mmsg Send it!
    -
  • And last but not least, Testing. In tests/main.hs you will find a # +
  • And last but not least, Testing. In test/Spec.hs you will find a # test suite that performs tests on this page. # You can run your tests by doing:
    yesod test
    diff --git a/yesod-bin/hsfiles/simple.hsfiles b/yesod-bin/hsfiles/simple.hsfiles index 540ed990..d45d5975 100644 --- a/yesod-bin/hsfiles/simple.hsfiles +++ b/yesod-bin/hsfiles/simple.hsfiles @@ -32,13 +32,17 @@ config/client_session_key.aes *.hi *.o *.sqlite3 +*.sqlite3-shm +*.sqlite3-wal .hsenv* cabal-dev/ +.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp +*.keter {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-} @@ -79,7 +83,7 @@ import Handler.Home mkYesodDispatch "App" resourcesApp -- | This function allocates resources (such as a database connection pool), --- performs initialization and return a foundation datatype value. This is also +-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App @@ -96,7 +100,7 @@ makeFoundation appSettings = do return App {..} -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and --- applyng some additional middlewares. +-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do logWare <- mkRequestLogger def @@ -427,6 +431,7 @@ library GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -437,7 +442,7 @@ library build-depends: base >= 4 && < 5 , yesod >= 1.4.1 && < 1.5 , yesod-core >= 1.4.6 && < 1.5 - , yesod-static >= 1.4.0.3 && < 1.5 + , yesod-static >= 1.4.0.3 && < 1.6 , yesod-form >= 1.4.0 && < 1.5 , classy-prelude >= 0.10.2 , classy-prelude-conduit >= 0.10.2 @@ -492,6 +497,7 @@ test-suite test GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -855,7 +861,7 @@ stanzas: # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination -# copy-to: user@host:/opt/keter/incoming +# copy-to: user@host:/opt/keter/incoming/ # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22 @@ -8926,7 +8932,7 @@ $maybe msg <- mmsg Send it!
    -
  • And last but not least, Testing. In tests/main.hs you will find a # +
  • And last but not least, Testing. In test/Spec.hs you will find a # test suite that performs tests on this page. # You can run your tests by doing:
    yesod test
    diff --git a/yesod-bin/hsfiles/sqlite.hsfiles b/yesod-bin/hsfiles/sqlite.hsfiles index 019e3c4c..e68e87e7 100644 --- a/yesod-bin/hsfiles/sqlite.hsfiles +++ b/yesod-bin/hsfiles/sqlite.hsfiles @@ -32,13 +32,17 @@ config/client_session_key.aes *.hi *.o *.sqlite3 +*.sqlite3-shm +*.sqlite3-wal .hsenv* cabal-dev/ +.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp +*.keter {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-} @@ -82,7 +86,7 @@ import Handler.Home mkYesodDispatch "App" resourcesApp -- | This function allocates resources (such as a database connection pool), --- performs initialization and return a foundation datatype value. This is also +-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App @@ -119,7 +123,7 @@ makeFoundation appSettings = do return $ mkFoundation pool -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and --- applyng some additional middlewares. +-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do logWare <- mkRequestLogger def @@ -510,6 +514,7 @@ library GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -521,7 +526,7 @@ library , yesod >= 1.4.1 && < 1.5 , yesod-core >= 1.4.6 && < 1.5 , yesod-auth >= 1.4.0 && < 1.5 - , yesod-static >= 1.4.0.3 && < 1.5 + , yesod-static >= 1.4.0.3 && < 1.6 , yesod-form >= 1.4.0 && < 1.5 , classy-prelude >= 0.10.2 , classy-prelude-conduit >= 0.10.2 @@ -579,6 +584,7 @@ test-suite test GADTs GeneralizedNewtypeDeriving FlexibleContexts + FlexibleInstances EmptyDataDecls NoMonomorphismRestriction DeriveDataTypeable @@ -952,7 +958,7 @@ stanzas: # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination -# copy-to: user@host:/opt/keter/incoming +# copy-to: user@host:/opt/keter/incoming/ # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22 @@ -9065,7 +9071,7 @@ $maybe msg <- mmsg Send it!
    -
  • And last but not least, Testing. In tests/main.hs you will find a # +
  • And last but not least, Testing. In test/Spec.hs you will find a # test suite that performs tests on this page. # You can run your tests by doing:
    yesod test