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

Unified Diff: netlog_viewer/events_view.html

Issue 2154753002: Serving version 1 of the web app. All code has been copied from the (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Removed some unecessary files. Created 4 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 | « netlog_viewer/events_view.css ('k') | netlog_viewer/events_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/events_view.html
diff --git a/netlog_viewer/events_view.html b/netlog_viewer/events_view.html
new file mode 100644
index 0000000000000000000000000000000000000000..cd49e4666fa9773e462438cf2c5b6b25eac993cb
--- /dev/null
+++ b/netlog_viewer/events_view.html
@@ -0,0 +1,54 @@
+<!-- ================= Events view =================== -->
+
+<!-- Filter Box: This the top bar which contains the search box. -->
+<div id=events-view-filter-box>
+ <table width=100%>
+ <tr>
+ <td width=1%>
+ <span id=events-view-filter-help-hover class=mouse-over-help-hover>(?)</span>
+ </td>
+ <td width=98%><input type="search" incremental id=events-view-filter-input title="Sort and filter"></td>
+ <td width=1% id=events-view-filter-count>(1 of 34)</td>
+ </tr>
+ </table>
+</div>
+<!-- Inline filter help -->
+<div id=events-view-filter-help class=mouse-over-help>
+ Sort options:
+ <ul>
+ <li>sort:id (default)
+ <li>sort:desc
+ <li>sort:duration
+ <li>sort:type
+ <li>-sort:&lt;option&gt; Reverses sort order
+ </ul>
+
+ Additional filters:
+ <ul>
+ <li>id:#[,#]*
+ <li>type:&lt;type&gt;[,&lt;type&gt;]*
+ <li>is:active
+ <li>is:error
+ <li>-&lt;filter&gt; Inverts a filter.
+ </ul>
+</div>
+<!-- Events Box: This the panel on the left which lists the sources -->
+<div id=events-view-source-list>
+ <table id=events-view-source-list-table cellspacing=0 cellpadding=0 width=100%>
+ <thead>
+ <tr>
+ <td style='border-left:0'><input type=checkbox id=events-view-select-all title="Select all"></td>
+ <td id=events-view-sort-by-id>ID</td>
+ <td id=events-view-sort-by-source>Source Type</td>
+ <td id=events-view-sort-by-description width=99%>Description</td>
+ </tr>
+ </thead>
+ <!-- Events table body: This is where request rows go into -->
+ <tbody id=events-view-source-list-tbody></tbody>
+ </table>
+</div>
+<!-- Splitter Box: This is a handle to resize the vertical divider -->
+<div id=events-view-splitter-box class=vertical-splitter></div>
+<!-- Details box: This is the panel on the right which shows information -->
+<div id=events-view-details-log-box class="event-log content-box"></div>
+
« no previous file with comments | « netlog_viewer/events_view.css ('k') | netlog_viewer/events_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698