Hi
oh so my logic was wrong. I would have thought that the above would not
show in case both mtb AND bicycle route is set, and not OR.
So how would I do that, a rule that needs all three to be true like
this: ( tunnel=yes & route!=mtb & route!= bicycle ) [....] ?
Yes, that would be true for tunnel=yes and route=abc, but not when
route=mtb or route=bicycle, if that is what you wanted to do.
The parentheses are not needed.
tunnel = yes & route!=mtb & route!=bicycle
is the same as:
tunnel = yes & !(route = mtb | route = bicycle)
Ay Caramba. that's looking good.