Sha256: 4c718ef680bdcc9e353c253f9ba1a93110bcb6c0a1d22814d18a22a4b13ea277
Contents?: true
Size: 1.07 KB
Versions: 20
Compression:
Stored size: 1.07 KB
Contents
<% watermark = File.expand_path(File.join(Redcar.root, %w(plugins html_view views watermark-48.png))) %> <% redcar_css = File.expand_path(File.join(Redcar.root, %w(plugins html_view views default.css))) %> <link rel="stylesheet" href="file://<%= redcar_css %>" type="text/css" media="screen"> <div id="top"> <img src="file://<%=watermark%>" id="watermark"/> <h1>Command History</h1> <a href="controller/index">Refresh</a> </div> <div class="main"> <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> </div>
Version data entries
20 entries across 20 versions & 2 rubygems