OLD | NEW |
---|---|
1 <!-- Import/Export data --> | 1 <div id=exportTabContent> |
2 <div id=dataTabContent> | |
3 | 2 |
4 <table width=100%> | |
5 <tr> | |
6 <td valign=top> | |
7 <div id=dataViewDumpDataDiv> | 3 <div id=dataViewDumpDataDiv> |
mmenke
2011/07/29 14:18:53
Not using this anymore, so can delete it or at lea
eroman
2011/07/29 15:15:08
Done.
| |
8 <h2>Dump data</h2> | 4 <h2>Dump data</h2> |
9 <div style="margin: 8px"> | 5 <div style="margin: 8px"> |
10 <p><input id=securityStrippingCheckbox type=checkbox checked=yes> | 6 <p><input id=securityStrippingCheckbox type=checkbox checked=yes> |
11 Strip private information (cookies and credentials). | 7 Strip private information (cookies and credentials). |
12 </p> | 8 </p> |
9 <button id=dataViewSaveLogFile class=bigButton>Dump to file</button> | |
10 <pre id=dataViewSaveStatusText></pre> | |
11 | |
12 <ul> | |
13 <li><b>IMPORTANT</b>: First reproduce the problem while in recording mod e.</li> | |
14 <li><b>IMPORTANT</b>: Always add an explanation of what went wrong befor e emailing logs.</li> | |
15 </ul> | |
13 <p> | 16 <p> |
17 For more information see: | |
14 <a href="chrome://net-internals/help.html" target="_blank"> | 18 <a href="chrome://net-internals/help.html" target="_blank"> |
15 Help: How to get data for bug reports? | 19 How to get data for bug reports? |
16 </a> | 20 </a> |
17 </p> | 21 </p> |
18 <button id=dataViewSaveLogFile class=bigButton>Dump to file</button> | 22 </ul> |
mmenke
2011/07/29 14:18:53
Superfluous close tag
eroman
2011/07/29 15:15:08
oops!
| |
19 <pre id=dataViewSaveStatusText></pre> | 23 <p> |
20 </div> | |
21 </div> | |
22 <div id=dataViewLoadedDiv style="display: none"> | |
23 <h2>Data Loaded</h2> | |
24 <p id=dataViewLoadedClientInfoText></p> | |
25 </div> | |
26 <div> | |
27 <h2>Load data</h2> | |
28 <p><input type=file value="Load log from file" id=dataViewLoadLogFile /></p> | |
29 <pre id=dataViewLoadStatusText></pre> | |
30 <div style="margin: 8px"> | |
31 <p>Either press the button above and select a file or drag a file onto | |
32 this window to load it. | |
33 </p> | |
34 <p>Works for both log dumps generated from this page with Chrome 14 | |
35 and later, and with log files created with | |
36 "--log-net-log=file_name". "--net-log-level=#" will set the | |
37 default log level used. | |
38 </p> | |
39 <p>Once a log is loaded, this page will stop collecting data, and will | |
40 only start gathering data again when | |
41 <a id="reloaded-link" href="#">reloaded</a>. | |
42 </p> | 24 </p> |
mmenke
2011/07/29 14:18:53
These tags aren't needed.
eroman
2011/07/29 15:15:08
Done.
| |
43 </div> | 25 </div> |
44 </div> | 26 </div> |
45 </td> | |
46 | |
47 <td align=right valign=top> | |
48 <div class="capturingBox" id=dataViewCapturingBox> | |
49 <span id=dataViewCapturingTextSpan> | |
50 <b>Capturing all events...</b> | |
51 </span> | |
52 <span id=dataViewLoggingTextSpan style="display: none;"> | |
53 <b>Viewing loaded log file.</b> | |
54 </span> | |
55 <table style="margin: 8px"> | |
56 <tr> | |
57 <td>Passively captured:</td> | |
58 <td align=right id=passivelyCapturedCount></td> | |
59 </tr> | |
60 <tr> | |
61 <td>Actively captured:</td> | |
62 <td align=right id=activelyCapturedCount></td> | |
63 </tr> | |
64 </table> | |
65 <p class="hideOnLoadLog"> | |
66 <input type=button value="Delete all" id=dataViewDeleteAll /> | |
67 </p> | |
68 <p class="hideOnLoadLog"><input id=byteLoggingCheckbox type=checkbox /> | |
69 Log actual bytes sent/received. | |
70 </p> | |
71 </div> | |
72 </td> | |
73 | |
74 </tr> | |
75 </table> | |
76 | 27 |
77 <iframe style="display: none" id=dataViewDownloadIframe></iframe> | 28 <iframe style="display: none" id=dataViewDownloadIframe></iframe> |
78 | 29 |
79 </div> | 30 </div> |
OLD | NEW |