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

Side by Side Diff: command_wrapper/viewer.html

Issue 3033042: Switching from os.uname to platform.uname, since os.uname isn't available on... (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: Created 10 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « command_wrapper/command_wrapper_web.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>command_wrapper.py log</title> 3 <title>command_wrapper.py log</title>
4 <style> 4 <style>
5 table { 5 table {
6 font:normal 76%/150% "Lucida Grande", "Lucida Sans Unicode", Verdana, 6 font:normal 76%/150% "Lucida Grande", "Lucida Sans Unicode", Verdana,
7 Arial, Helvetica, sans-serif; 7 Arial, Helvetica, sans-serif;
8 border-collapse:separate; 8 border-collapse:separate;
9 border-spacing:0; 9 border-spacing:0;
10 margin:0 0 1em; 10 margin:0 0 1em;
(...skipping 25 matching lines...) Expand all
36 <th align="left">runtime</th> 36 <th align="left">runtime</th>
37 <th align="left">timestamp</th> 37 <th align="left">timestamp</th>
38 <th align="left">stdout</th> 38 <th align="left">stdout</th>
39 <th align="left">stderr</th> 39 <th align="left">stderr</th>
40 <th align="left">cwd</th> 40 <th align="left">cwd</th>
41 <th align="left">uname_sysname</th> 41 <th align="left">uname_sysname</th>
42 <th align="left">uname_nodename</th> 42 <th align="left">uname_nodename</th>
43 <th align="left">uname_release</th> 43 <th align="left">uname_release</th>
44 <th align="left">uname_version</th> 44 <th align="left">uname_version</th>
45 <th align="left">uname_machine</th> 45 <th align="left">uname_machine</th>
46 <th align="left">uname_processor</th>
46 </tr> 47 </tr>
47 {% for item in items %} 48 {% for item in items %}
48 <tr> 49 <tr>
49 <td>{{ item.command_id|escape }}</td> 50 <td>{{ item.command_id|escape }}</td>
50 <td>{{ item.remote_addr|escape }}</td> 51 <td>{{ item.remote_addr|escape }}</td>
51 <td>{{ item.attempt|escape }}</td> 52 <td>{{ item.attempt|escape }}</td>
52 <td>{{ item.retries|escape }}</td> 53 <td>{{ item.retries|escape }}</td>
53 <td>{{ item.command|escape }}</td> 54 <td>{{ item.command|escape }}</td>
54 <td>{{ item.returncode|escape }}</td> 55 <td>{{ item.returncode|escape }}</td>
55 <td>{{ item.runtime|escape }}</td> 56 <td>{{ item.runtime|escape }}</td>
56 <td>{{ item.timestamp|escape }}</td> 57 <td>{{ item.timestamp|escape }}</td>
57 <td> 58 <td>
58 <pre> 59 <pre>
59 {{ item.stdout|escape }} 60 {{ item.stdout|escape }}
60 </pre> 61 </pre>
61 </td> 62 </td>
62 <td> 63 <td>
63 <pre> 64 <pre>
64 {{ item.stderr|escape }} 65 {{ item.stderr|escape }}
65 </pre> 66 </pre>
66 </td> 67 </td>
67 <td>{{ item.cwd|escape }}</td> 68 <td>{{ item.cwd|escape }}</td>
68 <td>{{ item.uname_sysname|escape }}</td> 69 <td>{{ item.uname_sysname|escape }}</td>
69 <td>{{ item.uname_nodename|escape }}</td> 70 <td>{{ item.uname_nodename|escape }}</td>
70 <td>{{ item.uname_release|escape }}</td> 71 <td>{{ item.uname_release|escape }}</td>
71 <td>{{ item.uname_version|escape }}</td> 72 <td>{{ item.uname_version|escape }}</td>
72 <td>{{ item.uname_machine|escape }}</td> 73 <td>{{ item.uname_machine|escape }}</td>
74 <td>{{ item.uname_processor|escape }}</td>
73 </tr> 75 </tr>
74 {% endfor %} 76 {% endfor %}
75 </table> 77 </table>
76 </body> 78 </body>
77 </html> 79 </html>
OLDNEW
« no previous file with comments | « command_wrapper/command_wrapper_web.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698