Ignore:
Timestamp:
2010-12-08T11:02:25+01:00 (14 years ago)
Author:
bastiK
Message:

Added remotecontrol plugin to josm core. This plugin was initially written by Frederik Ramm (frederik) and incorporates code taken from YWMS plugin by frsantos. Major contributions by Bodo Meissner (bomm) and stephankn. Note: The code has been added, but is not "active" yet (RemoteControl.on == false). This is because wmsplugin and imagery plugin has not been adapted to this change. They are about to be integrated as well, so this adaption is not necessary.

File:
1 edited

Legend:

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

    r3686 r3707  
    3939import org.openstreetmap.josm.io.auth.CredentialsManagerFactory;
    4040import org.openstreetmap.josm.io.auth.DefaultAuthenticator;
     41import org.openstreetmap.josm.io.remotecontrol.RemoteControl;
    4142import org.openstreetmap.josm.plugins.PluginHandler;
    4243import org.openstreetmap.josm.plugins.PluginInformation;
     
    220221        monitor.worked(1);
    221222
     223        if (RemoteControl.on && RemoteControl.PROP_REMOTECONTROL_ENABLED.get()) {
     224            RemoteControl.start();
     225        }
     226
    222227        monitor.indeterminateSubTask(tr("Creating main GUI"));
    223228        JFrame mainFrame = new JFrame(tr("Java OpenStreetMap Editor"));
Note: See TracChangeset for help on using the changeset viewer.