Changeset 15828 in josm for trunk


Ignore:
Timestamp:
2020-02-08T16:48:38+01:00 (4 years ago)
Author:
Klumbumbus
Message:
  • Fix #18642, see #11330 - Don't warn about the key to on route=ferry ways
  • Add vehicle combo to highway=track preset
Location:
trunk/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/defaultpresets.xml

    r15825 r15828  
    949949                <combo key="mtb:scale" text="MTB Scale" values="0,1,2,3,4,5" />
    950950                <reference ref="general_access" />
     951                <combo key="vehicle" text="All vehicles" values="yes,destination,delivery,permissive,private,agricultural,forestry,no" />
    951952                <combo key="motor_vehicle" text="Motor vehicles" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" />
    952953                <combo key="motorcycle" text="Motorcycle" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" />
  • trunk/data/validator/deprecated.mapcss

    r15758 r15828  
    690690}
    691691
    692 /* see #11330 */
     692/* see #11330, #18642 */
    693693*[/^.$/],
    694694node[/^..$/],
    695 way[/^..$/],
     695way[/^..$/][route=ferry][!to],
     696way[/^..$/][route!=ferry],
    696697relation[/^..$/][!to] {
    697698  throwWarning: tr("uncommon short key");
     
    699700  assertMatch: "relation fo=bar";
    700701  assertMatch: "way to=bar";
     702  assertNoMatch: "way to=Zuidschermer;Akersloot route=ferry";
    701703  assertMatch: "node fo=bar";
    702704  assertMatch: "node f=b";
Note: See TracChangeset for help on using the changeset viewer.