Skip to content

Commit

Permalink
Doc link updates
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed Dec 21, 2014
1 parent f330802 commit bed6daf
Show file tree
Hide file tree
Showing 28 changed files with 78 additions and 44 deletions.
File renamed without changes.
3 changes: 3 additions & 0 deletions yesod-auth-oauth/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## yesod-auth-oauth

Oauth Authentication for Yesod.
5 changes: 3 additions & 2 deletions yesod-auth-oauth/yesod-auth-oauth.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand Down
11 changes: 11 additions & 0 deletions yesod-auth/README.md
Original file line number Diff line number Diff line change
@@ -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.
13 changes: 4 additions & 9 deletions yesod-auth/yesod-auth.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions yesod-core/yesod-core.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: yesod-core
version: 1.4.7
version: 1.4.7.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <[email protected]>
maintainer: Michael Snoyman <[email protected]>
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
Expand Down
1 change: 1 addition & 0 deletions yesod-eventsource/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
No changes logged yet
16 changes: 16 additions & 0 deletions yesod-eventsource/README.md
Original file line number Diff line number Diff line change
@@ -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).
19 changes: 3 additions & 16 deletions yesod-eventsource/yesod-eventsource.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: yesod-eventsource
version: 1.4.0
version: 1.4.0.1
license: MIT
license-file: LICENSE
author: Felipe Lessa <[email protected]>
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions yesod-form/yesod-form.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: yesod-form
version: 1.4.3
version: 1.4.3.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <[email protected]>
Expand All @@ -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

Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions yesod-newsfeed/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## yesod-newsfeed

Helper functions and data types for producing News feeds.
5 changes: 3 additions & 2 deletions yesod-newsfeed/yesod-newsfeed.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions yesod-persistent/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
No changes logged yet
Empty file removed yesod-persistent/README
Empty file.
3 changes: 3 additions & 0 deletions yesod-persistent/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## yesod-persistent

Some helpers for using Persistent from Yesod.
5 changes: 3 additions & 2 deletions yesod-persistent/yesod-persistent.cabal
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
Expand All @@ -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
Expand Down
File renamed without changes.
Empty file removed yesod-sitemap/README
Empty file.
3 changes: 3 additions & 0 deletions yesod-sitemap/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## yesod-sitemap

Generate XML sitemaps.
5 changes: 3 additions & 2 deletions yesod-sitemap/yesod-sitemap.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: yesod-sitemap
version: 1.4.0
version: 1.4.0.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <[email protected]>
Expand All @@ -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
Expand Down
Empty file removed yesod-static/README
Empty file.
3 changes: 3 additions & 0 deletions yesod-static/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## yesod-static

Static file serving subsite for Yesod Web Framework.
5 changes: 3 additions & 2 deletions yesod-static/yesod-static.cabal
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions yesod-test/yesod-test.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: yesod-test
version: 1.4.2
version: 1.4.2.1
license: MIT
license-file: LICENSE
author: Nubis <[email protected]>
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions yesod-websockets/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
No changes logged yet
4 changes: 3 additions & 1 deletion yesod-websockets/yesod-websockets.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -10,6 +10,8 @@ maintainer: [email protected]
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
Expand Down
4 changes: 2 additions & 2 deletions yesod/yesod.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: yesod
version: 1.4.1.2
version: 1.4.1.3
license: MIT
license-file: LICENSE
author: Michael Snoyman <[email protected]>
maintainer: Michael Snoyman <[email protected]>
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
Expand Down

0 comments on commit bed6daf

Please sign in to comment.