aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.erb
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary `ERB::Util::h`Ryunosuke SATO2013-01-051-6/+6
| | | | It is automatically applied when strings is unsafe for html.
* Fix a number of validation/style errors:Sam Ruby2013-01-021-4/+3
| | | | | | | | | | * <pre> is not allowed to be nested inside of <p> elements in HTML * Indentation of </p> doesn't match corresponding <p> * <p> element not explicitly closed * One more </div> than <div> In each case, the template was fixed to match how a HTML5 parser would "see" the resulting page.
* Add style to AV::Template::Error exception pageGuillermo Iguaran2012-12-311-13/+40
|
* 1.9 hash syntax changes to docsAvnerCohen2012-10-311-2/+2
|
* render :template is faster than render :fileSantiago Pastorino2011-01-011-3/+2
|
* This is not needed anymoreSantiago Pastorino2011-01-011-3/+0
|
* Extract ActionController rescue templates into Rescue and ShowExceptions ↵Joshua Peek2009-05-021-0/+21
middleware. This commit breaks all exception catching plugins like ExceptionNotifier. These plugins should be rewritten as middleware instead overriding Controller#rescue_action_in_public.