/hg/icedtea-web: Add control panel (GUI) for modifying icedtea-w...

asu at icedtea.classpath.org asu at icedtea.classpath.org
Wed Dec 1 13:13:13 PST 2010


changeset 9035fbdbd6e7 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=9035fbdbd6e7
author: Andrew Su <asu at redhat.com>
date: Wed Dec 01 16:14:51 2010 -0500

	Add control panel (GUI) for modifying icedtea-web settings.


diffstat:

18 files changed, 2178 insertions(+), 11 deletions(-)
ChangeLog                                                               |   31 
Makefile.am                                                             |   15 
NEWS                                                                    |    2 
netx/net/sourceforge/jnlp/controlpanel/AboutPanel.java                  |   63 +
netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java |  148 ++++
netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsPane.java   |  345 ++++++++++
netx/net/sourceforge/jnlp/controlpanel/ComboItem.java                   |   57 +
netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java                |  327 +++++++++
netx/net/sourceforge/jnlp/controlpanel/DebuggingPanel.java              |  152 ++++
netx/net/sourceforge/jnlp/controlpanel/DesktopShortcutPanel.java        |   99 ++
netx/net/sourceforge/jnlp/controlpanel/JREPanel.java                    |   47 +
netx/net/sourceforge/jnlp/controlpanel/MiddleClickListener.java         |   46 +
netx/net/sourceforge/jnlp/controlpanel/NamedBorderPanel.java            |   60 +
netx/net/sourceforge/jnlp/controlpanel/NetworkSettingsPanel.java        |  278 ++++++++
netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java       |  141 ++++
netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java |  233 ++++++
netx/net/sourceforge/jnlp/resources/Messages.properties                 |  126 +++
netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java          |   19 

diffs (truncated from 2321 to 500 lines):

diff -r 2faf3ab9f3c6 -r 9035fbdbd6e7 ChangeLog
--- a/ChangeLog	Tue Nov 30 23:15:11 2010 +0000
+++ b/ChangeLog	Wed Dec 01 16:14:51 2010 -0500
@@ -1,3 +1,34 @@ 2010-11-30  Andrew John Hughes  <ahughes
+2010-12-01  Andrew Su  <asu at redhat.com>
+
+	* NEWS: Added controlpanel for modifying deployments.properties
+	* Makefile.am:
+	(CONTROLPANEL_LAUNCHER_OBJECTS): Objects used to compile binary
+	control panel.
+	(all-local): Add $(NETX_DIR)/launcher/controlpanel/itw-settings.
+	(install-exec-local): Install the control panel binary.
+	(uninstall-local): Removes the compiled control panel binary.
+	($(NETX_DIR)/launcher/controlpanel/%.o): Create the launcher objects.
+	($(NETX_DIR)/launcher/controlpanel/itw-settings): Link the objects to
+	make the launcher.
+	* netx/net/sourceforge/jnlp/controlpanel/AboutPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/ComboItem.java,
+	* netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/DebuggingPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/DesktopShortcutPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/JREPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/NamedBorderPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/MiddleClickListener.java,
+	* netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java,
+	* netx/net/sourceforge/jnlp/controlpanel/network/AdvancedProxySettingsDialog.java,
+	* netx/net/sourceforge/jnlp/controlpanel/network/AdvancedProxySettingsPane.java,
+	* netx/net/sourceforge/jnlp/controlpanel/network/NetworkSettingsPanel.java,:
+	New classes. All methods are new as well.
+	* netx/net/sourceforge/jnlp/resources/Messages.properties: Added
+	messages used by control panel.
+	* netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java:
+	Changed to not display a close button if null parent frame.
+
 2010-11-30  Andrew John Hughes  <ahughes at redhat.com>
 
 	* Makefile.am:
diff -r 2faf3ab9f3c6 -r 9035fbdbd6e7 Makefile.am
--- a/Makefile.am	Tue Nov 30 23:15:11 2010 +0000
+++ b/Makefile.am	Wed Dec 01 16:14:51 2010 -0500
@@ -29,7 +29,7 @@ NETX_PKGS = javax.jnlp net.sourceforge.n
 	net.sourceforge.jnlp.cache net.sourceforge.jnlp.event \
 	net.sourceforge.jnlp.security net.sourceforge.jnlp.security.viewer \
 	net.sourceforge.jnlp.services net.sourceforge.jnlp.tools \
