happstack-server 7.4.6.3 → 7.4.6.4
raw patch · 4 files changed
+4/−4 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- happstack-server.cabal +1/−1
- src/Happstack/Server/Response.hs +1/−1
- src/Happstack/Server/Routing.hs +1/−1
- src/Happstack/Server/RqData.hs +1/−1
happstack-server.cabal view
@@ -1,5 +1,5 @@ Name: happstack-server-Version: 7.4.6.3+Version: 7.4.6.4 Synopsis: Web related tools and services. Description: Happstack Server provides an HTTP server and a rich set of functions for routing requests, handling query parameters, generating responses, working with cookies, serving files, and more. For in-depth documentation see the Happstack Crash Course <http://happstack.com/docs/crashcourse/index.html> License: BSD3
src/Happstack/Server/Response.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE FlexibleContexts, FlexibleInstances, TypeSynonymInstances, ScopedTypeVariables #-}--- | Functions and classes related to generating a 'Response' and setting the response code. For detailed instruction see the Happstack Crash Course: <http://happstack.com/docs/crashcourse/HelloWorld.html#response_code>+-- | Functions and classes related to generating a 'Response' and setting the response code. For detailed instruction see the Happstack Crash Course: <http://www.happstack.com/docs/crashcourse/index.html#creating-a-response> module Happstack.Server.Response ( -- * Converting values to a 'Response' ToMessage(..)
src/Happstack/Server/Routing.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE FlexibleInstances, PatternGuards, ScopedTypeVariables, TypeSynonymInstances #-}--- | Route an incoming 'Request' to a handler. For more in-depth documentation see this section of the Happstack Crash Course: <http://happstack.com/docs/crashcourse/RouteFilters.html>+-- | Route an incoming 'Request' to a handler. For more in-depth documentation see this section of the Happstack Crash Course: <http://www.happstack.com/docs/crashcourse/index.html#route-filters> module Happstack.Server.Routing ( -- * Route by scheme http
src/Happstack/Server/RqData.hs view
@@ -3,7 +3,7 @@ -- -- For in-depth documentation see the following section of the Happstack Crash Course: ----- <http://happstack.com/docs/crashcourse/RqData.html>+-- <http://www.happstack.com/docs/crashcourse/index.html#parsing-request-data-from-the-query_string-cookies-and-request-body> module Happstack.Server.RqData ( -- * Looking up keys -- ** Form Values and Query Parameters