/hg/icedtea-web: 3 new changesets

aazores at icedtea.classpath.org aazores at icedtea.classpath.org
Mon Mar 24 13:20:34 UTC 2014


changeset 48f3658a7efd in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=48f3658a7efd
author: Andrew Azores <aazores at redhat.com>
date: Mon Mar 24 09:14:04 2014 -0400

	ManifestsAttributeValidator works with RunInSandbox

	* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: pass
	SecurityDelegate to ManifestsAttributesValidator
	* netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java:
	(securityDelegate) new field, added to constructor.
	(checkTrustedOnlyAttribute, checkPermissionsAttribute) works with
	RunInSandbox.


changeset a958ecb160f6 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=a958ecb160f6
author: Andrew Azores <aazores at redhat.com>
date: Mon Mar 24 09:18:45 2014 -0400

	Added PolicyEditor launch button to security prompts

	Added ability to launch PolicyEditor from security prompts, with the
	current applet's codebase pre-selected in the editor.
	* netx/net/sourceforge/jnlp/resources/Messages.properties:
	(CertWarnPolicyTip, CertWarnPolicyEditor): new messages
	* netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java: can
	launch PolicyEditor from new options overflow button
	* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java:
	same


changeset 6bdbe6b2694b in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=6bdbe6b2694b
author: Andrew Azores <aazores at redhat.com>
date: Mon Mar 24 09:20:18 2014 -0400

	Mention Trusted-only in NEWS


diffstat:

 ChangeLog                                                                                                |   24 +
 NEWS                                                                                                     |    2 +-
 netx/net/sourceforge/jnlp/resources/Messages.properties                                                  |    2 +
 netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java                                                   |    2 +-
 netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java                                      |   14 +-
 netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java                                          |  169 +++++++--
 netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java |  100 +++++-
 7 files changed, 258 insertions(+), 55 deletions(-)

diffs (truncated from 611 to 500 lines):

diff -r 022f56ff692f -r 6bdbe6b2694b ChangeLog
--- a/ChangeLog	Thu Mar 20 15:45:13 2014 -0400
+++ b/ChangeLog	Mon Mar 24 09:20:18 2014 -0400
@@ -1,3 +1,27 @@
+2014-03-24  Andrew Azores  <aazores at redhat.com>
+
+	* NEWS: added mention of Trusted-only manifest attribute
+
+2014-03-24  Andrew Azores  <aazores at redhat.com>
+
+	Added ability to launch PolicyEditor from security prompts, with the
+	current applet's codebase pre-selected in the editor.
+	* netx/net/sourceforge/jnlp/resources/Messages.properties:
+	(CertWarnPolicyTip, CertWarnPolicyEditor): new messages
+	* netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java: can
+	launch PolicyEditor from new options overflow button
+	* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java:
+	same
+
+2014-03-24  Andrew Azores  <aazores at redhat.com>
+
+	* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: pass
+	SecurityDelegate to ManifestsAttributesValidator
+	* netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java:
+	(securityDelegate) new field, added to constructor.
+	(checkTrustedOnlyAttribute, checkPermissionsAttribute) works with
+	RunInSandbox.
+
 2014-03-20  Andrew Azores  <aazores at redhat.com>
 
 	Trusted-only manifest attribute implementation
diff -r 022f56ff692f -r 6bdbe6b2694b NEWS
--- a/NEWS	Thu Mar 20 15:45:13 2014 -0400
+++ b/NEWS	Mon Mar 24 09:20:18 2014 -0400
@@ -14,7 +14,7 @@
 * IcedTea-Web is now following XDG .config and .cache specification(RH947647)
 * A console for debugging plugin and javaws
 * Dialogs center on screen before becoming visible
-* Support for u45 and u51 new manifest attributes (Application-Name, Codebase, Permissions)
+* Support for u45 and u51 new manifest attributes (Application-Name, Codebase, Permissions, Trusted-only)
 * Custom applet permission policies panel in itweb-settings control panel
 * javaws -version flag
 * New PolicyEditor for easily adding/removing permissions to individual applets
