Changes between Version 5 and Version 11 of Styles/PriorityRoad


Ignore:
Timestamp:
(multiple changes)
Author:
(multiple changes)
Comment:
(multiple changes)

Legend:

Unmodified
Added
Removed
Modified
  • Styles/PriorityRoad

    v5 v11  
    1010Additional it reports wrong values of priority_road.
    1111
     12[[left-right-hand-traffic|Left-hand and right-hand traffic]] are always taken into account.
     13
    1214You can adjust the colours in the preference window of JOSM.
    1315
     
    3537== Changelog ==
    3638^(Latest change first)^
    37 ==== Version 1.0.x to 1.1.x ====
     39==== Version 1.2 ====
     40* fix interfering display of street name and error messages on ways by hiding street names in these cases (#24210)
     41* remove deactivation of core_tiger layer which was removed long ago from internal mappaint style elemstyles.mapcss
     42==== Version 1.1 ====
    3843* fix low zoom display
    3944* prioritize display of `=end` over `=yes_unposted` over `designated`
    4045* add warning for usage on nodes
    41 ==== Version 1.0.x ====
     46==== Version 1.0 ====
    4247* inital version
    4348
     
    4853meta {
    4954    title: "Priority Road";
    50     version: "1.1.[[revision]]_[[date]]";
     55    version: "1.2.[[revision]]_[[date]]";
    5156    description: "Displays priority_road=* coloured.";
    5257    icon: "priority_road_icon.svg";
    5358    author: "Klumbumbus";
    54     link: "http://josm.openstreetmap.de/wiki/Styles/PriorityRoad";
    55     watch-modified: true;
     59    link: "https://josm.openstreetmap.de/wiki/Styles/PriorityRoad";
    5660    /* min-josm-version: "????"; not sure if there is one */
    5761}
     
    6064    title: "Vorfahrtsstraße";
    6165    description: "Zeigt priority_road=* farbig an.";
    62     link: "http://josm.openstreetmap.de/wiki/Styles/PriorityRoad";
    63 }
    64 
    65 /* disable tiger layer from default internal mappaint style */
    66 way["tiger:reviewed"=no]::core_tiger {
    67     opacity: 0;
     66    link: "https://josm.openstreetmap.de/wiki/Styles/PriorityRoad";
    6867}
    6968
     
    196195
    197196/* report wrong value of priority_road */
    198 way["priority_road"]!.correct_priority_road_value::priority_road_layer {
     197way["priority_road"][!is_prop_set("correct_priority_road_value", "priority_road_layer")] { /* in default layer to override street name */
    199198    color: yellow;
    200199    dashes-background-color: red;
     
    210209    casing-color: yellow;
    211210}
    212 way["priority_road:forward"]!.correct_fw_priority_road_value::priority_road_layer {
     211way["priority_road:forward"][!is_prop_set("correct_fw_priority_road_value", "priority_road_layer")] {
    213212    color: yellow;
    214213    dashes-background-color: red;
     
    224223    casing-color: yellow;
    225224}
    226 way["priority_road:backward"]!.correct_bw_priority_road_value::priority_road_layer {
     225way["priority_road:backward"][!is_prop_set("correct_bw_priority_road_value", "priority_road_layer")] {
    227226    color: yellow;
    228227    dashes-background-color: red;
     
    239238}
    240239
    241 way["priority_road:backward"][oneway?], /* in default layer to not hide the oneway arrows */
     240way["priority_road:backward"][oneway?], /* in default layer to also not hide the oneway arrows */
    242241way["priority_road:forward"][oneway=-1]
    243242{