packages feed

yesod-bin 1.2.8.1 → 1.2.9

raw patch · 8 files changed

+11/−8 lines, 8 files

Files

Keter.hs view
@@ -62,7 +62,10 @@     L.writeFile fp $ compress $ Tar.write archive      case Map.lookup "copy-to" value of-        Just (String s) -> run "scp" [fp, T.unpack s]+        Just (String s) ->+            case parseMaybe (.: "copy-to-port") value of+                Just i -> run "scp" ["-P" ++ show (i :: Int), fp, T.unpack s]+                Nothing -> run "scp" [fp, T.unpack s]         _ -> return ()  try' :: IO a -> IO (Either SomeException a)
hsfiles/mongo.hsfiles view
@@ -175,7 +175,7 @@     -- Store session data on the client in encrypted cookies,     -- default session idle timeout is 120 minutes     makeSessionBackend _ = fmap Just $ defaultClientSessionBackend-        (120 * 60) -- 120 minutes+        120    -- timeout in minutes         "config/client_session_key.aes"      defaultLayout widget = do
hsfiles/mysql.hsfiles view
@@ -182,7 +182,7 @@     -- Store session data on the client in encrypted cookies,     -- default session idle timeout is 120 minutes     makeSessionBackend _ = fmap Just $ defaultClientSessionBackend-        (120 * 60) -- 120 minutes+        120    -- timeout in minutes         "config/client_session_key.aes"      defaultLayout widget = do
hsfiles/postgres-fay.hsfiles view
@@ -186,7 +186,7 @@     -- Store session data on the client in encrypted cookies,     -- default session idle timeout is 120 minutes     makeSessionBackend _ = fmap Just $ defaultClientSessionBackend-        (120 * 60) -- 120 minutes+        120    -- timeout in minutes         "config/client_session_key.aes"      defaultLayout widget = do
hsfiles/postgres.hsfiles view
@@ -182,7 +182,7 @@     -- Store session data on the client in encrypted cookies,     -- default session idle timeout is 120 minutes     makeSessionBackend _ = fmap Just $ defaultClientSessionBackend-        (120 * 60) -- 120 minutes+        120    -- timeout in minutes         "config/client_session_key.aes"      defaultLayout widget = do
hsfiles/simple.hsfiles view
@@ -160,7 +160,7 @@     -- Store session data on the client in encrypted cookies,     -- default session idle timeout is 120 minutes     makeSessionBackend _ = fmap Just $ defaultClientSessionBackend-        (120 * 60) -- 120 minutes+        120    -- timeout in minutes         "config/client_session_key.aes"      defaultLayout widget = do
hsfiles/sqlite.hsfiles view
@@ -182,7 +182,7 @@     -- Store session data on the client in encrypted cookies,     -- default session idle timeout is 120 minutes     makeSessionBackend _ = fmap Just $ defaultClientSessionBackend-        (120 * 60) -- 120 minutes+        120    -- timeout in minutes         "config/client_session_key.aes"      defaultLayout widget = do
yesod-bin.cabal view
@@ -1,5 +1,5 @@ name:            yesod-bin-version:         1.2.8.1+version:         1.2.9 license:         MIT license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>