You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/03/19 16:46:28 UTC

[GitHub] [netbeans] mbien commented on a change in pull request #3810: #3748 Note for Advanced Proxy Options

mbien commented on a change in pull request #3810:
URL: https://github.com/apache/netbeans/pull/3810#discussion_r830502809



##########
File path: platform/core.ui/src/org/netbeans/core/ui/options/general/AdvancedProxyPanel.java
##########
@@ -451,6 +467,17 @@ private void cbSameProxySettingsActionPerformed(java.awt.event.ActionEvent evt)
     }
     followHttpProxyIfDemand ();
 }//GEN-LAST:event_cbSameProxySettingsActionPerformed
+
+    private void lblBasicAuthNoteMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblBasicAuthNoteMouseClicked
+        try {
+            // Issue https://github.com/apache/netbeans/issues/3748
+            URI uri = new URI("https://netbeans.apache.org/wiki/ProxyBasicAuth"); // NOI18N
+            Desktop.getDesktop().browse(uri);
+        } catch (Exception ex) {
+            Exceptions.printStackTrace(ex);
+        }
+        // TODO add your handling code here:

Review comment:
       nitpick: autogen text can be removed




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists