From: Marek Zawirski <marek.zawirski@gmail.com>
To: "Shawn O. Pearce" <spearce@spearce.org>
Cc: git@vger.kernel.org, Robin Rosenberg <robin.rosenberg@dewire.com>
Subject: Re: [EGIT PATCH 2/3] Handle NoRemoteRepositoryException in PushOperation especially
Date: Thu, 28 Aug 2008 04:29:08 +0200 [thread overview]
Message-ID: <48B60D74.3030105@gmail.com> (raw)
In-Reply-To: <20080828021936.GA8624@spearce.org>
Shawn O. Pearce wrote:
> Marek Zawirski <marek.zawirski@gmail.com> wrote:
>> diff --git a/org.spearce.egit.core/src/org/spearce/egit/core/coretext.properties b/org.spearce.egit.core/src/org/spearce/egit/core/coretext.properties
>> index 94cf4aa..04ca28f 100644
>> --- a/org.spearce.egit.core/src/org/spearce/egit/core/coretext.properties
>> +++ b/org.spearce.egit.core/src/org/spearce/egit/core/coretext.properties
>> @@ -61,5 +61,6 @@ ListRemoteOperation_title=Getting remote branches information
>> PushOperation_resultCancelled=Operation was cancelled.
>> PushOperation_resultNotSupported=Can't push to {0}
>> PushOperation_resultTransportError=Transport error occured during push operation: {0}
>> +PushOperation_resultNoServiceError=Push service is not available: {0}
>> PushOperation_taskNameDryRun=Trying pushing to remote repositories
>> PushOperation_taskNameNormalRun=Pushing to remote repositories
>> diff --git a/org.spearce.egit.core/src/org/spearce/egit/core/op/PushOperation.java b/org.spearce.egit.core/src/org/spearce/egit/core/op/PushOperation.java
>> index 8811800..a0f2e5c 100644
>> --- a/org.spearce.egit.core/src/org/spearce/egit/core/op/PushOperation.java
>> +++ b/org.spearce.egit.core/src/org/spearce/egit/core/op/PushOperation.java
>> @@ -125,6 +126,10 @@ public void run(IProgressMonitor monitor) throws InvocationTargetException {
>> final PushResult pr = transport.push(gitSubMonitor,
>> specification.getRefUpdates(uri));
>> operationResult.addOperationResult(uri, pr);
>> + } catch (final NoRemoteRepositoryException e) {
>> + operationResult.addOperationResult(uri, NLS.bind(
>> + CoreText.PushOperation_resultNoServiceError, e
>> + .getMessage()));
>
> Isn't this when combined with the prior patch going to result in a message like:
>
> Push service is not available: git://repo.or.cz/egit.git push service is not available
>
> which is sort of redundant and confusingly redundant, isn't it?
More precisely:
Push service is not available: git://repo.or.cz/egit.git push service
not found
Yeah, this commit may be removed as well, leaving user with info:
Transport error occured during push operation: git://repo.or.cz/egit.git
push service not found
--
Marek Zawirski [zawir]
marek.zawirski@gmail.com
next prev parent reply other threads:[~2008-08-28 2:30 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-28 1:36 [EGIT PATCH 1/3] Give NoRemoteRepositoryException better message in BasePackConnection Marek Zawirski
2008-08-28 1:36 ` [EGIT PATCH 2/3] Handle NoRemoteRepositoryException in PushOperation especially Marek Zawirski
2008-08-28 1:36 ` [EGIT PATCH 3/3] Show ErrorDialog fot fatal connection errors in ConfirmationPage Marek Zawirski
2008-08-28 2:21 ` Shawn O. Pearce
2008-08-28 2:30 ` Marek Zawirski
2008-08-28 2:19 ` [EGIT PATCH 2/3] Handle NoRemoteRepositoryException in PushOperation especially Shawn O. Pearce
2008-08-28 2:29 ` Marek Zawirski [this message]
2008-08-28 2:35 ` [EGIT PATCH 1/3] Give NoRemoteRepositoryException better message in BasePackConnection Shawn O. Pearce
2008-08-28 2:40 ` Marek Zawirski
2008-08-28 2:44 ` Shawn O. Pearce
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=48B60D74.3030105@gmail.com \
--to=marek.zawirski@gmail.com \
--cc=git@vger.kernel.org \
--cc=robin.rosenberg@dewire.com \
--cc=spearce@spearce.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.