Changeset 10479 in osm for applications/editors


Ignore:
Timestamp:
2008-09-04T15:17:51+02:00 (16 years ago)
Author:
stoecker
Message:

minor fixes

Location:
applications/editors/josm/plugins/validator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/NodesWithSameName.java

    r9684 r10479  
    3131
    3232                String name = n.get("name");
    33                 if (name == null) return;
     33                String sign = n.get("traffic_sign");
     34                if (name == null || (sign != null && sign.equals("city_limit"))) return;
    3435
    3536                List<Node> nodes = namesToNodes.get(name);
  • applications/editors/josm/plugins/validator/tagchecker.cfg

    r10065 r10479  
    4545way  : I : highway == secondary && ref != *                    # highway without a reference
    4646way  : I : highway == tertiary && ref != *                     # highway without a reference
     47*    : W : highway == road                                     # temporary highway type
    4748*    : W : / *name */i == * && name != *                       # misspelled key name
    4849
Note: See TracChangeset for help on using the changeset viewer.