Changeset 7489 in josm for trunk


Ignore:
Timestamp:
2014-09-04T01:12:48+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #10393 - Validation of URLs and e-mails in relevant tags, using modified subset of Apache Commons Validator 1.4

Location:
trunk
Files:
9 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/CONTRIBUTION

    r6920 r7489  
    4242is from Matthias Käppler and licensed with the Apache License 2.0.
    4343
     44The mail/url validator routines use code from Apache Commons
     45Validator which is licensed with Apache license version 2.0.
     46
    4447The NTv2 transformation code (http://jgridshift.sourceforge.net/)
    4548is from Peter Yuill and licensed with LGPL.
  • trunk/README

    r7001 r7489  
    1717You need JRE Version 7, or later.
    1818
    19 Microsoft Windows and Apple Mac OS X users should visit http://www.java.com
     19Microsoft Windows and Apple Mac OS X users should visit https://www.java.com
    2020and download the latest Java executable for their system.
    2121
     
    144144    src/org/apache/commons/codec (svn external)
    145145    -> 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
    146149* SVG Salamander: Support for SVG image format
    147150    src/com/kitfox/svg
    148     -> http://svgsalamander.java.net/
     151    -> https://svgsalamander.java.net/
    149152* Metadata Extractor: Read EXIF Metadata of photos
    150153    src/com/drew
    151     -> http://www.drewnoakes.com/code/exif/
     154    -> https://www.drewnoakes.com/code/exif/
    152155* Signpost: OAuth library
    153156    src/oauth, src/com/google
    154     -> http://code.google.com/p/oauth-signpost/
     157    -> https://code.google.com/p/oauth-signpost/
    155158* GNU getopt Java port: Command line argument processing library
    156159    src/gnu/getopt
    157     -> http://www.urbanophile.com/~arenn/hacking/download.html
     160    -> http://www.urbanophile.com/arenn/hacking/download.html
    158161* MultiSplitPane: Small lib for GUI layout management
    159162    src/org/openstreetmap/josm/gui/MultiSplitLayout.java, MultiSplitPane.java
     
    161164* swinghelper: Class CheckThreadViolationRepaintManager to find classpath violations
    162165    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  
    128128            <zipfileset dir="styles" prefix="styles"/>
    129129            <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"/> -->
    133130        </jar>
    134131    </target>
  • trunk/src/org/openstreetmap/josm/data/validation/OsmValidator.java

    r7436 r7489  
    3737import org.openstreetmap.josm.data.validation.tests.DuplicatedWayNodes;
    3838import org.openstreetmap.josm.data.validation.tests.Highways;
     39import org.openstreetmap.josm.data.validation.tests.InternetTags;
    3940import org.openstreetmap.josm.data.validation.tests.Lanes;
    4041import org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker;
     
    121122        Lanes.class, // 3100 .. 3199
    122123        ConditionalKeys.class, // 3200 .. 3299
     124        InternetTags.class, // 3300 .. 3399
    123125    };
    124126
Note: See TracChangeset for help on using the changeset viewer.