Sha256: 73e1cc693a594789b91139769a09ec01aca00a67d8a2b8e9b10fd646c8c2ad2c
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
Pimki-1.8.092 | app/views/error.rhtml |
Pimki-1.8.200 | app/views/error.rhtml |