Changeset 34086 in osm for applications/editors


Ignore:
Timestamp:
2018-03-13T01:12:27+01:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 13522

Location:
applications/editors/josm/plugins/reltoolbox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/reltoolbox/build.xml

    r33694 r34086  
    44    <property name="commit.message" value="RelToolbox: make natural sort for relation and find relation lists"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="12840"/>
     6    <property name="plugin.main.version" value="13522"/>
    77
    88    <property name="plugin.author" value="Ilya Zverev"/>
  • applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/RelationHelpAction.java

    r33530 r34086  
    55
    66import java.awt.event.ActionEvent;
    7 import java.net.HttpURLConnection;
    87import java.net.URI;
    9 import java.net.URLEncoder;
    10 import java.util.ArrayList;
    118import java.util.List;
    129
     
    1613import org.openstreetmap.josm.data.osm.Relation;
    1714import org.openstreetmap.josm.gui.MainApplication;
     15import org.openstreetmap.josm.gui.dialogs.properties.HelpAction;
    1816import org.openstreetmap.josm.tools.ImageProvider;
    1917import org.openstreetmap.josm.tools.LanguageInfo;
    20 import org.openstreetmap.josm.tools.OpenBrowser;
     18import org.openstreetmap.josm.tools.Logging;
    2119
    2220import relcontext.ChosenRelation;
     
    2422
    2523public class RelationHelpAction extends AbstractAction implements ChosenRelationListener {
    26     private ChosenRelation rel;
     24    private final ChosenRelation rel;
    2725
    2826    public RelationHelpAction(ChosenRelation rel) {
    29         super();
    3027        putValue(NAME, tr("Open relation wiki page"));
    3128        putValue(SHORT_DESCRIPTION, tr("Launch browser with wiki help for selected object"));
     
    4138    }
    4239
    43     /**
    44      * Copypasted from {@link org.openstreetmap.josm.gui.dialogs.properties.PropertiesDialog.HelpAction}.
    45      */
    4640    @Override
    4741    public void actionPerformed(ActionEvent e) {
     
    5145            String base = Main.pref.get("url.openstreetmap-wiki", "http://wiki.openstreetmap.org/wiki/");
    5246            String lang = LanguageInfo.getWikiLanguagePrefix();
    53             final List<URI> uris = new ArrayList<>();
    54             String type = URLEncoder.encode(rel.get().get("type"), "UTF-8");
    55 
    56             if (type != null && !type.equals("")) {
    57                 uris.add(new URI(String.format("%s%sRelation:%s", base, lang, type)));
    58                 uris.add(new URI(String.format("%sRelation:%s", base, type)));
    59             }
    60 
    61             uris.add(new URI(String.format("%s%sRelations", base, lang)));
    62             uris.add(new URI(String.format("%sRelations", base)));
    63 
    64             MainApplication.worker.execute(() -> {
    65                 try {
    66                     // find a page that actually exists in the wiki
    67                     HttpURLConnection conn;
    68                     for (URI u : uris) {
    69                         conn = (HttpURLConnection) u.toURL().openConnection();
    70                         conn.setConnectTimeout(5000);
    71 
    72                         if (conn.getResponseCode() != 200) {
    73                             System.out.println("INFO: " + u + " does not exist");
    74                             conn.disconnect();
    75                         } else {
    76                             int osize = conn.getContentLength();
    77                             conn.disconnect();
    78 
    79                             conn = (HttpURLConnection) new URI(u.toString()
    80                                     .replace("=", "%3D") /* do not URLencode whole string! */
    81                                     .replaceFirst("/wiki/", "/w/index.php?redirect=no&title=")
    82                                     ).toURL().openConnection();
    83                             conn.setConnectTimeout(5000);
    84 
    85                             /* redirect pages have different content length, but retrieving a "nonredirect"
    86                              *  page using index.php and the direct-link method gives slightly different
    87                              *  content lengths, so we have to be fuzzy.. (this is UGLY, recode if u know better)
    88                              */
    89                             if (Math.abs(conn.getContentLength() - osize) > 200) {
    90                                 System.out.println("INFO: " + u + " is a mediawiki redirect");
    91                                 conn.disconnect();
    92                             } else {
    93                                 System.out.println("INFO: browsing to " + u);
    94                                 conn.disconnect();
    95 
    96                                 OpenBrowser.displayUrl(u.toString());
    97                                 break;
    98                             }
    99                         }
    100                     }
    101                 } catch (Exception e1) {
    102                     e1.printStackTrace();
    103                 }
    104             });
     47            final List<URI> uris = HelpAction.getRelationURIs(base, lang, rel.get());
     48            MainApplication.worker.execute(() -> HelpAction.displayHelp(uris));
    10549        } catch (Exception e1) {
    106             e1.printStackTrace();
     50            Logging.error(e1);
    10751        }
    10852    }
Note: See TracChangeset for help on using the changeset viewer.