yesod-core-1.1.2.1: Creation of type-safe, RESTful web applications.

Safe HaskellNone

Yesod.Content

Contents

Synopsis

Content

emptyContent :: ContentSource

Zero-length enumerator.

class ToContent a whereSource

Anything which can be converted into Content. Most of the time, you will want to use the ContentBuilder constructor. An easier approach will be to use a pre-defined toContent function, such as converting your data into a lazy bytestring and then calling toContent on that.

Please note that the built-in instances for lazy data structures (String, lazy ByteString, lazy Text and Html) will not automatically include the content length for the ContentBuilder constructor.

Methods

toContent :: a -> ContentSource

Mime types

Data type

Utilities

simpleContentType :: ContentType -> ContentTypeSource

Removes "extra" information at the end of a content type string. In particular, removes everything after the semicolon, if present.

For example, "text/html; charset=utf-8" is commonly used to specify the character encoding for HTML data. This function would return "text/html".

Evaluation strategy

newtype DontFullyEvaluate a Source

Prevents a response body from being fully evaluated before sending the request.

Since 1.1.0

Constructors

DontFullyEvaluate a 

Representations

type ChooseRepSource

Arguments

 = [ContentType]

list of content-types user accepts, ordered by preference

-> IO (ContentType, Content) 

A function which gives targetted representations of content based on the content-types the user accepts.

defChooseRep :: [(ContentType, a -> IO Content)] -> a -> ChooseRepSource

A helper method for generating HasReps instances.

This function should be given a list of pairs of content type and conversion functions. If none of the content types match, the first pair is used.

Specific content types

newtype RepHtml Source

Constructors

RepHtml Content 

Instances

newtype RepJson Source

Constructors

RepJson Content 

Instances

newtype RepPlain Source

Constructors

RepPlain Content 

Instances

newtype RepXml Source

Constructors

RepXml Content 

Instances

Utilities

formatW3 :: UTCTime -> TextSource

Format a UTCTime in W3 format.

formatRFC1123 :: UTCTime -> TextSource

Format as per RFC 1123.

formatRFC822 :: UTCTime -> TextSource

Format as per RFC 822.