generate RSA and DSA keys, read and write PEM files, generate message
digests, sign and verify messages, encrypt and decrypt messages. It has
also some capabilities of creating SSL clients and servers.
WWW: https://github.com/phonohawk/HsOpenSSL
Obtained from: FreeBSD Haskell
It also affords space efficient code, highly concurrent loads, and
portability to many deployment backends (via the wai package), from CGI
to stand-alone serving. Yesod also focuses on developer productivity.
Yesod integrates well with tools for all your basic web development (wai,
persistent, and shakespeare/hamlet).
WWW: http://www.yesodweb.com/
Obtained from: FreeBSD Haskell
application that have strong compile-time guarantees of correctness. It
also affords space efficient code and portability to many deployment
backends, from CGI to stand-alone serving.
WWW: http://www.yesodweb.com/
Obtained from: FreeBSD Haskell
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted. In this case, the
variable type needs a ToText instance.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted. In this case, the
variable type needs a ToJavascript instance.
There is also shakespeare-coffeescript for coffeescript templates.
Coffescript is a language that compiles down to javascript. It expects
a coffeescript compiler in your path, and variable should be a ToCoffee
instance.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell
translated content. It has a simple syntax for translators, while
allowing the ful power of Haskell for applying complex grammar rules.
WWW: http://www.yesodweb.com/book/i18n
Obtained from: FreeBSD Haskell
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted. In this case, the
variable type needs a ToCss instance.
This package contains 2 CSS template languages. The Cassius language
uses whitespace to avoid the need for closing brackets and semi-colons.
Lucius does not care about whitespace and is a strict superset of CSS.
There are also some significant conveniences added for CSS.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell
messages, functions for automatically composing these into bytestrings,
and the ability to send bytestrings via the sendmail executable. You
can also use any other library you wish to send via different methods,
eg directly to SMTP.
WWW: http://github.com/snoyberg/mime-mail
Obtained from: FreeBSD Haskell
via Quasi-Quoting, and generating extremely efficient output code. The
syntax is white-space sensitive, and it helps you avoid cross-site
scripting issues and 404 errors.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell
Parsing and emitting is handled by the yaml package, which in turn uses
the libyaml C library.
WWW: http://github.com/snoyberg/data-object-yaml
Obtained from: FreeBSD Haskell
This package includes the full libyaml C library version 0.1.2 by Kirill
Simonov in the package so you don't need to worry about any non-Haskell
dependencies.
WWW: http://github.com/snoyberg/yaml/
Obtained from: FreeBSD Haskell
providing a representation in a separate repository, other libraries can
share a single representation of these structures.
WWW: http://github.com/snoyberg/data-object/tree/master
Obtained from: FreeBSD Haskell
distinguish between conversions which are guaranteed to succeed and
those which might fail. It uses the attempt package, which in turn uses
the failure package, so that this package is fully compatible with the
failure framework.
This package currently contains all of the typeclasses and instances for
convertible. However, as these features are ported to the convertible
package, this package will be left with only the instances for
converting to and from text types (String, ByteString (lazy and strict)
and Text (lazy and strict).
Be aware that conversions to and from bytestrings assume UTF-8 encoding.
If a different encoding is desired, you can use a newtype wrapper and
declare an instance of ConvertAttempt or ConvertSuccess on it.
WWW: http://github.com/snoyberg/convertible/tree/text
Obtained from: FreeBSD Haskell
based on the datatypes found in the xml-types package. This package is
broken up into the following modules:
* Text.XML: DOM-based parsing and rendering. This is the most commonly
used module.
* Text.XML.Cursor: A wrapper around Text.XML which allows bidirectional
traversing of the DOM, similar to XPath.
* Text.XML.Unresolved: A slight modification to Text.XML which does not
require all entities to be resolved at parsing. The datatypes are
slightly more complicated here, and therefore this module is only
recommended when you need to deal directly with raw entities.
* Text.XML.Stream.Parse: Streaming parser, including some streaming
parser combinators.
* Text.XML.Stream.Render: Streaming renderer.
WWW: http://github.com/snoyberg/xml
Obtained from: FreeBSD Haskell
connection. It also provides higher-level functions which allow you to
avoid direct usage of enumerators.
WWW: http://github.com/snoyberg/http-enumerator
Obtained from: FreeBSD Haskell
client.
This provides a high-level implementation of a sensitive security
protocol, eliminating a common set of security issues through the use of
the advanced type system, high level constructions and common Haskell
features.
Currently implement the SSL3.0, TLS1.0, TLS1.1 and TLS1.2 protocol, with
only RSA supported for Key Exchange.
WWW: http://github.com/vincenthz/hs-tls
Obtained from: FreeBSD Haskell