Reviewer needed - fix for Re: Strange behaviour during javaws -about part 2/2

Dr Andrew John Hughes ahughes at redhat.com
Thu Mar 3 16:34:08 PST 2011


On 11:55 Thu 03 Mar     , Jiri Vanek wrote:
> This part of patch removes code from about window which required 
> all-permissions (code from net.sourceforge.jnlp and hyper-links 
> control). It also removes applications tab from about window, and 
> replaces it with tabs generated from AUTHORS,NEWS and README.
> 

> diff -r 0e868f1709f1 ChangeLog
> --- a/ChangeLog	Thu Mar 03 09:39:41 2011 +0100
> +++ b/ChangeLog	Thu Mar 03 11:52:51 2011 +0100
> @@ -1,3 +1,14 @@
> +2011-03-03  Jiri Vanek  <jvanek at redhat.com>
> +
> +	* Makefile.am: added generation of htmlfiles  from NEWS and AUTHORS and
> +	 RREADME
> +	* extras/net/sourceforge/jnlp/about/Main.java: application tab replaced
> +	 with new tabs with generated files
> +	* extras/net/sourceforge/jnlp/about/Main.java: removed useless (can not
> +	 work without all-permissions) hypertextlistener and runtime which
> +	needed special permissions, and another staf from 
> +	net.sourceforge.jnlp package
> +
>  2011-03-02  Jiri Vanek  <jvanek at redhat.com>
>  
>  	* netx/net/sourceforge/jnlp/runtime/Boot.java: getAboutFile changed to 
> diff -r 0e868f1709f1 Makefile.am
> --- a/Makefile.am	Thu Mar 03 09:39:41 2011 +0100
> +++ b/Makefile.am	Thu Mar 03 11:52:51 2011 +0100
> @@ -296,6 +296,21 @@
>  	   ${INSTALL_DATA} -D $${files} \
>  	   $(NETX_EXTRA_DIST_DIR)/$${files}; \
>  	 done)
> +#generate news and authors to be used by javaws -about
> +	cd $(abs_top_builddir)
> +	echo "<HTML><BODY><h1>News</h1><pre>" > ${NETX_EXTRA_DIST_DIR}/news.html
> +	cat NEWS >> ${NETX_EXTRA_DIST_DIR}/news.html
> +	echo "</pre></BODY></HTML>" >> ${NETX_EXTRA_DIST_DIR}/news.html
> +
> +	echo "<HTML><BODY><h1>Readme</h1><pre>" > ${NETX_EXTRA_DIST_DIR}/readme.html
> +	cat README >> ${NETX_EXTRA_DIST_DIR}/readme.html
> +	echo "</pre></BODY></HTML>" >> ${NETX_EXTRA_DIST_DIR}/readme.html
> +
> +	echo "<HTML><BODY>" > ${NETX_EXTRA_DIST_DIR}/authors.html
> +	echo  "<h1>Authors</h1><div align="center"><img src="jamIcon.jpg" alt="Jam Icon" width="87" height="84" align="Center"/><br/" >> ${NETX_EXTRA_DIST_DIR}/authors.html
> +	cat AUTHORS | sed s/$$/"<br>"/ >> ${NETX_EXTRA_DIST_DIR}/authors.html
> +	echo "</div></BODY></HTML>" >> ${NETX_EXTRA_DIST_DIR}/authors.html
> +

In addition to the points Omair made about the cd and the relative paths:

* There should really be a template, {news,readme,authors}.html.in which then has
the relevant section replaced, rather than having all the html code here.  It
may be worth looking at XSLT for a really nice way of doing it, but I guess
sed would suffice, at least for a first bash.
* If I read this correctly, it's on the end of the install target.  It shouldn't
be there.  It should be a separate target generated during the build.
* What is jamIcon.jpg?

