Sha256: d640ae6cf8f7f99dba88f78b681f5319c09f4f42347a40c212e9c69ddaa8dae0
Contents?: true
Size: 888 Bytes
Versions: 50
Compression:
Stored size: 888 Bytes
Contents
<% redcar_css = File.expand_path(File.join(Redcar.root, %w(plugins html_view assets redcar.css))) %> <link rel="stylesheet" href="file://<%= redcar_css %>" type="text/css" media="screen"> <h3>Command History</h3> <a href="controller/index">Refresh</a> <table> <tr> <th>Completed</th> <th>Description</th> </tr> <% Redcar.app.history.reverse.each do |command| %> <tr class="<%= "error" if command.error %>"> <td><%#= command.completed_time.strftime("%X") %></td> <td><%= CGI.escapeHTML(command.class.to_s) %></td> </tr> <% if e = command.error %> <tr> <td colspan="3"> <strong><%= e.class %></strong> <%= CGI.escapeHTML(e.message) %> <br /><br /> <% e.backtrace.each do |line| %> <%= line %><br /> <% end %> </td> </tr> <% end %> <% end %> </table>
Version data entries
50 entries across 50 versions & 2 rubygems