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

Side by Side Diff: utils/pub/command_uploader.dart

Issue 11881032: Stop working around issue 7781 in Pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/pub/command_lish.dart ('k') | utils/pub/hosted_source.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 var url = server.resolve("/packages/${encodeUriComponent(package)}" 70 var url = server.resolve("/packages/${encodeUriComponent(package)}"
71 "/uploaders.json"); 71 "/uploaders.json");
72 return client.post(url, fields: {"email": uploader}); 72 return client.post(url, fields: {"email": uploader});
73 } else { // command == 'remove' 73 } else { // command == 'remove'
74 var url = server.resolve("/packages/${encodeUriComponent(package)}" 74 var url = server.resolve("/packages/${encodeUriComponent(package)}"
75 "/uploaders/${encodeUriComponent(uploader)}.json"); 75 "/uploaders/${encodeUriComponent(uploader)}.json");
76 return client.delete(url); 76 return client.delete(url);
77 } 77 }
78 }); 78 });
79 }).then(handleJsonSuccess).catchError((asyncError) { 79 }).then(handleJsonSuccess).catchError((asyncError) {
80 var e = getRealError(asyncError); 80 if (asyncError.error is! PubHttpException) throw asyncError;
81 if (e is! PubHttpException) throw asyncError; 81 handleJsonError(asyncError.error.response);
82 handleJsonError(e.response);
83 }); 82 });
84 } 83 }
85 } 84 }
OLDNEW
« no previous file with comments | « utils/pub/command_lish.dart ('k') | utils/pub/hosted_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698