| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 command_uploader; | 5 library command_uploader; | 
| 6 | 6 | 
| 7 import 'dart:async'; | 7 import 'dart:async'; | 
| 8 import 'dart:io'; | 8 import 'dart:io'; | 
| 9 import 'dart:uri'; | 9 import 'dart:uri'; | 
| 10 | 10 | 
| 11 import '../../pkg/args/lib/args.dart'; | 11 import '../../pkg/args/lib/args.dart'; | 
| 12 import '../../pkg/path/lib/path.dart' as path; | 12 import '../../pkg/pathos/lib/path.dart' as path; | 
| 13 import 'entrypoint.dart'; | 13 import 'entrypoint.dart'; | 
| 14 import 'exit_codes.dart' as exit_codes; | 14 import 'exit_codes.dart' as exit_codes; | 
| 15 import 'http.dart'; | 15 import 'http.dart'; | 
| 16 import 'io.dart'; | 16 import 'io.dart'; | 
| 17 import 'log.dart' as log; | 17 import 'log.dart' as log; | 
| 18 import 'oauth2.dart' as oauth2; | 18 import 'oauth2.dart' as oauth2; | 
| 19 import 'pub.dart'; | 19 import 'pub.dart'; | 
| 20 import 'utils.dart'; | 20 import 'utils.dart'; | 
| 21 | 21 | 
| 22 /// Handles the `uploader` pub command. | 22 /// Handles the `uploader` pub command. | 
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 74               "/uploaders/${encodeUriComponent(uploader)}.json"); | 74               "/uploaders/${encodeUriComponent(uploader)}.json"); | 
| 75           return client.delete(url); | 75           return client.delete(url); | 
| 76         } | 76         } | 
| 77       }); | 77       }); | 
| 78     }).then(handleJsonSuccess).catchError((asyncError) { | 78     }).then(handleJsonSuccess).catchError((asyncError) { | 
| 79       if (asyncError.error is! PubHttpException) throw asyncError; | 79       if (asyncError.error is! PubHttpException) throw asyncError; | 
| 80       handleJsonError(asyncError.error.response); | 80       handleJsonError(asyncError.error.response); | 
| 81     }); | 81     }); | 
| 82   } | 82   } | 
| 83 } | 83 } | 
| OLD | NEW | 
|---|