Ignore:
Timestamp:
2014-03-21T17:31:18+01:00 (10 years ago)
Author:
Don-vip
Message:

fix #9778, fix #9806 - access OSM API and JOSM website in HTTPS by default + other HTTPS links where applicable + update CONTRIBUTION

Location:
trunk/src/org/openstreetmap/josm/gui/util
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/util/GuiHelper.java

    r6830 r6920  
    235235        List<String> fonts = Arrays.asList(GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames());
    236236        // Helvetica is the preferred choice but is not available by default on Windows
    237         // (http://www.microsoft.com/typography/fonts/product.aspx?pid=161)
     237        // (https://www.microsoft.com/typography/fonts/product.aspx?pid=161)
    238238        if (fonts.contains("Helvetica")) {
    239239            return new Font("Helvetica", Font.BOLD, 20);
  • trunk/src/org/openstreetmap/josm/gui/util/StayOpenCheckBoxMenuItem.java

    r5094 r6920  
    1414 * An extension of JCheckBoxMenuItem that doesn't close the menu when selected.
    1515 *
    16  * @author Darryl http://tips4java.wordpress.com/2010/09/12/keeping-menus-open/
     16 * @author Darryl https://tips4java.wordpress.com/2010/09/12/keeping-menus-open/
    1717 */
    1818public class StayOpenCheckBoxMenuItem extends JCheckBoxMenuItem {
  • trunk/src/org/openstreetmap/josm/gui/util/StayOpenMenuItem.java

    r5094 r6920  
    1313 * An extension of JMenuItem that doesn't close the menu when selected.
    1414 *
    15  * @author Darryl http://tips4java.wordpress.com/2010/09/12/keeping-menus-open/
     15 * @author Darryl https://tips4java.wordpress.com/2010/09/12/keeping-menus-open/
    1616 */
    1717public class StayOpenMenuItem extends JMenuItem {
  • trunk/src/org/openstreetmap/josm/gui/util/StayOpenRadioButtonMenuItem.java

    r6361 r6920  
    1313 * An extension of JRadioButtonMenuItem that doesn't close the menu when selected.
    1414 *
    15  * @author Darryl http://tips4java.wordpress.com/2010/09/12/keeping-menus-open/
     15 * @author Darryl https://tips4java.wordpress.com/2010/09/12/keeping-menus-open/
    1616 */
    1717public class StayOpenRadioButtonMenuItem extends JRadioButtonMenuItem {
Note: See TracChangeset for help on using the changeset viewer.