Changeset 33637 in osm for applications/editors
- Timestamp:
- 2017-09-19T22:21:42+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr
- Files:
-
- 5 added
- 43 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/build.xml
r33226 r33637 10 10 --> 11 11 <property name="plugin.author" value="Pieren"/> 12 <property name="plugin.class" value="cadastre _fr.CadastrePlugin"/>12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.fr.cadastre.CadastrePlugin"/> 13 13 <property name="plugin.description" value="A special handler for the French land registry WMS server."/> 14 14 <property name="plugin.icon" value="images/preferences/cadastrewms.png"/> -
applications/editors/josm/plugins/cadastre-fr/src/META-INF/MANIFEST.MF
r30858 r33637 1 1 Manifest-Version: 1.0 2 Plugin-Class: cadastre _fr.CadastrePlugin2 Plugin-Class: org.openstreetmap.josm.plugins.fr.cadastre.CadastrePlugin 3 3 Plugin-Description: A special handler for the French land registry WMS server 4 4 Plugin-Version: 2.6 -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/Address.java
r33301 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CacheControl.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CacheFileLambert4ZoneFilter.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CacheFileLambert9ZoneFilter.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CacheFileUTM20NFilter.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastreGrabber.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastreInterface.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastrePlugin.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastrePreferenceSetting.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastreSessionExporter.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.awt.Component; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CadastreSessionImporter.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/CheckSourceUploadHook.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/DownloadSVGBuilding.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/DownloadSVGTask.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/DownloadWMSPlanImage.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/DownloadWMSVectorImage.java
r33279 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/DuplicateLayerException.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 class DuplicateLayerException extends Exception { -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/EastNorthBound.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.io.Serializable; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/GeorefImage.java
r33392 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.awt.AlphaComposite; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/GrabThread.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.awt.Color; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/ImageModifier.java
r33392 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.awt.Color; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionBoundaries.java
r33047 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionCancelGrab.java
r33047 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionGrab.java
r33047 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionGrabPlanImage.java
r33047 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionLoadFromCache.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionNewLocation.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionOpenPreferences.java
r33047 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionRefineGeoRef.java
r33047 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionResetCookie.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/MenuActionSaveRasterAs.java
r33047 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/RasterImageGeoreferencer.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/RasterImageModifier.java
r33392 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.awt.Color; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/SVGParser.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.util.ArrayList; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/Scale.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 /** -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/SimplifyWay.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.util.ArrayList; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/VectorImageModifier.java
r33392 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import java.awt.Color; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/WMSAdjustAction.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/WMSDownloadAction.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/WMSException.java
r32556 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 class WMSException extends Exception { -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/WMSLayer.java
r33514 r33637 1 1 // License: GPL. For details, see LICENSE file. 2 package cadastre _fr;2 package org.openstreetmap.josm.plugins.fr.cadastre; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr;
Note:
See TracChangeset
for help on using the changeset viewer.