Skip to content

Commit

Permalink
Update doc links to haskell-lang
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed Sep 14, 2016
1 parent a352061 commit 74f2cb3
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ These packages provide a low level HTTP client engine (http-client), different
backends for providing SSL support (http-client-tls and http-client-openssl),
and higher-level APIs for user convenience (http-conduit).

If you're just getting started, it is recommended to use http-conduit, which
[is documented in the Yesod book](http://www.yesodweb.com/book/http-conduit).
Please check out the [tutorial on haskell-lang](https://haskell-lang.org/library/http-client).

Due to Haddock pulling the documentation directly from http-client, some "Since"
notations give the version numbers of the http-client package. For reference,
Expand Down
2 changes: 1 addition & 1 deletion http-client-openssl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ http-client-openssl
===================

Full tutorial docs on the http-client package set are available at:
https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md
https://haskell-lang.org/library/http-client

This package is an alternative to
[http-client-tls](https://www.stackage.org/package/http-client-tls) for those
Expand Down
2 changes: 1 addition & 1 deletion http-client-tls/Network/HTTP/Client/TLS.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-- | Support for making connections via the connection package and, in turn,
-- the tls package suite.
--
-- Recommended reading: <https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md>
-- Recommended reading: <https://haskell-lang.org/library/http-client>
module Network.HTTP.Client.TLS
( -- * Settings
tlsManagerSettings
Expand Down
2 changes: 1 addition & 1 deletion http-client-tls/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## http-client-tls

Full tutorial docs are available at:
https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md
https://haskell-lang.org/library/http-client

Use the http-client package with the pure-Haskell tls package for secure
connections. For the most part, you'll just want to replace
Expand Down
2 changes: 1 addition & 1 deletion http-client/Network/HTTP/Client.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
-- support for things like JSON request and response bodies. For most users,
-- this will be an easier place to start. You can read the tutorial at:
--
-- https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md
-- https://haskell-lang.org/library/http-client
--
-- = Lower-level API
--
Expand Down
2 changes: 1 addition & 1 deletion http-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ http-client
===========

Full tutorial docs are available at:
https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md
https://haskell-lang.org/library/http-client

An HTTP client engine, intended as a base layer for more user-friendly packages.

Expand Down
2 changes: 1 addition & 1 deletion http-conduit/Network/HTTP/Client/Conduit.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-- For most users, "Network.HTTP.Simple" is probably a better choice. For more
-- information, see:
--
-- <https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md>.
-- <https://haskell-lang.org/library/http-client>
--
-- For more information on using this module, please be sure to read the
-- documentation in the "Network.HTTP.Client" module.
Expand Down
2 changes: 1 addition & 1 deletion http-conduit/Network/HTTP/Conduit.hs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
-- response bodies. For most users, this will be an easier place to start. You
-- can read the tutorial at:
--
-- https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md
-- <https://haskell-lang.org/library/http-client>
--
-- = Lower-level API
--
Expand Down
2 changes: 1 addition & 1 deletion http-conduit/Network/HTTP/Simple.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{-# LANGUAGE OverloadedStrings #-}
-- | Simplified interface for common HTTP client interactions. Tutorial
-- available at
-- <https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md>.
-- <https://haskell-lang.org/library/http-client>
--
-- Important note: 'H.Request' is an instance of 'Data.String.IsString', and
-- therefore recommended usage is to turn on @OverloadedStrings@, e.g.
Expand Down
2 changes: 1 addition & 1 deletion http-conduit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ http-conduit
============

Full tutorial docs are available at:
https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md
https://haskell-lang.org/library/http-client

The `Network.HTTP.Conduit.Browser` module has been moved to <http://hackage.haskell.org/package/http-conduit-browser/>

0 comments on commit 74f2cb3

Please sign in to comment.