source: josm/trunk/src/org/openstreetmap/josm/actions/HistoryInfoWebAction.java@ 14140

Last change on this file since 14140 was 14119, checked in by Don-vip, 6 years ago

see #15229 - deprecate all Main methods returning an URL

  • Property svn:eol-style set to native
File size: 1.5 KB
RevLine 
[8378]1// License: GPL. For details, see LICENSE file.
[4408]2package org.openstreetmap.josm.actions;
3
[5926]4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
[4408]5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.KeyEvent;
8
[13954]9import org.openstreetmap.josm.data.osm.IPrimitive;
[4408]10import org.openstreetmap.josm.data.osm.OsmPrimitiveType;
[14119]11import org.openstreetmap.josm.spi.preferences.Config;
[4408]12import org.openstreetmap.josm.tools.Shortcut;
13
[9136]14/**
15 * Display history information about OSM ways, nodes, or relations in web browser.
16 * @since 4408
17 */
[4408]18public class HistoryInfoWebAction extends AbstractInfoAction {
19
[8378]20 /**
21 * Constructs a new {@code HistoryInfoWebAction}.
22 */
[4408]23 public HistoryInfoWebAction() {
[7771]24 super(tr("History (web)"), "dialogs/history",
[4408]25 tr("Display history information about OSM ways, nodes, or relations in web browser."),
26 Shortcut.registerShortcut("core:historyinfoweb",
[4982]27 tr("History (web)"), KeyEvent.VK_H, Shortcut.CTRL_SHIFT),
[4942]28 true, "action/historyinfoweb", true);
[4700]29 putValue("help", ht("/Action/ObjectHistoryWeb"));
[4408]30 }
31
32 @Override
[10378]33 protected String createInfoUrl(Object infoObject) {
[13954]34 if (infoObject instanceof IPrimitive) {
35 IPrimitive primitive = (IPrimitive) infoObject;
[14119]36 return Config.getUrls().getBaseBrowseUrl()
37 + '/' + OsmPrimitiveType.from(primitive).getAPIName() + '/' + primitive.getOsmId() + "/history";
[8475]38 } else {
39 return null;
40 }
[4408]41 }
42}
Note: See TracBrowser for help on using the repository browser.