Ignore:
Timestamp:
2013-12-15T11:44:32+01:00 (12 years ago)
Author:
simon04
Message:

JOSM/wikipedia: add support for //X.wikipedia.org/wiki/Y URLs - fixes #josm9419

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wikipedia/src/org/wikipedia/WikipediaApp.java

    r30100 r30125  
    199199            url = decodeURL(url);
    200200            // extract Wikipedia language and
    201             final Matcher m = Pattern.compile("https?://(\\w*)\\.wikipedia\\.org/wiki/(.*)").matcher(url);
     201            final Matcher m = Pattern.compile("(https?:)?//(\\w*)\\.wikipedia\\.org/wiki/(.*)").matcher(url);
    202202            if (!m.matches()) {
    203203                return null;
    204204            }
    205             return new WikipediaLangArticle(m.group(1), m.group(2));
     205            return new WikipediaLangArticle(m.group(2), m.group(3));
    206206        }
    207207
Note: See TracChangeset for help on using the changeset viewer.