- Timestamp:
- 2013-04-09T21:06:54+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/io/remotecontrol
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/remotecontrol/RequestProcessor.java
r5651 r5837 191 191 usage.append("</li>"); 192 192 } 193 String websiteDoc = "http://josm.openstreetmap.de/wiki/Help/Preferences/RemoteControl"; 193 194 String help = "No command specified! The following commands are available:<ul>" 194 195 + usage.toString() 195 + "</ul>" ;196 + "</ul>" + "See <a href=\""+websiteDoc+"\">"+websiteDoc+"</a> for complete documentation."; 196 197 sendBadRequest(out, help); 197 198 } else { -
trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/ImageryHandler.java
r5680 r5837 40 40 @Override 41 41 protected void handleRequest() throws RequestHandlerErrorException { 42 if (Main.map == null) //Avoid exception when creating ImageryLayer with null MapFrame43 {44 throw new RequestHandlerErrorException();45 }46 42 String url = args.get("url"); 47 43 String title = args.get("title");
Note:
See TracChangeset
for help on using the changeset viewer.