diff -r 022f56ff692f -r 6bdbe6b2694b netx/net/sourceforge/jnlp/resources/Messages.properties
--- a/netx/net/sourceforge/jnlp/resources/Messages.properties	Thu Mar 20 15:45:13 2014 -0400
+++ b/netx/net/sourceforge/jnlp/resources/Messages.properties	Mon Mar 24 09:20:18 2014 -0400
@@ -23,6 +23,8 @@
 CertWarnRunTip=Trust this applet and run with full permissions
 CertWarnSandboxTip=Do not trust this applet and run with restricted permissions
 CertWarnCancelTip=Do not run this applet
+CertWarnPolicyTip=Advanced sandbox settings
+CertWarnPolicyEditorItem=Launch PolicyEditor
 
 AFileOnTheMachine=a file on the machine
 AlwaysAllowAction=Always allow this action
diff -r 022f56ff692f -r 6bdbe6b2694b netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Thu Mar 20 15:45:13 2014 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Mon Mar 24 09:20:18 2014 -0400
@@ -284,7 +284,7 @@
 
         setSecurity();
 
-        ManifestsAttributesValidator mav = new ManifestsAttributesValidator(security, file, signing);
+        ManifestsAttributesValidator mav = new ManifestsAttributesValidator(security, file, signing, securityDelegate);
         mav.checkTrustedOnlyAttribute();
         mav.checkCodebaseAttribute();
         mav.checkPermissionsAttribute();
diff -r 022f56ff692f -r 6bdbe6b2694b netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java
--- a/netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java	Thu Mar 20 15:45:13 2014 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java	Mon Mar 24 09:20:18 2014 -0400
@@ -39,6 +39,7 @@
 import java.net.URL;
 import java.util.HashSet;
 import java.util.Set;
+
 import net.sourceforge.jnlp.ExtensionDesc;
 import net.sourceforge.jnlp.JARDesc;
 import net.sourceforge.jnlp.JNLPFile;
@@ -47,6 +48,7 @@
 import net.sourceforge.jnlp.PluginBridge;
 import net.sourceforge.jnlp.ResourcesDesc;
 import net.sourceforge.jnlp.SecurityDesc;
+import net.sourceforge.jnlp.runtime.JNLPClassLoader.SecurityDelegate;
 import net.sourceforge.jnlp.runtime.JNLPClassLoader.SigningState;
 import net.sourceforge.jnlp.security.SecurityDialogs;
 import net.sourceforge.jnlp.security.appletextendedsecurity.AppletSecurityLevel;
@@ -60,11 +62,14 @@
     private final SecurityDesc security;
     private final JNLPFile file;
     private final SigningState signing;
+    private final SecurityDelegate securityDelegate;
 