-	net.sourceforge.jnlp.util
+	net.sourceforge.jnlp.util net.sourceforge.jnlp.controlpanel
 
 # Conditional defintions
 if ENABLE_PLUGIN
@@ -74,6 +74,7 @@ LAUNCHER_OBJECTS = java.o java_md.o spla
 LAUNCHER_OBJECTS = java.o java_md.o splashscreen_stubs.o
 PLUGIN_LAUNCHER_OBJECTS = $(addprefix $(PLUGIN_DIR)/launcher/,$(LAUNCHER_OBJECTS))
 NETX_LAUNCHER_OBJECTS = $(addprefix $(NETX_DIR)/launcher/,$(LAUNCHER_OBJECTS))
+CONTROLPANEL_LAUNCHER_OBJECTS = $(addprefix $(NETX_DIR)/launcher/controlpanel/,$(LAUNCHER_OBJECTS))
 LAUNCHER_FLAGS = -O2 -fno-strict-aliasing -fPIC -pthread -W -Wall -Wno-unused -Wno-parentheses -pipe -fno-omit-frame-pointer \
 	-g -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT -DLAUNCHER_NAME='"java"' -I$(LAUNCHER_SRCDIR) \
 	-DJDK_MAJOR_VERSION='"1"' -DJDK_MINOR_VERSION='"6"' -DLIBARCHNAME='"$(JRE_ARCH_DIR)"'
