From e0216781b04d9e4fbe712c4556b32656e41e286e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Thu, 21 Apr 2016 18:22:54 +0800 Subject: [PATCH] set the homepage to readthedocs --- README.md | 3 ++- doc/tutorial/tutorial.cabal | 2 +- servant-blaze/servant-blaze.cabal | 2 +- servant-cassava/servant-cassava.cabal | 2 +- servant-client/servant-client.cabal | 4 ++-- servant-docs/servant-docs.cabal | 2 +- servant-js/servant-js.cabal | 2 +- servant-lucid/servant-lucid.cabal | 2 +- servant-server/README.md | 3 +-- servant-server/servant-server.cabal | 4 ++-- servant/servant.cabal | 4 ++-- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 3cf786ea..9d3631a7 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,12 @@ ## Getting Started -We have a [tutorial](http://haskell-servant.github.io/tutorial) that +We have a [tutorial](http://haskell-servant.readthedocs.org/en/stable/tutorial/index.html) that introduces the core features of servant. After this article, you should be able to write your first servant webservices, learning the rest from the haddocks' examples. +The central documentation can be found [here](http://haskell-servant.readthedocs.org/). Other blog posts, videos and slides can be found on the [website](http://haskell-servant.github.io/). diff --git a/doc/tutorial/tutorial.cabal b/doc/tutorial/tutorial.cabal index badde620..4eb1d41c 100644 --- a/doc/tutorial/tutorial.cabal +++ b/doc/tutorial/tutorial.cabal @@ -1,7 +1,7 @@ name: tutorial version: 0.7 synopsis: The servant tutorial -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ license: BSD3 license-file: LICENSE author: Servant Contributors diff --git a/servant-blaze/servant-blaze.cabal b/servant-blaze/servant-blaze.cabal index c4203651..987e9a4c 100644 --- a/servant-blaze/servant-blaze.cabal +++ b/servant-blaze/servant-blaze.cabal @@ -5,7 +5,7 @@ name: servant-blaze version: 0.7 synopsis: Blaze-html support for servant -- description: -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ license: BSD3 license-file: LICENSE author: Servant Contributors diff --git a/servant-cassava/servant-cassava.cabal b/servant-cassava/servant-cassava.cabal index a336c4e8..800e4bcf 100644 --- a/servant-cassava/servant-cassava.cabal +++ b/servant-cassava/servant-cassava.cabal @@ -5,7 +5,7 @@ name: servant-cassava version: 0.7 synopsis: Servant CSV content-type for cassava -- description: -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ license: BSD3 license-file: LICENSE author: Servant Contributors diff --git a/servant-client/servant-client.cabal b/servant-client/servant-client.cabal index a1e42925..64164cf7 100644 --- a/servant-client/servant-client.cabal +++ b/servant-client/servant-client.cabal @@ -5,7 +5,7 @@ description: This library lets you derive automatically Haskell functions that let you query each endpoint of a webservice. . - See . + See . . license: BSD3 @@ -17,7 +17,7 @@ category: Web build-type: Simple cabal-version: >=1.10 tested-with: GHC >= 7.8 -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ Bug-reports: http://github.com/haskell-servant/servant/issues extra-source-files: include/*.h diff --git a/servant-docs/servant-docs.cabal b/servant-docs/servant-docs.cabal index 8ae8b810..dc7f19b3 100644 --- a/servant-docs/servant-docs.cabal +++ b/servant-docs/servant-docs.cabal @@ -16,7 +16,7 @@ category: Web build-type: Simple cabal-version: >=1.10 tested-with: GHC >= 7.8 -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ Bug-reports: http://github.com/haskell-servant/servant/issues extra-source-files: include/*.h diff --git a/servant-js/servant-js.cabal b/servant-js/servant-js.cabal index 13beb73c..6276bca6 100644 --- a/servant-js/servant-js.cabal +++ b/servant-js/servant-js.cabal @@ -19,7 +19,7 @@ copyright: 2015-2016 Servant Contributors category: Web build-type: Simple cabal-version: >=1.10 -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ Bug-reports: http://github.com/haskell-servant/servant/issues extra-source-files: include/*.h diff --git a/servant-lucid/servant-lucid.cabal b/servant-lucid/servant-lucid.cabal index 5b2199aa..cdaae66c 100644 --- a/servant-lucid/servant-lucid.cabal +++ b/servant-lucid/servant-lucid.cabal @@ -5,7 +5,7 @@ name: servant-lucid version: 0.7 synopsis: Servant support for lucid -- description: -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ license: BSD3 license-file: LICENSE author: Servant Contributors diff --git a/servant-server/README.md b/servant-server/README.md index 08842f19..b2a9ed00 100644 --- a/servant-server/README.md +++ b/servant-server/README.md @@ -6,5 +6,4 @@ This library lets you *implement* an HTTP server with handlers for each endpoint ## Getting started -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. - +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. diff --git a/servant-server/servant-server.cabal b/servant-server/servant-server.cabal index 321750db..e7012fdd 100644 --- a/servant-server/servant-server.cabal +++ b/servant-server/servant-server.cabal @@ -4,14 +4,14 @@ synopsis: A family of combinators for defining webservices APIs and s description: A family of combinators for defining webservices APIs and serving them . - You can learn about the basics in the . + You can learn about the basics in the . . is a runnable example, with comments, that defines a dummy API and implements a webserver that serves this API, using this package. . -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ Bug-reports: http://github.com/haskell-servant/servant/issues license: BSD3 license-file: LICENSE diff --git a/servant/servant.cabal b/servant/servant.cabal index 7e0a16f7..55cf4c17 100644 --- a/servant/servant.cabal +++ b/servant/servant.cabal @@ -4,10 +4,10 @@ synopsis: A family of combinators for defining webservices APIs description: A family of combinators for defining webservices APIs and serving them . - You can learn about the basics in the . + You can learn about the basics in the . . -homepage: http://haskell-servant.github.io/ +homepage: http://haskell-servant.readthedocs.org/ Bug-reports: http://github.com/haskell-servant/servant/issues license: BSD3 license-file: LICENSE