>  	mkdir -p stamps
>  	touch $@
>  
> diff -r 0e868f1709f1 extra/net/sourceforge/javaws/about/Main.java
> --- a/extra/net/sourceforge/javaws/about/Main.java	Thu Mar 03 09:39:41 2011 +0100
> +++ b/extra/net/sourceforge/javaws/about/Main.java	Thu Mar 03 11:52:51 2011 +0100
> @@ -47,40 +47,43 @@
>  import javax.swing.JPanel;
>  import javax.swing.JTabbedPane;
>  import javax.swing.UIManager;
> -import javax.swing.event.HyperlinkEvent;
> -import javax.swing.event.HyperlinkListener;
>  
> -import net.sourceforge.jnlp.Launcher;
> -import net.sourceforge.jnlp.runtime.JNLPRuntime;
>  
> -public class Main extends JPanel implements HyperlinkListener {
> +public class Main extends JPanel  {
>  
> -	private final String notes = "/net/sourceforge/jnlp/about/resources/notes.html";
> -	private final String apps = "/net/sourceforge/jnlp/about/resources/applications.html";
> -	private final String about = "/net/sourceforge/jnlp/about/resources/about.html";
> +	private final String notes = "/net/sourceforge/javaws/about/resources/notes.html";
> +        private final String about = "/net/sourceforge/javaws/about/resources/about.html";
> +	private final String news = "/net/sourceforge/javaws/about/resources/news.html";
> +        private final String readme = "/net/sourceforge/javaws/about/resources/readme.html";
> +        private final String authors = "/net/sourceforge/javaws/about/resources/authors.html";
> +	

Some odd indenting changes here.

>  	JTabbedPane tabbedPane;
>  
>  	public Main() throws IOException {
>  		super(new BorderLayout());
>  		
>  		HTMLPanel notesPanel = new HTMLPanel(getClass().getResource(notes));
> -		HTMLPanel appsPanel = new HTMLPanel(getClass().getResource(apps));
>  		HTMLPanel aboutPanel = new HTMLPanel(getClass().getResource(about));
> +                HTMLPanel newsPanel = new HTMLPanel(getClass().getResource(news));
> +                HTMLPanel readmePanel = new HTMLPanel(getClass().getResource(readme));
> +                HTMLPanel authorsPanel = new HTMLPanel(getClass().getResource(authors));
>  		

And again.

> -		appsPanel.pane.addHyperlinkListener(this);
> +		
>  		
>  		tabbedPane = new JTabbedPane();
>  
>  		tabbedPane.add("About NetX", aboutPanel);
> -		tabbedPane.add("Applications", appsPanel);
>  		tabbedPane.add("Notes", notesPanel);
> +                tabbedPane.add("News", newsPanel);
> +                tabbedPane.add("Readme", readmePanel);
> +                tabbedPane.add("Authors", authorsPanel);
>  		
>  		tabbedPane.setPreferredSize(new Dimension(550,410));
>  		add(tabbedPane, BorderLayout.CENTER);
>  	}
>  
>  	private static void createAndShowGUI() {
> -		JNLPRuntime.setExitClass(Main.class);
> +		
>  		
>  		try {
>  			UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
> @@ -119,17 +122,5 @@
>  		});
>  	}
>  
> -	public void hyperlinkUpdate(HyperlinkEvent e) {
> -		if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
> -			URL url = e.getURL();
> -
> -			Launcher launcher = new Launcher(
> -					JNLPRuntime.getDefaultLaunchHandler());
> -			try {
> -				launcher.launchBackground(url);
> -			} catch (Exception ex) {
> -				ex.printStackTrace();
> -			}
> -		}
> -	}
> +	
>  }


I don't know what you're using to edit files, but you seem to be producing some odd
whitespace and indentation changes in your patches.
-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and IcedTea
http://www.gnu.org/software/classpath
http://icedtea.classpath.org
PGP Key: F5862A37 (https://keys.indymedia.org/)
Fingerprint = EA30 D855 D50F 90CD F54D  0698 0713 C3ED F586 2A37



More information about the distro-pkg-dev mailing list