Doc link updates

This commit is contained in:
Michael Snoyman 2014-12-21 15:23:52 +02:00
parent f3308026a7
commit bed6dafce8
28 changed files with 78 additions and 44 deletions

View file

@ -0,0 +1,3 @@
## yesod-auth-oauth
Oauth Authentication for Yesod.

View file

@ -1,5 +1,5 @@
name: yesod-auth-oauth
version: 1.4.0
version: 1.4.0.1
license: BSD3
license-file: LICENSE
author: Hiromi Ishii
@ -10,7 +10,8 @@ stability: Stable
cabal-version: >= 1.6.0
build-type: Simple
homepage: http://www.yesodweb.com/
description: Oauth Authentication for Yesod.
description: API docs and the README are available at <http://www.stackage.org/package/yesod-auth-oauth>
extra-source-files: README.md ChangeLog.md
flag ghc7

11
yesod-auth/README.md Normal file
View file

@ -0,0 +1,11 @@
## yesod-auth
This package provides a pluggable mechanism for allowing users to authenticate
with your site. It comes with a number of common plugins, such as OpenID,
BrowserID (a.k.a., Mozilla Persona), and email. Other packages are available
from Hackage as well. If you've written such an add-on, please notify me so
that it can be added to this description.
* [yesod-auth-account](http://hackage.haskell.org/package/yesod-auth-account): An account authentication plugin for Yesod
* [yesod-auth-hashdb](http://www.stackage.org/package/yesod-auth-hashdb): The HashDB module previously packaged in yesod-auth, now with stronger, but compatible, security.
* [yesod-auth-bcrypt](https://github.com/ollieh/yesod-auth-bcrypt/): An alternative to the HashDB module.

View file

@ -1,5 +1,5 @@
name: yesod-auth
version: 1.4.1
version: 1.4.1.1
license: MIT
license-file: LICENSE
author: Michael Snoyman, Patrick Brisbin
@ -10,15 +10,10 @@ stability: Stable
cabal-version: >= 1.6.0
build-type: Simple
homepage: http://www.yesodweb.com/
description:
This package provides a pluggable mechanism for allowing users to authenticate with your site. It comes with a number of common plugins, such as OpenID, BrowserID (a.k.a., Mozilla Persona), and email. Other packages are available from Hackage as well. If you've written such an add-on, please notify me so that it can be added to this description.
.
* <http://hackage.haskell.org/package/yesod-auth-account>: An account authentication plugin for Yesod
.
* <http://hackage.haskell.org/package/yesod-auth-hashdb>: The HashDB module previously packaged in yesod-auth, now with stronger, but compatible, security.
.
* <https://github.com/ollieh/yesod-auth-bcrypt/>: An alternative to the HashDB module.
description: API docs and the README are available at <http://www.stackage.org/package/yesod-auth>
extra-source-files: persona_sign_in_blue.png
README.md
ChangeLog.md
flag network-uri
description: Get Network.URI from the network-uri package

View file

@ -1,11 +1,11 @@
name: yesod-core
version: 1.4.7
version: 1.4.7.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>
synopsis: Creation of type-safe, RESTful web applications.
description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/yesod-core>.
description: API docs and the README are available at <http://www.stackage.org/package/yesod-core>
category: Web, Yesod
stability: Stable
cabal-version: >= 1.8

View file

@ -0,0 +1 @@
No changes logged yet

View file

@ -0,0 +1,16 @@
## yesod-eventsource
It's easy to send an event from an HTTP client to a server:
just send an HTTP request. However, sending events from the
server to the client requires more sophisticated approaches.
[Server-sent events](http://www.w3.org/TR/eventsource/) are a
standardized way of pushing events from the server to the
client.
This package allows your Yesod application to easily send
server-sent events. On the client side, you may use the
`EventSource` JavaScript object on browsers that support it
(https://developer.mozilla.org/en-US/docs/Server-sent_events/EventSource)
or a polyfill for browsers that don't (we support Remy's
polyfill out-of-the-box, although that requires you to
explicitly support it).

View file

@ -1,5 +1,5 @@
name: yesod-eventsource
version: 1.4.0
version: 1.4.0.1
license: MIT
license-file: LICENSE
author: Felipe Lessa <felipe.lessa@gmail.com>
@ -10,21 +10,8 @@ stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://www.yesodweb.com/
description:
It's easy to send an event from an HTTP client to a server:
just send an HTTP request. However, sending events from the
server to the client requires more sophisticated approaches.
Server-sent events (<http://www.w3.org/TR/eventsource/>) are a
standardized way of pushing events from the server to the
client.
.
This package allows your Yesod application to easily send
server-sent events. On the client side, you may use the
@EventSource@ JavaScript object on browsers that support it
(<https://developer.mozilla.org/en-US/docs/Server-sent_events/EventSource>)
or a polyfill for browsers that don't (we support Remy's
polyfill out-of-the-box, although that requires you to
explicitly support it).
description: API docs and the README are available at <http://www.stackage.org/package/yesod-eventsource>
extra-source-files: README.md ChangeLog.md
library
build-depends: base >= 4 && < 5

View file

@ -1,5 +1,5 @@
name: yesod-form
version: 1.4.3
version: 1.4.3.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
@ -10,7 +10,7 @@ stability: Stable
cabal-version: >= 1.8
build-type: Simple
homepage: http://www.yesodweb.com/
description: Form handling support for Yesod Web Framework
description: API docs and the README are available at <http://www.stackage.org/package/yesod-form>
extra-source-files: ChangeLog.md
README.md

3
yesod-newsfeed/README.md Normal file
View file

@ -0,0 +1,3 @@
## yesod-newsfeed
Helper functions and data types for producing News feeds.

View file

@ -1,5 +1,5 @@
name: yesod-newsfeed
version: 1.4.0
version: 1.4.0.1
license: MIT
license-file: LICENSE
author: Michael Snoyman, Patrick Brisbin
@ -10,7 +10,8 @@ stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://www.yesodweb.com/
description: Helper functions and data types for producing News feeds.
description: API docs and the README are available at <http://www.stackage.org/package/yesod-newsfeed>
extra-source-files: README.md ChangeLog.md
library
build-depends: base >= 4 && < 5

View file

@ -0,0 +1 @@
No changes logged yet

View file

@ -0,0 +1,3 @@
## yesod-persistent
Some helpers for using Persistent from Yesod.

View file

@ -1,5 +1,5 @@
name: yesod-persistent
version: 1.4.0.1
version: 1.4.0.2
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
@ -10,7 +10,8 @@ stability: Stable
cabal-version: >= 1.8
build-type: Simple
homepage: http://www.yesodweb.com/
description: Some helpers for using Persistent from Yesod.
description: API docs and the README are available at <http://www.stackage.org/package/yesod-persistent>
extra-source-files: README.md ChangeLog.md
library
build-depends: base >= 4 && < 5

View file

3
yesod-sitemap/README.md Normal file
View file

@ -0,0 +1,3 @@
## yesod-sitemap
Generate XML sitemaps.

View file

@ -1,5 +1,5 @@
name: yesod-sitemap
version: 1.4.0
version: 1.4.0.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
@ -10,7 +10,8 @@ stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://www.yesodweb.com/
description: Generate XML sitemaps.
description: API docs and the README are available at <http://www.stackage.org/package/yesod-sitemap>
extra-source-files: README.md ChangeLog.md
library
build-depends: base >= 4 && < 5

View file

3
yesod-static/README.md Normal file
View file

@ -0,0 +1,3 @@
## yesod-static
Static file serving subsite for Yesod Web Framework.

View file

@ -1,5 +1,5 @@
name: yesod-static
version: 1.4.0.3
version: 1.4.0.4
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
@ -10,7 +10,7 @@ stability: Stable
cabal-version: >= 1.8
build-type: Simple
homepage: http://www.yesodweb.com/
description: Static file serving subsite for Yesod Web Framework.
description: API docs and the README are available at <http://www.stackage.org/package/yesod-static>
extra-source-files:
sample.hs
sample-embed.hs
@ -23,6 +23,7 @@ extra-source-files:
test/embed-dir/lorem.txt
test/embed-dir/abc/def.txt
ChangeLog.md
README.md
library
build-depends: base >= 4 && < 5

View file

@ -1,5 +1,5 @@
name: yesod-test
version: 1.4.2
version: 1.4.2.1
license: MIT
license-file: LICENSE
author: Nubis <nubis@woobiz.com.ar>
@ -10,7 +10,7 @@ stability: Experimental
cabal-version: >= 1.8
build-type: Simple
homepage: http://www.yesodweb.com
description: Behaviour Oriented integration Testing for Yesod Applications
description: API docs and the README are available at <http://www.stackage.org/package/yesod-test>
extra-source-files: README.md, LICENSE, test/main.hs, ChangeLog.md
library

View file

@ -0,0 +1 @@
No changes logged yet

View file

@ -1,5 +1,5 @@
name: yesod-websockets
version: 0.2.1
version: 0.2.1.1
synopsis: WebSockets support for Yesod
description: WebSockets support for Yesod
homepage: https://github.com/yesodweb/yesod
@ -10,6 +10,8 @@ maintainer: michael@snoyman.com
category: Web
build-type: Simple
cabal-version: >=1.8
description: API docs and the README are available at <http://www.stackage.org/package/yesod-websockets>
extra-source-files: README.md ChangeLog.md
library
exposed-modules: Yesod.WebSockets

View file

@ -1,11 +1,11 @@
name: yesod
version: 1.4.1.2
version: 1.4.1.3
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>
synopsis: Creation of type-safe, RESTful web applications.
description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/yesod>.
description: API docs and the README are available at <http://www.stackage.org/package/yesod>
category: Web, Yesod
stability: Stable
cabal-version: >= 1.6