| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:collection'; | |
| 6 import 'dart:math' as math; | 5 import 'dart:math' as math; |
| 7 | 6 |
| 8 import '../log/log.dart'; | 7 import '../log/log.dart'; |
| 9 import '../server.dart'; | 8 import '../server.dart'; |
| 10 import 'page_writer.dart'; | 9 import 'page_writer.dart'; |
| 11 | 10 |
| 12 /** | 11 /** |
| 13 * A page writer that will produce the page containing access to the full | 12 * A page writer that will produce the page containing access to the full |
| 14 * content of the log. | 13 * content of the log. |
| 15 */ | 14 */ |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 void _writeRightColumn(StringSink sink) { | 273 void _writeRightColumn(StringSink sink) { |
| 275 // | 274 // |
| 276 // Write the header of the column. | 275 // Write the header of the column. |
| 277 // | 276 // |
| 278 sink.writeln('<div class="columnHeader">'); | 277 sink.writeln('<div class="columnHeader">'); |
| 279 sink.writeln('<p><b>Entry Details</b></p>'); | 278 sink.writeln('<p><b>Entry Details</b></p>'); |
| 280 sink.writeln('</div>'); | 279 sink.writeln('</div>'); |
| 281 sink.writeln('<div id="details"></div>'); | 280 sink.writeln('<div id="details"></div>'); |
| 282 } | 281 } |
| 283 } | 282 } |
| OLD | NEW |