Changeset 7619
- Timestamp:
- 09/24/07 22:50:43 (2 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/html/422.html (added)
- trunk/railties/html/500.html (modified) (1 diff)
- trunk/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r7601 r7619 1 1 *SVN* 2 3 * Added a default 422.html page to be rendered when ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, or ActionController::InvalidToken is raised [DHH] 2 4 3 5 * Added --skip-fixture option to script/generate model #6862 [sandofsky] trunk/railties/html/500.html
r5306 r7619 6 6 <head> 7 7 <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 8 <title>We're sorry, but something went wrong </title>8 <title>We're sorry, but something went wrong (500)</title> 9 9 <style type="text/css"> 10 10 body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; } trunk/railties/Rakefile
r6881 r7619 67 67 68 68 LOG_FILES = %w( server.log development.log test.log production.log ) 69 HTML_FILES = %w( 4 04.html 500.html index.html robots.txt favicon.ico images/rails.png69 HTML_FILES = %w( 422.html 404.html 500.html index.html robots.txt favicon.ico images/rails.png 70 70 javascripts/prototype.js javascripts/application.js 71 71 javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js )