Ignore:
Timestamp:
2014-01-06T15:57:41+01:00 (11 years ago)
Author:
Don-vip
Message:

Improve handling of network errors at startup, suggest to change proxy settings

Location:
trunk/src/org/openstreetmap/josm/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r6623 r6642  
    419419            return true;
    420420        } catch (IllegalStateException ex) {
    421             ex.printStackTrace();
     421            Main.error(ex);
    422422            return false;
    423423        }
     
    449449            }
    450450        } catch (UnsupportedFlavorException ex) {
    451             ex.printStackTrace();
     451            Main.error(ex);
    452452            return null;
    453453        } catch (IOException ex) {
    454             ex.printStackTrace();
     454            Main.error(ex);
    455455            return null;
    456456        }
     
    895895    }
    896896
     897    /**
     898     * Returns the root cause of a throwable object.
     899     * @param t The object to get root cause for
     900     * @return the root cause of {@code t}
     901     * @since 6639
     902     */
     903    public static Throwable getRootCause(Throwable t) {
     904        Throwable result = t;
     905        if (result != null) {
     906            Throwable cause = result.getCause();
     907            while (cause != null && cause != result) {
     908                result = cause;
     909                cause = result.getCause();
     910            }
     911        }
     912        return result;
     913    }
    897914}
  • trunk/src/org/openstreetmap/josm/tools/WikiReader.java

    r6380 r6642  
    1818    private final String baseurl;
    1919
     20    /**
     21     * Constructs a new {@code WikiReader} for the given base URL.
     22     * @param baseurl The wiki base URL
     23     */
    2024    public WikiReader(String baseurl) {
    2125        this.baseurl = baseurl;
     
    8084
    8185    private String readLang(URL url) throws IOException {
    82         BufferedReader in = Utils.openURLReader(url);
     86        BufferedReader in;
     87        try {
     88            in = Utils.openURLReader(url);
     89        } catch (IOException e) {
     90            Main.addNetworkError(url, Utils.getRootCause(e));
     91            throw e;
     92        }
    8393        try {
    8494            return readFromTrac(in, url);
     
    124134                // add a border="0" attribute to images, otherwise the internal help browser
    125135                // will render a thick  border around images inside an <a> element
    126                 //
    127136                b += line.replaceAll("<img ", "<img border=\"0\" ")
    128137                         .replaceAll("<span class=\"icon\">.</span>", "")
Note: See TracChangeset for help on using the changeset viewer.