Difference between revisions of "Web/Libraries/Templating"

From HaskellWiki
< Web‎ | Libraries
Jump to navigation Jump to search
m (Adding info box)
(Use tables)
Line 6: Line 6:
 
Hamlet's main goal is to provide you with fully type-safe templates. It uses Haskell's quasi-quoting facilities so that everything is checked at compile time. Unlike using an HTML combinator library, it uses a more intuitive syntax for defining your templates: a Haml-inspired syntax to be precise. It also has support for type-safe URLs, and achieves very high performance by being based on BlazeHtml and performing compile-time optimizations.
 
Hamlet's main goal is to provide you with fully type-safe templates. It uses Haskell's quasi-quoting facilities so that everything is checked at compile time. Unlike using an HTML combinator library, it uses a more intuitive syntax for defining your templates: a Haml-inspired syntax to be precise. It also has support for type-safe URLs, and achieves very high performance by being based on BlazeHtml and performing compile-time optimizations.
   
  +
{| class="wikitable"
'''License:''' BSD3
+
! License:
 
  +
| BSD3
'''Author:''' Michael Snoyman <michael@snoyman.com>
 
  +
|-
 
  +
! Author:
'''Maintainer:''' Michael Snoyman <michael@snoyman.com>
 
 
| Michael Snoyman <michael@snoyman.com>
 
  +
|-
'''Home page:''' http://docs.yesodweb.com/
 
  +
! Maintainer:
 
 
| Michael Snoyman <michael@snoyman.com>
'''Package & repositories'''
 
  +
|-
 
  +
! Home page:
* Hackage: http://hackage.haskell.org/package/hamlet
 
* Github: http://github.com/snoyberg/hamlet
+
| http://docs.yesodweb.com/
  +
|-
 
! Package & repositories
  +
| [http://hackage.haskell.org/package/hamlet Hackage] - [http://github.com/snoyberg/hamlet Github]
  +
|}
   
 
== HStringTemplate ==
 
== HStringTemplate ==
Line 25: Line 29:
 
[[HStringTemplate|More information on the Wiki page]]
 
[[HStringTemplate|More information on the Wiki page]]
   
  +
{| class="wikitable"
'''License:''' BSD3
+
! License:
 
  +
| BSD3
'''Author:''' Sterling Clover
 
  +
|-
 
  +
! Author:
'''Maintainer:''' s.clover@gmail.com
 
 
| Sterling Clover
 
  +
|-
'''Package & repositories'''
 
  +
! Maintainer:
 
 
| s.clover@gmail.com
* Hackage: http://hackage.haskell.org/package/HStringTemplate
 
  +
|-
* Darcs: http://code.haskell.org/HStringTemplate/
 
 
! Package & repositories
 
| [http://hackage.haskell.org/package/HStringTemplate Hackage] - [http://code.haskell.org/HStringTemplate/ Darcs]
  +
|}

Revision as of 00:17, 4 October 2010

Haskell Web Development

Software:
Servers - Libraries - Frameworks
Deploy - Cloud
Interfaces to frameworks
Databases and Persistence
Testing and Verification
Content Management

Community & Research:
Forums and Discussion
Literature (research, talks and blogs)
Existing Haskell web applications
Ongoing projects and ideas

Hamlet

Hamlet's main goal is to provide you with fully type-safe templates. It uses Haskell's quasi-quoting facilities so that everything is checked at compile time. Unlike using an HTML combinator library, it uses a more intuitive syntax for defining your templates: a Haml-inspired syntax to be precise. It also has support for type-safe URLs, and achieves very high performance by being based on BlazeHtml and performing compile-time optimizations.

License: BSD3
Author: Michael Snoyman <michael@snoyman.com>
Maintainer: Michael Snoyman <michael@snoyman.com>
Home page: http://docs.yesodweb.com/
Package & repositories Hackage - Github

HStringTemplate

HStringTemplate is a Haskell-ish port of the Java StringTemplate library by Terrence Parr, ported by Sterling Clover. It can be used for any templating purpose, but is often used for dynamically generated web pages.

More information on the Wiki page

License: BSD3
Author: Sterling Clover
Maintainer: s.clover@gmail.com
Package & repositories Hackage - Darcs