Changes between Initial Version and Version 2 of Ticket #24858


Ignore:
Timestamp:
2026-08-19T20:43:35+02:00 (3 days ago)
Author:
Famlam
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24858 – Description

    initial v2  
    55==== Origin
    66
    7 The following rule in JOSM's build-in rules exists twice in [https://josm.openstreetmap.de/browser/josm/trunk/resources/data/validator/deprecated.mapcss deprecated.mapcss], at lines 2352 and 2375
     7The following rules in JOSM's build-in rules exists twice in [https://josm.openstreetmap.de/browser/josm/trunk/resources/data/validator/deprecated.mapcss deprecated.mapcss], starting at lines 2338 and 2361
    88
    99{{{#!mapcss
     10/* #20421 */
     11*[transformer=minor_distribution] {
     12  throwWarning: tr("{0} is deprecated", "{1.tag}");
     13  suggestAlternative: "transformer=distribution";
     14  group: tr("deprecated tagging");
     15  fixAdd: "transformer=distribution";
     16}
     17
     18*[transformer=traction] {
     19  throwWarning: tr("{0} is deprecated", "{0.tag}");
     20  suggestAlternative: "transformer=main";
     21  group: tr("deprecated tagging");
     22  fixAdd: "transformer=main";
     23}
     24
    1025*[transformer=auto] {
    1126  throwWarning: tr("{0} is deprecated", "{0.tag}");
     
    1732}}}
    1833
    19 The fix is probably simply removing this rule from one of the two locations.
    20 The duplicated rule was added in r19590
     34The fix is probably simply removing these rules from one of the two locations.
     35The duplicated rule was added in r19591
    2136
    2237