Sha256: fcaf188625c61c6d565aa459bef6c766c9d925eb352e51e2fc89326c80530a65
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
<% def html_escape str str.gsub( '<', '<').gsub( '>', '>').gsub('&', '&') end %> <?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Internal Error</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="Stylesheet" href="../../static_style_sheet/" type="text/css" media="screen" /> </head> <body> <h3>An error has occured!</h3> <p>We're sorry, we're not perfect... but we want to be! If you have the time, please go to the pimki <a href="http://rubyforge.org/tracker/?atid=1750&group_id=447&func=browse">BUG tracker</a> at RubyForge and open a bug report. Please supply a short description of what you did when this happended, the system you're on, etc. and paste everything below this line in the bug report. It will greatly help in development. Thank you for your efforts!</p> <hr /> <p><b>Error message:</b> <code style="color:red"><%= html_escape @error_details.message %></code> </p> <p><b>Action:</b> <%= @action_name %></p> <p><b>Request:</b> <%= @req %></p> <p><b>Backtrace:</b></p> <p><table border="0"> <% for line in @error_details.backtrace %> <tr><td><code><%= line.sub(/(.*)\/(\w+\.rb):(\d+):in (.*)/, '\1/<b>\2</b>:\3:in <b>\4</b>') %></code></td></tr> <% end %> </p> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
Pimki-1.7.092 | app/views/error.rhtml |