Changeset 16760 in josm


Ignore:
Timestamp:
2020-07-13T22:23:01+02:00 (4 years ago)
Author:
Klumbumbus
Message:

see #19180 - deprecate access=customer, addr:inclusion=estimated, building=apartment, lamp_mount="bent mast", lamp_mount="straight mast", lamp_type=electrical (common typos) and add some tags to ignore list

Location:
trunk/resources/data/validator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/resources/data/validator/deprecated.mapcss

    r16752 r16760  
    20182018  fixAdd: "building=apartments";
    20192019}
     2020
     2021node[lamp_mount="bent mast"] {
     2022  throwWarning: tr("{0} is deprecated", "{0.tag}");
     2023  suggestAlternative: "lamp_mount=bent_mast";
     2024  group: tr("deprecated tagging");
     2025  fixAdd: "lamp_mount=bent_mast";
     2026}
     2027
     2028node[lamp_mount="straight mast"] {
     2029  throwWarning: tr("{0} is deprecated", "{0.tag}");
     2030  suggestAlternative: "lamp_mount=straight_mast";
     2031  group: tr("deprecated tagging");
     2032  fixAdd: "lamp_mount=straight_mast";
     2033}
     2034
     2035node[lamp_type=electrical] {
     2036  throwWarning: tr("{0} is deprecated", "{0.tag}");
     2037  suggestAlternative: "lamp_type=electric";
     2038  group: tr("deprecated tagging");
     2039  fixAdd: "lamp_type=electric";
     2040}
  • trunk/resources/data/validator/ignoretags.cfg

    r16749 r16760  
    387387K:manhole=plain
    388388;
     389; Tags which already have an own warning e.g. in deprecated.mapcss
     390; to avoid a duplicate warning in severity other (#19180).
     391;
     392K:access=customer
     393K:addr:inclusion=estimated
     394K:building=apartment
     395K:lamp_mount=bent mast
     396K:lamp_mount=straight mast
     397K:lamp_type=electrical
     398K:lanes=-1
     399K:lanes=-2
     400K:lanes=-3
     401K:lanes=-4
     402;
    389403; Tags not yet decided (to remove from this section when added or deprecated)
    390404; see josm tickets: 17770 15309 15774 16315 16658 16793
Note: See TracChangeset for help on using the changeset viewer.