Merge from vendor branch TNF:
authorjlam <jlam>
Fri, 4 Apr 2008 15:24:15 +0000 (15:24 +0000)
committerjlam <jlam>
Fri, 4 Apr 2008 15:24:15 +0000 (15:24 +0000)
commit738383728a04671ab16af17cf963b7f59d606dd0
treec9e5034003f1e680a581490b7f801e8254b9d2c9
parent2f99e0d38049bfa5c26190c22d1356e47fe9f56b
parent7671ce77a67fc2e1559efcc9acd01a1a7f47d934
Merge from vendor branch TNF:
Initial import of merb-has-flash-0.9.2 as www/merb-has-flash.

Merb_has_flash is a plugin for the Merb framework that provides Rails-style
flash.

The ``flash'' provides a way to pass temporary objects between actions.
Anything you place in the flash will be exposed to the very next action
and then cleared out.  This is a great way of doing notices and alerts,
such as a create action that sets

flash[:notice] = "Successfully created"

before redirecting to a display action that can then expose the flash
to its template.