-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
78 additions
and
44 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## yesod-auth-oauth | ||
|
||
Oauth Authentication for Yesod. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
No changes logged yet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> | ||
|
@@ -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 | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
No changes logged yet |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## yesod-persistent | ||
|
||
Some helpers for using Persistent from Yesod. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> | ||
|
@@ -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 | ||
|
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## yesod-sitemap | ||
|
||
Generate XML sitemaps. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> | ||
|
@@ -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 | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## yesod-static | ||
|
||
Static file serving subsite for Yesod Web Framework. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
No changes logged yet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|