| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library get.handler; | 5 library get.handler; |
| 6 | 6 |
| 7 import 'dart:convert'; | 7 import 'dart:convert'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 import 'dart:math'; | 9 import 'dart:math'; |
| 10 | 10 |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 } else { | 399 } else { |
| 400 response.write('<td$classAttribute>'); | 400 response.write('<td$classAttribute>'); |
| 401 } | 401 } |
| 402 response.write(columns[i]); | 402 response.write(columns[i]); |
| 403 if (header) { | 403 if (header) { |
| 404 response.write('</th>'); | 404 response.write('</th>'); |
| 405 } else { | 405 } else { |
| 406 response.write('</td>'); | 406 response.write('</td>'); |
| 407 } | 407 } |
| 408 } | 408 } |
| 409 ; | 409 |
| 410 response.write('</tr>'); | 410 response.write('</tr>'); |
| 411 } | 411 } |
| 412 } | 412 } |
| OLD | NEW |