87 lines
3.3 KiB
Plaintext
87 lines
3.3 KiB
Plaintext
name: yesod-form
|
|
version: 1.4.8
|
|
license: MIT
|
|
license-file: LICENSE
|
|
author: Michael Snoyman <michael@snoyman.com>
|
|
maintainer: Michael Snoyman <michael@snoyman.com>
|
|
synopsis: Form handling support for Yesod Web Framework
|
|
category: Web, Yesod
|
|
stability: Stable
|
|
cabal-version: >= 1.8
|
|
build-type: Simple
|
|
homepage: http://www.yesodweb.com/
|
|
description: API docs and the README are available at <http://www.stackage.org/package/yesod-form>. Third-party packages which you can find useful: <http://hackage.haskell.org/package/yesod-form-richtext yesod-form-richtext> - richtext form fields (currntly it provides only Summernote support).
|
|
extra-source-files: ChangeLog.md
|
|
README.md
|
|
|
|
flag network-uri
|
|
description: Get Network.URI from the network-uri package
|
|
default: True
|
|
|
|
library
|
|
build-depends: base >= 4 && < 5
|
|
, yesod-core >= 1.4.14 && < 1.5
|
|
, yesod-persistent >= 1.4 && < 1.5
|
|
, time >= 1.1.4
|
|
, shakespeare >= 2.0
|
|
, persistent
|
|
, template-haskell
|
|
, transformers >= 0.2.2
|
|
, data-default
|
|
, xss-sanitize >= 0.3.0.1
|
|
, blaze-builder >= 0.2.1.4
|
|
, email-validate >= 1.0
|
|
, bytestring >= 0.9.1.4
|
|
, text >= 0.9
|
|
, wai >= 1.3
|
|
, containers >= 0.2
|
|
, blaze-html >= 0.5
|
|
, blaze-markup >= 0.5.1
|
|
, attoparsec >= 0.10
|
|
, byteable
|
|
, aeson
|
|
, resourcet
|
|
, semigroups
|
|
|
|
if flag(network-uri)
|
|
build-depends: network-uri >= 2.6
|
|
else
|
|
build-depends: network < 2.6
|
|
|
|
exposed-modules: Yesod.Form
|
|
Yesod.Form.Types
|
|
Yesod.Form.Functions
|
|
Yesod.Form.Bootstrap3
|
|
Yesod.Form.Input
|
|
Yesod.Form.Fields
|
|
Yesod.Form.Jquery
|
|
Yesod.Form.Nic
|
|
Yesod.Form.MassInput
|
|
Yesod.Form.I18n.English
|
|
Yesod.Form.I18n.Portuguese
|
|
Yesod.Form.I18n.Swedish
|
|
Yesod.Form.I18n.German
|
|
Yesod.Form.I18n.French
|
|
Yesod.Form.I18n.Norwegian
|
|
Yesod.Form.I18n.Japanese
|
|
Yesod.Form.I18n.Czech
|
|
Yesod.Form.I18n.Russian
|
|
Yesod.Form.I18n.Dutch
|
|
Yesod.Form.I18n.Spanish
|
|
-- FIXME Yesod.Helpers.Crud
|
|
ghc-options: -Wall
|
|
|
|
test-suite test
|
|
type: exitcode-stdio-1.0
|
|
main-is: main.hs
|
|
hs-source-dirs: test
|
|
build-depends: base
|
|
, yesod-form
|
|
, time
|
|
, hspec
|
|
, text
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/yesodweb/yesod
|