@@ -89,7 +90,7 @@ EXTRA_DIST = $(top_srcdir)/netx $(top_sr
 # =================
 
 all-local: stamps/netx-dist.stamp extra-lib/about.jar stamps/plugin.stamp $(NETX_DIR)/launcher/javaws \
- javaws.desktop stamps/docs.stamp
+ javaws.desktop stamps/docs.stamp $(NETX_DIR)/launcher/controlpanel/itweb-settings
 
 clean-local: clean-netx clean-plugin clean-liveconnect clean-extra clean-bootstrap-directory \
  clean-native-ecj clean-desktop-files clean-docs
@@ -110,6 +111,7 @@ endif
 	${INSTALL_DATA} $(NETX_DIR)/lib/classes.jar $(DESTDIR)$(prefix)/jre/lib/netx.jar
 	${INSTALL_PROGRAM} $(NETX_DIR)/launcher/javaws $(DESTDIR)$(bindir)
 	${INSTALL_DATA} extra-lib/about.jar $(DESTDIR)$(prefix)/jre/lib
+	${INSTALL_PROGRAM} $(NETX_DIR)/launcher/controlpanel/itweb-settings $(DESTDIR)$(bindir)
 
 install-data-local:
 	${mkinstalldirs} -d $(DESTDIR)$(prefix)/man/man1
@@ -140,6 +142,7 @@ uninstall-local:
 	rm -f $(DESTDIR)$(prefix)/man/man1/javaws.1
 	rm -f $(DESTDIR)$(bindir)/pluginappletviewer
 	rm -f $(DESTDIR)$(bindir)/javaws
+	rm -f $(DESTDIR)$(bindir)/itweb-settings
 	rm -rf $(DESTDIR)$(htmldir)
 
 # Plugin
@@ -322,8 +325,16 @@ extra-lib/about.jar: stamps/extra-class-
 	$(CC) $(LAUNCHER_FLAGS) -DJAVA_ARGS='{ "-J-ms8m", "net.sourceforge.jnlp.runtime.Boot",  }' -DPROGNAME='"javaws"' \
 	-c -o $@ $<
 
+$(NETX_DIR)/launcher/controlpanel/%.o: $(LAUNCHER_SRCDIR)/%.c
+	mkdir -p $(NETX_DIR)/launcher/controlpanel && \
+	$(CC) $(LAUNCHER_FLAGS) -DJAVA_ARGS='{ "-J-ms8m", "net.sourceforge.jnlp.controlpanel.ControlPanel",  }' \
+	-DPROGNAME='"itweb-settings"' -c -o $@ $<
+
 $(NETX_DIR)/launcher/javaws: $(NETX_LAUNCHER_OBJECTS)
 	$(CC) $(NETX_LAUNCHER_OBJECTS) $(LAUNCHER_LINK)
+
+$(NETX_DIR)/launcher/controlpanel/itweb-settings: $(CONTROLPANEL_LAUNCHER_OBJECTS)
+	$(CC) $(CONTROLPANEL_LAUNCHER_OBJECTS) $(LAUNCHER_LINK)
 
 javaws.desktop: javaws.desktop.in
 	sed "s#PATH_TO_JAVAWS#$(DESTDIR)$(bindir)/javaws#" < $(srcdir)/javaws.desktop.in > javaws.desktop
diff -r 2faf3ab9f3c6 -r 9035fbdbd6e7 NEWS
--- a/NEWS	Tue Nov 30 23:15:11 2010 +0000
+++ b/NEWS	Wed Dec 01 16:14:51 2010 -0500
@@ -26,3 +26,5 @@ New in release 1.0 (2010-XX-XX):
   - Add a new option -Xclearcache
   - Interfaces javax.jnlp.IntegrationService and javax.jnlp.DownloadService2 are now available
   - PR592: NetX can create invalid desktop entry files
+* Control Panel
+  - Modifications to deployments.properties file can now be done through a GUI
diff -r 2faf3ab9f3c6 -r 9035fbdbd6e7 netx/net/sourceforge/jnlp/controlpanel/AboutPanel.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/netx/net/sourceforge/jnlp/controlpanel/AboutPanel.java	Wed Dec 01 16:14:51 2010 -0500
@@ -0,0 +1,63 @@
+/* AboutPanel.java -- Display information about the control panel and icedtea-web.
+Copyright (C) 2010 Red Hat
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+package net.sourceforge.jnlp.controlpanel;
+
+import java.awt.Component;
+import java.awt.Dimension;
+import java.awt.GridBagConstraints;
+import java.awt.GridBagLayout;
+
+import javax.swing.Box;
+import javax.swing.JLabel;
+
+import net.sourceforge.jnlp.runtime.Translator;
+
+/**
+ * This class provides a GUI interface which shows some basic information on
+ * this project.
+ *
+ * @author Andrew Su (asu at redhat.com, andrew.su at utoronto.ca)
+ *
+ */
+public class AboutPanel extends NamedBorderPanel {
+
+    public AboutPanel() {
+        super(Translator.R("CPHeadAbout"), new GridBagLayout());
+        GridBagConstraints c = new GridBagConstraints();
+
+        JLabel logo = new JLabel();
+        JLabel aboutLabel = new JLabel("<html>" + Translator.R("CPAboutInfo") + "</html>");
+
+        c.fill = GridBagConstraints.BOTH;
+        c.gridy = 0;
+        c.gridx = 0;
+        c.weighty = 0;
+        c.weightx = 0;
+        add(logo, c);
+        c.gridx = 1;
+        c.weightx = 1;
+        add(aboutLabel, c);
+
+        /* Keep all the elements at the top of the panel (Extra padding) */
+        Component filler = Box.createRigidArea(new Dimension(1, 1));
+        c.weighty = 1;
+        c.gridy++;
+        add(filler, c);
+    }
+}
diff -r 2faf3ab9f3c6 -r 9035fbdbd6e7 netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java	Wed Dec 01 16:14:51 2010 -0500
@@ -0,0 +1,148 @@
+/* AdvancedProxySettingsDialog.java -- Display the dialog for modifying proxy settings.
+Copyright (C) 2010 Red Hat
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+package net.sourceforge.jnlp.controlpanel;
+
+import java.awt.Container;
+import java.awt.Dimension;
+import java.awt.Frame;
+import java.awt.GridBagConstraints;
+import java.awt.GridBagLayout;
+import java.awt.Toolkit;
+import java.awt.event.WindowAdapter;
+import java.awt.event.WindowEvent;
+
+import javax.swing.JDialog;
+import javax.swing.SwingUtilities;
+import javax.swing.UIManager;
+
+import net.sourceforge.jnlp.runtime.DeploymentConfiguration;
+import net.sourceforge.jnlp.runtime.Translator;
+
+/**
+ * This dialog provides a means for user to edit more of the proxy settings.
+ * 
+ * @author Andrew Su <asu at redhat.com, andrew.su at utoronto.ca>
+ * 
+ */
+public class AdvancedProxySettingsDialog extends JDialog {
+
+    private boolean initialized = false;
+    private static final String dialogTitle = Translator.R("APSDialogTitle");
+    private DeploymentConfiguration config; // Configuration file which contains all the settings.
+
+    AdvancedProxySettingsPane topPanel;
+
+    /**
+     * Creates a new instance of the proxy settings dialog.
+     * 
+     * @param config
+     *            Loaded DeploymentConfiguration file.
+     */
+    public AdvancedProxySettingsDialog(DeploymentConfiguration config) {
+        super((Frame) null, dialogTitle, true); // Don't need a parent.
+        this.config = config;
+
+        /* Prepare for adding components to dialog box */
+        Container contentPane = getContentPane();
+        contentPane.setLayout(new GridBagLayout());
+        setMinimumSize(new Dimension(456, 404));
+        setPreferredSize(new Dimension(456, 404));
+
+        GridBagConstraints c = new GridBagConstraints();
+        c.fill = GridBagConstraints.BOTH;
+        c.weightx = 1;
+        c.weighty = 1;
+        c.gridx = 0;
+        c.gridy = 0;
+        topPanel = new AdvancedProxySettingsPane(this, this.config);
+        contentPane.add(topPanel, c);
+
+        pack();
+
+        /* Set focus to default button when first activated */
+        WindowAdapter adapter = new WindowAdapter() {
+            private boolean gotFocus = false;
+
+            public void windowGainedFocus(WindowEvent we) {
+                // Once window gets focus, set initial focus
+                if (!gotFocus) {
+                    topPanel.focusOnDefaultButton();
+                    gotFocus = true;
+                }
+            }
+        };
+        addWindowFocusListener(adapter);
+
+        initialized = true;
+    }
+
+    /**
+     * Check whether the dialog has finished being created.
+     * 
+     * @return True if dialog is ready to be displayed.
+     */
+    public boolean isInitialized() {
+        return initialized;
+    }
+
+    /**
+     * Center the dialog box.
+     */
+    private void centerDialog() {
+        Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
+        Dimension dialogSize = getSize();
+
+        setLocation((screen.width - dialogSize.width) / 2, (screen.height - dialogSize.height) / 2);
+    }
+
+    /**
+     * Display the Proxy Settings Dialog.
+     * 
+     * @param config
+     *            A loaded DeploymentConfiguration file.
+     * @throws Exception
+     */
+    public static void showAdvancedProxySettingsDialog(final DeploymentConfiguration config) throws Exception {
+        setSystemLookAndFeel();
+        SwingUtilities.invokeLater(new Runnable() {
+            @Override
+            public void run() {
+                AdvancedProxySettingsDialog psd = new AdvancedProxySettingsDialog(config);
+                psd.setResizable(false);
+                psd.centerDialog();
+                psd.setVisible(true);
+                psd.dispose();
+            }
+        });
+        
+        
+        
+    }
+
+    /**
+     * Set the look and feel.
+     */
+    private static void setSystemLookAndFeel() {
+        try {
+            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
+        } catch (Exception e) {
+            // don't worry if we can't.
+        }
+    }
+}
diff -r 2faf3ab9f3c6 -r 9035fbdbd6e7 netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsPane.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsPane.java	Wed Dec 01 16:14:51 2010 -0500
@@ -0,0 +1,345 @@
+/* AdvancedProxySettingsPane.java -- Provides the panel which can modify proxy settings.
+Copyright (C) 2010 Red Hat
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+package net.sourceforge.jnlp.controlpanel;
+
+import java.awt.BorderLayout;
+import java.awt.Dimension;
+import java.awt.FlowLayout;
+import java.awt.GridBagConstraints;
+import java.awt.GridBagLayout;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.awt.event.ItemEvent;
+import java.awt.event.ItemListener;
+import java.awt.event.KeyAdapter;
+import java.awt.event.KeyEvent;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.swing.BoxLayout;
+import javax.swing.JButton;
+import javax.swing.JCheckBox;
+import javax.swing.JComponent;
+import javax.swing.JDialog;
+import javax.swing.JLabel;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import javax.swing.JTextArea;
+import javax.swing.JTextField;
+
+import net.sourceforge.jnlp.runtime.DeploymentConfiguration;
+import net.sourceforge.jnlp.runtime.Translator;
+
+/**
+ * This is the pane that modifies the proxy settings in more detail.
+ * 
+ * @author Andrew Su (asu at redhat.com, andrew.su at utoronto.ca)
+ * 
+ */
+public class AdvancedProxySettingsPane extends JPanel {
+
+    private JDialog parent;
+    private DeploymentConfiguration config;
+
+    /** List of properties used by this panel */
+    public static String[] properties = { "deployment.proxy.http.host",
+            "deployment.proxy.http.port",
+            "deployment.proxy.https.host",
+            "deployment.proxy.https.port",
+            "deployment.proxy.ftp.host",
+            "deployment.proxy.ftp.port",
+            "deployment.proxy.socks.host",
+            "deployment.proxy.socks.port",
+            "deployment.proxy.same",
+            "deployment.proxy.override.hosts" };
+    private String[] fields = new String[properties.length];
+
+    private JComponent defaultFocusComponent = null;
+
+    /**
+     * Creates a new instance of the proxy settings panel.
+     * 
+     * @param parent
+     *            JDialog this is associated with.
+     * @param config
+     *            Loaded DeploymentConfiguration file.
+     */
+    public AdvancedProxySettingsPane(JDialog parent, DeploymentConfiguration config) {
+        super(new BorderLayout());
+        this.parent = parent;
+        this.config = config;
+
+        getProperties();
+        addComponents();
+    }
+
+    /**
+     * Place properties into an array, this is so when cancel is hit. We don't
+     * overwrite the original values.
+     */
+    private void getProperties() {
+        for (int i = 0; i < fields.length; i++) {
+            fields[i] = this.config.getProperty(properties[i]);
+        }
+    }
+
+    /**
+     * Add the components to the panel. FIXME: We should probably refactor the
+     * listeners and do them in a more generic way. Also can change this from
+     * using textfield to using a table.
+     */
+    private void addComponents() {
+        JPanel topPanel = new JPanel(new GridBagLayout());
+        GridBagConstraints c = new GridBagConstraints();
+
+        JPanel servers = new NamedBorderPanel(Translator.R("APSServersPanel"));
+        servers.setLayout(new GridBagLayout());
+
+        JLabel type = new JLabel(Translator.R("APSProxyTypeLabel"));
+        JLabel proxyAddress = new JLabel(Translator.R("APSProxyAddressLabel"));
+        JLabel port = new JLabel(Translator.R("APSProxyPortLabel"));
+
+        // This addresses the HTTP proxy settings.
+        JLabel http = new JLabel(Translator.R("APSLabelHTTP") + ":");
+        final JTextField httpAddressField = new JTextField(fields[0]);
+        final JTextField httpPortField = new JTextField(fields[1]);
+        httpAddressField.addKeyListener(new KeyAdapter() {
+            @Override
+            public void keyReleased(KeyEvent e) {
+                fields[0] = httpAddressField.getText();
+            }
+        });
+        httpPortField.addKeyListener(new KeyAdapter() {
+            @Override
+            public void keyReleased(KeyEvent e) {
+                fields[1] = httpPortField.getText();
+            }
+        });
+        httpAddressField.addMouseListener(new MiddleClickListener(this.config, properties[0]));
+        httpPortField.addMouseListener(new MiddleClickListener(this.config, properties[1]));
+
+        // This addresses the HTTPS proxy settings.
+        JLabel secure = new JLabel(Translator.R("APSLabelSecure") + ":");
+        final JTextField secureAddressField = new JTextField(fields[2]);
+        final JTextField securePortField = new JTextField(fields[3]);
+        secureAddressField.addKeyListener(new KeyAdapter() {
+            @Override
+            public void keyReleased(KeyEvent e) {
+                fields[2] = secureAddressField.getText();
+            }
+        });
+        securePortField.addKeyListener(new KeyAdapter() {
+            @Override
+            public void keyReleased(KeyEvent e) {
+                fields[3] = securePortField.getText();
+            }
+        });
+        secureAddressField.addMouseListener(new MiddleClickListener(this.config, properties[2]));
+        securePortField.addMouseListener(new MiddleClickListener(this.config, properties[3]));
+
+        // This addresses the FTP proxy settings.
+        JLabel ftp = new JLabel(Translator.R("APSLabelFTP") + ":");
+        final JTextField ftpAddressField = new JTextField(fields[4]);
+        final JTextField ftpPortField = new JTextField(fields[5]);
+        ftpAddressField.addKeyListener(new KeyAdapter() {
+            @Override
+            public void keyReleased(KeyEvent e) {
+                fields[4] = ftpAddressField.getText();
+            }
+        });
+        ftpPortField.addKeyListener(new KeyAdapter() {
+            @Override
+            public void keyReleased(KeyEvent e) {



More information about the distro-pkg-dev mailing list