Changeset 15004 in josm for trunk/data/validator


Ignore:
Timestamp:
2019-04-20T22:52:50+02:00 (6 years ago)
Author:
Klumbumbus
Message:
  • see #17567 - make validator warnings more comprehensible
  • fix #17630 - warn about building:part=* together with building=*
  • fix #17593 - warn about sport=football
Location:
trunk/data/validator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/validator/combinations.mapcss

    r14998 r15004  
    267267}
    268268
    269 /* {0.key} together with {1.key}, #17604 */
     269/* {0.key} together with {1.key}, #17630, #17604 */
     270*[building:part][building],
    270271*[addr:street][addr:place] {
    271272  throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
  • trunk/data/validator/deprecated.mapcss

    r14957 r15004  
    14211421  fixRemove: "{0.key}";
    14221422}
     1423
     1424/* #17593 */
     1425*[sport=football] {
     1426  throwWarning: tr("{0} is deprecated", "{0.tag}");
     1427  suggestAlternative: "sport=soccer";
     1428  suggestAlternative: "sport=american_football";
     1429  suggestAlternative: "sport=australian_football";
     1430  suggestAlternative: "sport=canadian_football";
     1431  suggestAlternative: "sport=rugby_league";
     1432  suggestAlternative: "sport=rugby_union";
     1433  suggestAlternative: "sport=gaelic_games";
     1434  group: tr("deprecated tagging");
     1435}
Note: See TracChangeset for help on using the changeset viewer.