Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [platform-ant-dev] Antview Contribution

Title: Re: [platform-ant-dev] Antview Contribution

 

Attachments with GUI e-mail client.

Let me know if these are usable.

 

Roscoe

 

-----Original Message-----
From: Roscoe M. Rush [mailto:platform-ant-dev-admin@xxxxxxxxxxx] On Behalf Of Roscoe M. Rush
Sent: Tuesday, October 29, 2002 2:22 PM
To: platform-ant-dev@xxxxxxxxxxx
Subject: RE: [platform-ant-dev] Antview Contribution

 

 

It probably is my e-mail client, its web-based. I will resend the attachements later today when I have access to a different e-mail client.

 

Roscoe

 

-----Original Message-----
From: Jared Burns [mailto:jared-eclipse@xxxxxxxxx]
Sent: Tue 10/29/2002 2:00 PM
To: platform-ant-dev@xxxxxxxxxxx
Cc:
Subject: Re: [platform-ant-dev] Antview Contribution

Unfortunately, your mailer only attached a single file, called winmail.dat, to
your message. It looks like no mailer but yours (an Exchange client?) can
decrypt this file format.

The changes I've made have been relative to the source zip you published on
SourceForge so we're OK there. For everyone else's benefit, though, can you
try to resend your attachments? If possible, from a different email client?

Thanks,
- Jared

On Tuesday 29 October 2002 01:49 pm, Roscoe M. Rush wrote:
> It is zipped. There are two attachments on the original e-mail, a zip file
with the source and a text file with a patch.
> The zip file is the same file as was released to source forge:
http://sourceforge.net/project/showfiles.php?group_id=54697

> Roscoe
_______________________________________________
platform-ant-dev mailing list
platform-ant-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-ant-dev

Attachment: com.r2tech.eclipse.antview_2.2.8-src.zip
Description: com.r2tech.eclipse.antview_2.2.8-src.zip

Index: src/com/r2tech/eclipse/antview/AntviewPlugin.java
===================================================================
RCS file: /cvsroot/r2tech-eclipse/com.r2tech.eclipse.antview/src/com/r2tech/eclipse/antview/AntviewPlugin.java,v
retrieving revision 1.4
diff -u -r1.4 AntviewPlugin.java
--- src/com/r2tech/eclipse/antview/AntviewPlugin.java	8 Oct 2002 15:48:18 -0000	1.4
+++ src/com/r2tech/eclipse/antview/AntviewPlugin.java	29 Oct 2002 17:49:27 -0000
@@ -33,6 +33,7 @@
 	public AntviewPlugin(IPluginDescriptor descriptor) {
 		super(descriptor);
 		plugin = this;
+		antView = null;
 		initResourceMgr();
 		Preferences.setDefaults();
 	}
Index: src/com/r2tech/eclipse/antview/preferences/PreferencePage.java
===================================================================
RCS file: /cvsroot/r2tech-eclipse/com.r2tech.eclipse.antview/src/com/r2tech/eclipse/antview/preferences/PreferencePage.java,v
retrieving revision 1.3
diff -u -r1.3 PreferencePage.java
--- src/com/r2tech/eclipse/antview/preferences/PreferencePage.java	8 Oct 2002 15:48:18 -0000	1.3
+++ src/com/r2tech/eclipse/antview/preferences/PreferencePage.java	29 Oct 2002 17:49:27 -0000
@@ -86,7 +86,11 @@
 	public boolean performOk() { 
 		if (super.performOk()) { 
            AntView antView = AntviewPlugin.getDefault().getAntView();
+           if (null == antView) 
+        	  return true;
 		   AntViewContentProvider viewContentProvider =  antView.getViewContentProvider();
+		   if (null == viewContentProvider) 
+			  return true;
 		   Vector targetVector = viewContentProvider.getTargetVector();
          	
 		   targetVector.removeAllElements();

Back to the top