Changeset 7489 in josm
- Timestamp:
- 2014-09-04T01:12:48+02:00 (10 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CONTRIBUTION
r6920 r7489 42 42 is from Matthias Käppler and licensed with the Apache License 2.0. 43 43 44 The mail/url validator routines use code from Apache Commons 45 Validator which is licensed with Apache license version 2.0. 46 44 47 The NTv2 transformation code (http://jgridshift.sourceforge.net/) 45 48 is from Peter Yuill and licensed with LGPL. -
trunk/README
r7001 r7489 17 17 You need JRE Version 7, or later. 18 18 19 Microsoft Windows and Apple Mac OS X users should visit http ://www.java.com19 Microsoft Windows and Apple Mac OS X users should visit https://www.java.com 20 20 and download the latest Java executable for their system. 21 21 … … 144 144 src/org/apache/commons/codec (svn external) 145 145 -> http://svn.apache.org/repos/asf/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec 146 * Apache commons validator: Improved validator routines 147 src/org/openstreetmap/josm/data/validation/routines 148 -> http://commons.apache.org/proper/commons-validator 146 149 * SVG Salamander: Support for SVG image format 147 150 src/com/kitfox/svg 148 -> http ://svgsalamander.java.net/151 -> https://svgsalamander.java.net/ 149 152 * Metadata Extractor: Read EXIF Metadata of photos 150 153 src/com/drew 151 -> http ://www.drewnoakes.com/code/exif/154 -> https://www.drewnoakes.com/code/exif/ 152 155 * Signpost: OAuth library 153 156 src/oauth, src/com/google 154 -> http ://code.google.com/p/oauth-signpost/157 -> https://code.google.com/p/oauth-signpost/ 155 158 * GNU getopt Java port: Command line argument processing library 156 159 src/gnu/getopt 157 -> http://www.urbanophile.com/ ~arenn/hacking/download.html160 -> http://www.urbanophile.com/arenn/hacking/download.html 158 161 * MultiSplitPane: Small lib for GUI layout management 159 162 src/org/openstreetmap/josm/gui/MultiSplitLayout.java, MultiSplitPane.java … … 161 164 * swinghelper: Class CheckThreadViolationRepaintManager to find classpath violations 162 165 src/org/jdesktop/swinghelper/debug/CheckThreadViolationRepaintManager.java 163 -> http://java.net/projects/swinghelper 164 165 166 -> https://java.net/projects/swinghelper -
trunk/build.xml
r7367 r7489 128 128 <zipfileset dir="styles" prefix="styles"/> 129 129 <zipfileset dir="${src.dir}/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/> 130 <!-- All jar files necessary to run only JOSM (no tests) -->131 <!-- <zipfileset src="lib/metadata-extractor-2.3.1-nosun.jar"/> -->132 <!-- <zipfileset src="lib/signpost-core-1.2.1.1.jar"/> -->133 130 </jar> 134 131 </target> -
trunk/src/org/openstreetmap/josm/data/validation/OsmValidator.java
r7436 r7489 37 37 import org.openstreetmap.josm.data.validation.tests.DuplicatedWayNodes; 38 38 import org.openstreetmap.josm.data.validation.tests.Highways; 39 import org.openstreetmap.josm.data.validation.tests.InternetTags; 39 40 import org.openstreetmap.josm.data.validation.tests.Lanes; 40 41 import org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker; … … 121 122 Lanes.class, // 3100 .. 3199 122 123 ConditionalKeys.class, // 3200 .. 3299 124 InternetTags.class, // 3300 .. 3399 123 125 }; 124 126
Note:
See TracChangeset
for help on using the changeset viewer.