-    public ManifestsAttributesValidator(SecurityDesc security, JNLPFile file, SigningState signing) {
+    public ManifestsAttributesValidator(final SecurityDesc security, final JNLPFile file,
+            final SigningState signing, final SecurityDelegate securityDelegate) {
         this.security = security;
         this.file = file;
         this.signing = signing;
+        this.securityDelegate = securityDelegate;
     }
 
     /**
@@ -97,7 +102,7 @@
             securityType = "Unknown";
         }
 
-        final boolean isFullySigned = signing == SigningState.FULL;
+        final boolean isFullySigned = signing == SigningState.FULL || (signing == SigningState.PARTIAL && securityDelegate.getRunInSandbox());
         final String signedMsg;
         if (isFullySigned) {
             signedMsg = "The applet is fully signed";
@@ -152,8 +157,9 @@
     void checkPermissionsAttribute() throws LaunchException {
         final ManifestBoolean permissions = file.getManifestsAttributes().isSandboxForced();
         AppletSecurityLevel level = AppletStartupSecuritySettings.getInstance().getSecurityLevel();
-        if (level == AppletSecurityLevel.ALLOW_UNSIGNED) {
-            OutputController.getLogger().log(OutputController.Level.WARNING_ALL, "Although 'permissions' attribute of this application is '" + file.getManifestsAttributes().permissionsToString() + "' Your Extended applets security is at 'low', continuing");
+        if (level == AppletSecurityLevel.ALLOW_UNSIGNED || securityDelegate.getRunInSandbox()) {
+            OutputController.getLogger().log(OutputController.Level.WARNING_ALL, "Although 'permissions' attribute of this application is '" + file.getManifestsAttributes().permissionsToString()
+                    + "' Your Extended applets security is at 'low', or you have specifically chosen to run the applet Sandboxed. Continuing");
             return;
         }
         switch (permissions) {
diff -r 022f56ff692f -r 6bdbe6b2694b netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java
--- a/netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java	Thu Mar 20 15:45:13 2014 -0400
+++ b/netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java	Mon Mar 24 09:20:18 2014 -0400
@@ -47,9 +47,13 @@
 import java.awt.GridLayout;
 import java.awt.event.ActionEvent;
 import java.awt.event.ActionListener;
+import java.awt.event.MouseEvent;
+import java.awt.event.MouseListener;
 import java.io.File;
 import java.io.FileOutputStream;
 import java.io.OutputStream;
+import java.net.MalformedURLException;
+import java.net.URL;
 import java.security.KeyStore;
 import java.security.cert.Certificate;
 import java.security.cert.X509Certificate;
@@ -60,12 +64,16 @@
 import javax.swing.JButton;
 import javax.swing.JCheckBox;
 import javax.swing.JLabel;
+import javax.swing.JMenuItem;
 import javax.swing.JPanel;
+import javax.swing.JPopupMenu;
 import javax.swing.SwingConstants;
 
 import net.sourceforge.jnlp.JNLPFile;
 import net.sourceforge.jnlp.PluginBridge;
+import net.sourceforge.jnlp.config.DeploymentConfiguration;
 import net.sourceforge.jnlp.runtime.JNLPClassLoader.SecurityDelegate;
+import net.sourceforge.jnlp.runtime.JNLPRuntime;
 import net.sourceforge.jnlp.security.CertVerifier;
 import net.sourceforge.jnlp.security.CertificateUtils;
 import net.sourceforge.jnlp.security.HttpsCertVerifier;
@@ -75,6 +83,7 @@
 import net.sourceforge.jnlp.security.SecurityDialog;
 import net.sourceforge.jnlp.security.SecurityDialogs.AccessType;
 import net.sourceforge.jnlp.security.SecurityUtil;
+import net.sourceforge.jnlp.security.policyeditor.PolicyEditor;
 import net.sourceforge.jnlp.util.FileUtils;
 import net.sourceforge.jnlp.util.logging.OutputController;
 
@@ -88,14 +97,29 @@
  */
 public class CertWarningPane extends SecurityDialogPanel {
 
-    JCheckBox alwaysTrust;
-    CertVerifier certVerifier;
-    SecurityDelegate securityDelegate;
+    private final JNLPFile file;
+    private final AccessType accessType;
+    private final Certificate cert;
+    private JCheckBox alwaysTrust;
+    private final CertVerifier certVerifier;
+    private SecurityDelegate securityDelegate;
+    private JPopupMenu policyMenu;
+    private JPanel topPanel, infoPanel, buttonPanel, bottomPanel;
+    private JLabel topLabel, nameLabel, publisherLabel, fromLabel, bottomLabel;
+    private JButton run, sandbox, advancedOptions, cancel, moreInfo;
+    private boolean alwaysTrustSelected;
+    private String bottomLabelWarningText;
+    private PolicyEditor policyEditor = null;
 
     public CertWarningPane(SecurityDialog x, CertVerifier certVerifier, SecurityDelegate securityDelegate) {
         super(x, certVerifier);
         this.certVerifier = certVerifier;
         this.securityDelegate = securityDelegate;
+
+        this.accessType = parent.getAccessType();
+        this.file = parent.getFile();
+        this.cert = parent.getCertVerifier().getPublisher(null);
+
         addComponents();
     }
 
@@ -103,10 +127,11 @@
      * Creates the actual GUI components, and adds it to this panel
      */
     private void addComponents() {
-        AccessType type = parent.getAccessType();
-        JNLPFile file = parent.getFile();
-        Certificate c = parent.getCertVerifier().getPublisher(null);
+        setTextAndLabels();
+        addButtons();
+    }
 
+    private void setTextAndLabels() {
         String name = "";
         String publisher = "";
         String from = "";
@@ -115,8 +140,8 @@
         //these strings -- we just want to fill in as many as possible.
         try {
             if ((certVerifier instanceof HttpsCertVerifier) &&
-                             (c instanceof X509Certificate)) {
-                name = SecurityUtil.getCN(((X509Certificate) c)
+                    (cert instanceof X509Certificate)) {
+                name = SecurityUtil.getCN(((X509Certificate) cert)
                                         .getSubjectX500Principal().getName());
             } else if (file instanceof PluginBridge) {
                 name = file.getTitle();
@@ -127,8 +152,8 @@
         }
 
         try {
-            if (c instanceof X509Certificate) {
-                publisher = SecurityUtil.getCN(((X509Certificate) c)
+            if (cert instanceof X509Certificate) {
+                publisher = SecurityUtil.getCN(((X509Certificate) cert)
                                         .getSubjectX500Principal().getName());
             }
         } catch (Exception e) {
@@ -145,63 +170,66 @@
 
         // Labels
         String topLabelText = "";
-        String bottomLabelText = parent.getCertVerifier().getRootInCacerts() ?
-                                 R("STrustedSource") : R("SUntrustedSource");
-        String propertyName = "";
+        bottomLabelWarningText = parent.getCertVerifier().getRootInCacerts() ?
+                R("STrustedSource") : R("SUntrustedSource");
         String iconLocation = "net/sourceforge/jnlp/resources/";
-        boolean alwaysTrustSelected = false;
+        alwaysTrustSelected = false;
         if (certVerifier instanceof HttpsCertVerifier) {
             // HTTPS certs that are verified do not prompt for a dialog.
             // @see VariableX509TrustManager#checkServerTrusted
             topLabelText = R("SHttpsUnverified") + " " + R("Continue");
-            propertyName = "OptionPane.warningIcon";
             iconLocation += "warning.png";
         } else {
-            switch (type) {
+            switch (accessType) {
                 case VERIFIED:
                     topLabelText = R("SSigVerified");
-                    propertyName = "OptionPane.informationIcon";
                     iconLocation += "question.png";
                     alwaysTrustSelected = true;
                     break;
                 case UNVERIFIED:
                     topLabelText = R("SSigUnverified");
-                    propertyName = "OptionPane.warningIcon";
                     iconLocation += "warning.png";
-                    bottomLabelText += " " + R("SWarnFullPermissionsIgnorePolicy");
+                    bottomLabelWarningText += " " + R("SWarnFullPermissionsIgnorePolicy");
                     break;
                 case SIGNING_ERROR:
                     topLabelText = R("SSignatureError");
-                    propertyName = "OptionPane.warningIcon";
                     iconLocation += "warning.png";
-                    bottomLabelText += " " + R("SWarnFullPermissionsIgnorePolicy");
+                    bottomLabelWarningText += " " + R("SWarnFullPermissionsIgnorePolicy");
                     break;
             }
         }
-        ImageIcon icon = new ImageIcon((new sun.misc.Launcher())
-                                .getClassLoader().getResource(iconLocation));
-        JLabel topLabel = new JLabel(htmlWrap(topLabelText), icon, SwingConstants.LEFT);
+        ImageIcon icon = getImageIcon(iconLocation);
+        topLabel = new JLabel(htmlWrap(topLabelText), icon, SwingConstants.LEFT);
         topLabel.setFont(new Font(topLabel.getFont().toString(),
                                 Font.BOLD, 12));
-        JPanel topPanel = new JPanel(new BorderLayout());
+        topPanel = new JPanel(new BorderLayout());
         topPanel.setBackground(Color.WHITE);
         topPanel.add(topLabel, BorderLayout.CENTER);
         topPanel.setPreferredSize(new Dimension(400, 75));
         topPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
 
         //application info
-        JLabel nameLabel = new JLabel(R("Name") + ":   " + name);
+        nameLabel = new JLabel(R("Name") + ":   " + name);
         nameLabel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
-        JLabel publisherLabel = new JLabel(R("Publisher") + ": " + publisher);
+        publisherLabel = new JLabel(R("Publisher") + ": " + publisher);
         publisherLabel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
-        JLabel fromLabel = new JLabel(R("From") + ":   " + from);
+        fromLabel = new JLabel(R("From") + ":   " + from);
         fromLabel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
+    }
+
+    private ImageIcon getImageIcon(final String imageLocation) {
+        return new ImageIcon((new sun.misc.Launcher())
+                .getClassLoader().getResource(imageLocation));
+    }
+
+    private void addButtons() {
+        createPolicyPermissionsMenu();
 
         alwaysTrust = new JCheckBox(R("SAlwaysTrustPublisher"));
         alwaysTrust.setEnabled(true);
         alwaysTrust.setSelected(alwaysTrustSelected);
 
-        JPanel infoPanel = new JPanel(new GridLayout(4, 1));
+        infoPanel = new JPanel(new GridLayout(4, 1));
         infoPanel.add(nameLabel);
         infoPanel.add(publisherLabel);
 
@@ -213,12 +241,15 @@
         infoPanel.setBorder(BorderFactory.createEmptyBorder(25, 25, 25, 25));
 
         //run and cancel buttons
-        JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
-        JButton run = new JButton(R("ButRun"));
-        JButton sandbox = new JButton(R("ButSandbox"));
-        JButton cancel = new JButton(R("ButCancel"));
+        buttonPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
+        run = new JButton(R("ButRun"));
+        sandbox = new JButton(R("ButSandbox"));
+        advancedOptions = new JButton("\u2630"); // "hamburger" navicon
+        cancel = new JButton(R("ButCancel"));
+
         run.setToolTipText(R("CertWarnRunTip"));
         sandbox.setToolTipText(R("CertWarnSandboxTip"));
+        advancedOptions.setToolTipText(R("CertWarnPolicyTip"));
         cancel.setToolTipText(R("CertWarnCancelTip"));
 
         alwaysTrust.addActionListener(new ButtonDisableListener(sandbox));
@@ -227,16 +258,23 @@
         buttonWidth = Math.max(buttonWidth, cancel.getMinimumSize().width);
         int buttonHeight = run.getMinimumSize().height;
         Dimension d = new Dimension(buttonWidth, buttonHeight);
+
         run.setPreferredSize(d);
         sandbox.setPreferredSize(d);
+        advancedOptions.setPreferredSize(new Dimension(advancedOptions.getMinimumSize().width, buttonHeight));
         cancel.setPreferredSize(d);
 
         sandbox.setEnabled(!alwaysTrust.isSelected());
 
         run.addActionListener(createSetValueListener(parent, 0));
         run.addActionListener(new CheckBoxListener());
+
         sandbox.addActionListener(createSetValueListener(parent, 1));
+
+        advancedOptions.addMouseListener(new PolicyEditorPopupListener());
+
         cancel.addActionListener(createSetValueListener(parent, 2));
+
         initialFocusComponent = cancel;
         buttonPanel.add(run);
         // file will be null iff this dialog is being called from VariableX509TrustManager.
@@ -245,8 +283,10 @@
         // Since there is no app, there is nothing to run sandboxed.
         if (file != null) {
             buttonPanel.add(sandbox);
+            buttonPanel.add(advancedOptions);
         }
         buttonPanel.add(cancel);
+
         buttonPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
 
         //all of the above
@@ -255,18 +295,75 @@
         add(infoPanel);
         add(buttonPanel);
 
-        JLabel bottomLabel = new JLabel(htmlWrap(bottomLabelText));
-        JButton moreInfo = new JButton(R("ButMoreInformation"));
+        bottomLabel = new JLabel(htmlWrap(bottomLabelWarningText));
+        moreInfo = new JButton(R("ButMoreInformation"));
         moreInfo.addActionListener(new MoreInfoButtonListener());
 
-        JPanel bottomPanel = new JPanel();
+        bottomPanel = new JPanel();
         bottomPanel.setLayout(new BoxLayout(bottomPanel, BoxLayout.X_AXIS));
         bottomPanel.add(bottomLabel);
         bottomPanel.add(moreInfo);
         bottomPanel.setPreferredSize(new Dimension(600, 100));
         bottomPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
         add(bottomPanel);
+    }
 
+    private void createPolicyPermissionsMenu() {
+        policyMenu = new JPopupMenu();
+
+        JMenuItem launchPolicyEditor = new JMenuItem(R("CertWarnPolicyEditorItem"));
+        launchPolicyEditor.addActionListener(new PolicyEditorLaunchListener());
+
+        policyMenu.add(launchPolicyEditor);
+        policyMenu.setSize(policyMenu.getMinimumSize());
+        policyMenu.setVisible(false);
+    }
+
+    private class PolicyEditorLaunchListener implements ActionListener {
+        @Override
+        public void actionPerformed(final ActionEvent e) {
+            final String rawFilepath = JNLPRuntime.getConfiguration().getProperty(DeploymentConfiguration.KEY_USER_SECURITY_POLICY);
+            String filepath;
+            try {
+                filepath = new URL(rawFilepath).getPath();
+            } catch (final MalformedURLException mfue) {
+                filepath = null;
+            }
+
+            if (policyEditor == null || policyEditor.isClosed()) {
+                policyEditor = PolicyEditor.createInstance(filepath);
+            } else {
+                policyEditor.toFront();
+                policyEditor.repaint();
+            }
+            policyEditor.addNewCodebase(file.getCodeBase().toString());
+            policyEditor.setVisible(true);
+            policyMenu.setVisible(false);
+        }
+    }
+
+    private class PolicyEditorPopupListener implements MouseListener {
+        @Override
+        public void mouseClicked(final MouseEvent e) {
+            policyMenu.setLocation(e.getLocationOnScreen());
+            policyMenu.setVisible(!policyMenu.isVisible());
+        }
+
+        @Override
+        public void mousePressed(final MouseEvent e) {
+        }
+
+        @Override
+        public void mouseReleased(final MouseEvent e) {
+        }
+
+        @Override
+        public void mouseEntered(final MouseEvent e) {
+        }
+
+        @Override
+        public void mouseExited(final MouseEvent e) {
+        }
     }
 
     private class MoreInfoButtonListener implements ActionListener {
diff -r 022f56ff692f -r 6bdbe6b2694b netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java
--- a/netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java	Thu Mar 20 15:45:13 2014 -0400
+++ b/netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java	Mon Mar 24 09:20:18 2014 -0400
@@ -2,34 +2,41 @@
 
 import static net.sourceforge.jnlp.runtime.Translator.R;
 
-import java.awt.BorderLayout;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.awt.event.MouseEvent;
+import java.awt.event.MouseListener;
+import java.net.MalformedURLException;
 import java.net.URL;
 import java.security.cert.Certificate;
 import java.security.cert.X509Certificate;
 
 import javax.swing.ImageIcon;
 import javax.swing.JButton;
-import javax.swing.JFrame;
+import javax.swing.JMenuItem;
+import javax.swing.JPopupMenu;
 
 import net.sourceforge.jnlp.JNLPFile;
 import net.sourceforge.jnlp.PluginBridge;
-import net.sourceforge.jnlp.PluginParameters;
+import net.sourceforge.jnlp.config.DeploymentConfiguration;
+import net.sourceforge.jnlp.runtime.JNLPRuntime;
 import net.sourceforge.jnlp.security.SecurityDialog;
-import net.sourceforge.jnlp.security.SecurityDialogs.AccessType;
-import net.sourceforge.jnlp.security.SecurityDialogs.DialogType;
 import net.sourceforge.jnlp.security.SecurityUtil;
 import net.sourceforge.jnlp.security.appletextendedsecurity.ExecuteAppletAction;
 import net.sourceforge.jnlp.security.appletextendedsecurity.UnsignedAppletTrustConfirmation;
+import net.sourceforge.jnlp.security.policyeditor.PolicyEditor;
 import net.sourceforge.jnlp.tools.CertInformation;
 import net.sourceforge.jnlp.tools.JarCertVerifier;
 
 public class PartiallySignedAppTrustWarningPanel extends AppTrustWarningPanel {
 
-    private JarCertVerifier jcv;
-    private JButton sandboxButton;
+    private final JarCertVerifier jcv;
+    private final JButton sandboxButton;
+    private final JButton advancedOptionsButton;


More information about the distro-pkg-dev mailing list