charade: Rapid prototyping websites with Snap and Heist

[ bsd3, library, program, web ] [ Propose Tags ]

Charade is a tool for rapid website prototyping using Heist and Snap. Charade-generated sites can easily be dropped into Snap applications and work out of the box with no modification.

The main thing provided by this package is the charade executable that serves your prototype sites. The library provided contains a Heist splice that you use to make all evidence of charade disappear in your production app.

For more information, see the README: https://github.com/soostone/charade/blob/master/README.md


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.1.1, 0.1.1.2
Dependencies base (>=4 && <5), configurator (>=0.2 && <0.4), containers (>=0.5 && <0.6), filepath (>=1.3 && <1.4), heist (>=0.13 && <0.15), lens (>=4.0 && <4.5), mtl (>=2.0 && <2.3), QuickCheck (>=2.7 && <2.8), random (>=1.0 && <1.2), snap (>=0.13 && <0.14), snap-core (>=0.9 && <0.10), snap-extras (>=0.7 && <0.10), snap-server (>=0.9 && <0.10), text (>=0.11 && <1.2), xmlhtml (>=0.2 && <0.3) [details]
License BSD-3-Clause
Author Doug Beardsley
Maintainer doug.beardsley@soostone.com
Category Web
Home page https://github.com/soostone/charade
Source repo head: git clone https://github.com/Soostone/charade.git
Uploaded by DougBeardsley at 2014-11-07T18:04:24Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables charade
Downloads 2866 total (7 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for charade-0.1.1.2

[back to package description]

charade Build Status

Haskell program that fills Heist templates with randomly generated data in support of rapid UI prototyping.

To see charade in action follow these steps:

  1. git clone https://github.com/Soostone/charade.git
  2. cd charade
  3. cabal install
  4. dist/build/charade/charade
  5. Point your browser at http://localhost:8000
  6. Look in templates/index.tpl to see how this example works

Charade lets you prototype a site's HTML/CSS/JavaScript using exactly the Heist template markup that you will have in your final site, without needing to write any of the backend code to implement your splices. Every time you use a tag implemented as a Haskell splice, just include the "fake" attribute telling charade how to render dummy data for that tag.

Charade decouples the work of designers and backend developers. A site could be started by designers who have a good picture of what they want the front-end interface to look like using just a small amount of knowledge about splice tags should be structured. Then developers could be hired to fill in the back end. Alternatively, back end developers could start by developing a site's data model and back end. Then they could hire designers to build the look and feel without needing to set up any back end database infrastructure or give them an application binary. This allows designers to work in an environment much closer to what will ultimately be used in production.

The charade application is a snap application that serves Heist templates and static files. The charade application allows you to add a "fake" attribute anywhere in your HTML to generate fake data in the place of that tag. For instance, in the following paragraph charade will replace the <myParagraph> tag with a paragraph of lorem ipsum text.

<p>
  <myParagraph fake="lorem"/>
</p>

Charade provides the following built-in primitives for generating dummy content with the "fake" attribute:

  • bool - true/false
  • yesno - yes/no
  • int <min> <max> - an integer in the interval [min,max]
  • decimal <min> <max> - a decimal in the interval [min,max]
  • list - a list of 5 copies of its child nodes
  • list <count> - a list of <count> copies of its child nodes
  • list <min> <max> - a randomly sized list
  • lorem - a paragraph of lorem ipsum text
  • lorem <count> - a paragraph of lorem ipsum text repeated <count> times
  • first-name - randomly chosen English first names
  • last-name - randomly chosen English last names
  • enum - arbitrary enumerations specified in a file

The charade application also requires a file "charade.cfg" in the current directory for configuration. The config file should look like this:

# Select whether random data is generated every request or only once when the
# app is initialized.  If you specify "dynamic" here, then new random data
# will be generated every request.  If you specify "static", then random data
# will be generated once and every request will see the same data.
mode = "dynamic"

# Directory holding Heist templates
tdir = "snaplets/heist/templates"

# List of files with custom enumerations for random generation
enums = ["titles.txt"]

# Directory where static resources are located
staticDir = "static"

# Route for accessing static data
staticRoute = ""