Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: command_wrapper/viewer.html

Issue 3013052: Adding a search by nodename option.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « command_wrapper/index.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_wrapper/viewer.html
===================================================================
--- command_wrapper/viewer.html (revision 54349)
+++ command_wrapper/viewer.html (working copy)
@@ -20,6 +20,8 @@
padding:0.25em 0.5em;
text-align:left;
vertical-align:top;
+ border-style: solid;
+ border-width: 1px;
}
</style>
</head>
@@ -27,6 +29,7 @@
<h1>command_wrapper.py log</h1>
<table>
<tr>
+ <th align="left">row</th>
<th align="left">command_id</th>
<th align="left">remote_addr</th>
<th align="left">attempt</th>
@@ -44,9 +47,11 @@
<th align="left">uname_version</th>
<th align="left">uname_machine</th>
<th align="left">uname_processor</th>
+ <th align="left">response</th>
</tr>
{% for item in items %}
<tr>
+ <td>{{ forloop.counter }}</td>
<td>{{ item.command_id|escape }}</td>
<td>{{ item.remote_addr|escape }}</td>
<td>{{ item.attempt|escape }}</td>
@@ -72,6 +77,7 @@
<td>{{ item.uname_version|escape }}</td>
<td>{{ item.uname_machine|escape }}</td>
<td>{{ item.uname_processor|escape }}</td>
+ <td>{{ item.response|escape }}</td>
</tr>
{% endfor %}
</table>
« no previous file with comments | « command_wrapper/index.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698