Changeset 29679 in osm for applications/editors/josm/plugins/opendata
- Timestamp:
- 2013-06-21T00:57:18+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/opendata
- Files:
-
- 85 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/README
r29014 r29679 22 22 - commons/lang3: Apache Commons Lang 3.1 (stuff related to WordUtils, used by the plugin itself) 23 23 - poi: Apache POI 3.7 (Excel format support without styles, formulas and writing capabilities, used by the plugin itself) 24 - org/j7zip: J7zip 4.43alpha2 (7z archive read support, LGPL v2.1, see LGPL-2.1.txt) 24 25 - org/jopendocument: jOpenDocument 1.2 (ODS support without styles and writing capabilities, used by the plugin itself) (GPL v3, see GPL-3.0.txt) 25 26 -
applications/editors/josm/plugins/opendata/build.xml
r29505 r29679 58 58 <!-- 59 59 ********************************************************** 60 ** compile_j7zip - compiles J7zip classes 61 ********************************************************** 62 --> 63 <target name="compile_j7zip" depends="init"> 64 <echo message="compiling J7Zip ... "/> 65 <javac srcdir="includes/org/j7zip" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8" /> 66 </target> 67 <!-- 68 ********************************************************** 60 69 ** compile_neptune - compiles Neptune classes 61 70 ********************************************************** … … 70 79 ********************************************************** 71 80 --> 72 <target name="compile" depends="init, compile_lang3, compile_poi, compile_jopendoc, compile_neptune ">81 <target name="compile" depends="init, compile_lang3, compile_poi, compile_jopendoc, compile_neptune, compile_j7zip"> 73 82 <echo message="compiling sources for ${plugin.jar} ... "/> 74 83 <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false"> -
applications/editors/josm/plugins/opendata/modules/fr.datagouvfr/src/org/openstreetmap/josm/plugins/opendata/modules/fr/datagouvfr/datasets/hydrologie/EauxDeSurfaceHandler.java
r28113 r29679 29 29 30 30 import org.openstreetmap.josm.data.osm.DataSet; 31 import org.openstreetmap.josm.plugins.opendata.core.io.archive.Default ZipHandler;31 import org.openstreetmap.josm.plugins.opendata.core.io.archive.DefaultArchiveHandler; 32 32 import org.openstreetmap.josm.plugins.opendata.modules.fr.datagouvfr.datasets.DataGouvDataSetHandler; 33 33 import org.openstreetmap.josm.tools.Pair; … … 66 66 public EauxDeSurfaceHandler() { 67 67 setName("Eaux de surface"); 68 set ZipHandler(new InternalZipHandler());68 setArchiveHandler(new InternalZipHandler()); 69 69 } 70 70 … … 126 126 } 127 127 128 private class InternalZipHandler extends Default ZipHandler {128 private class InternalZipHandler extends DefaultArchiveHandler { 129 129 @Override 130 130 public void notifyTempFileWritten(File file) { -
applications/editors/josm/plugins/opendata/modules/fr.toulouse/src/org/openstreetmap/josm/plugins/opendata/modules/fr/toulouse/datasets/transport/ReseauTisseoHandler.java
r28554 r29679 34 34 setName("Réseau Tisséo (Métro, Bus, Tram)"); 35 35 setCategory(CAT_TRANSPORT); 36 get ZipHandler().setSkipXsdValidation(true);36 getArchiveHandler().setSkipXsdValidation(true); 37 37 } 38 38
Note:
See TracChangeset
for help on using the changeset viewer.