Skip to content

Commit e021678

Browse files
committed
set the homepage to readthedocs
1 parent 29be576 commit e021678

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44

55
## Getting Started
66

7-
We have a [tutorial](http://haskell-servant.github.io/tutorial) that
7+
We have a [tutorial](http://haskell-servant.readthedocs.org/en/stable/tutorial/index.html) that
88
introduces the core features of servant. After this article, you should be able
99
to write your first servant webservices, learning the rest from the haddocks'
1010
examples.
1111

12+
The central documentation can be found [here](http://haskell-servant.readthedocs.org/).
1213
Other blog posts, videos and slides can be found on the
1314
[website](http://haskell-servant.github.io/).
1415

doc/tutorial/tutorial.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: tutorial
22
version: 0.7
33
synopsis: The servant tutorial
4-
homepage: http://haskell-servant.github.io/
4+
homepage: http://haskell-servant.readthedocs.org/
55
license: BSD3
66
license-file: LICENSE
77
author: Servant Contributors

servant-blaze/servant-blaze.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: servant-blaze
55
version: 0.7
66
synopsis: Blaze-html support for servant
77
-- description:
8-
homepage: http://haskell-servant.github.io/
8+
homepage: http://haskell-servant.readthedocs.org/
99
license: BSD3
1010
license-file: LICENSE
1111
author: Servant Contributors

servant-cassava/servant-cassava.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: servant-cassava
55
version: 0.7
66
synopsis: Servant CSV content-type for cassava
77
-- description:
8-
homepage: http://haskell-servant.github.io/
8+
homepage: http://haskell-servant.readthedocs.org/
99
license: BSD3
1010
license-file: LICENSE
1111
author: Servant Contributors

servant-client/servant-client.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description:
55
This library lets you derive automatically Haskell functions that
66
let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice.
77
.
8-
See <http://haskell-servant.github.io/tutorial/client.html the client section of the tutorial>.
8+
See <http://haskell-servant.readthedocs.org/en/stable/tutorial/Client.html the client section of the tutorial>.
99
.
1010
<https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md CHANGELOG>
1111
license: BSD3
@@ -17,7 +17,7 @@ category: Web
1717
build-type: Simple
1818
cabal-version: >=1.10
1919
tested-with: GHC >= 7.8
20-
homepage: http://haskell-servant.github.io/
20+
homepage: http://haskell-servant.readthedocs.org/
2121
Bug-reports: http://github.com/haskell-servant/servant/issues
2222
extra-source-files:
2323
include/*.h

servant-docs/servant-docs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ category: Web
1616
build-type: Simple
1717
cabal-version: >=1.10
1818
tested-with: GHC >= 7.8
19-
homepage: http://haskell-servant.github.io/
19+
homepage: http://haskell-servant.readthedocs.org/
2020
Bug-reports: http://github.com/haskell-servant/servant/issues
2121
extra-source-files:
2222
include/*.h

servant-js/servant-js.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ copyright: 2015-2016 Servant Contributors
1919
category: Web
2020
build-type: Simple
2121
cabal-version: >=1.10
22-
homepage: http://haskell-servant.github.io/
22+
homepage: http://haskell-servant.readthedocs.org/
2323
Bug-reports: http://github.com/haskell-servant/servant/issues
2424
extra-source-files:
2525
include/*.h

servant-lucid/servant-lucid.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: servant-lucid
55
version: 0.7
66
synopsis: Servant support for lucid
77
-- description:
8-
homepage: http://haskell-servant.github.io/
8+
homepage: http://haskell-servant.readthedocs.org/
99
license: BSD3
1010
license-file: LICENSE
1111
author: Servant Contributors

servant-server/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ This library lets you *implement* an HTTP server with handlers for each endpoint
66

77
## Getting started
88

9-
We've written a [tutorial](http://haskell-servant.github.io/tutorial/) guide that introduces the core types and features of servant. After this article, you should be able to write your first servant webservices, learning the rest from the haddocks' examples.
10-
9+
We've written a [tutorial](http://haskell-servant.readthedocs.org/en/stable/tutorial/index.html) guide that introduces the core types and features of servant. After this article, you should be able to write your first servant webservices, learning the rest from the haddocks' examples.

servant-server/servant-server.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ synopsis: A family of combinators for defining webservices APIs and s
44
description:
55
A family of combinators for defining webservices APIs and serving them
66
.
7-
You can learn about the basics in the <http://haskell-servant.github.io/tutorial tutorial>.
7+
You can learn about the basics in the <http://haskell-servant.readthedocs.org/en/stable/tutorial/index.html tutorial>.
88
.
99
<https://github.com/haskell-servant/servant/blob/master/servant-server/example/greet.hs Here>
1010
is a runnable example, with comments, that defines a dummy API and implements
1111
a webserver that serves this API, using this package.
1212
.
1313
<https://github.com/haskell-servant/servant/blob/master/servant-server/CHANGELOG.md CHANGELOG>
14-
homepage: http://haskell-servant.github.io/
14+
homepage: http://haskell-servant.readthedocs.org/
1515
Bug-reports: http://github.com/haskell-servant/servant/issues
1616
license: BSD3
1717
license-file: LICENSE

0 commit comments

Comments
 (0)