Modify ↓
Opened 8 years ago
Closed 8 years ago
#15439 closed enhancement (fixed)
Suspected Validator bugs & cleanup
Reported by: | nyurik | Owned by: | team |
---|---|---|---|
Priority: | normal | Milestone: | 17.10 |
Component: | Core validator | Version: | |
Keywords: | Cc: |
Description
These were found as I was porting validator "auto-fixes" to the new tool -
https://wiki.openstreetmap.org/wiki/Quick_fixes#JOSM_autofixes , mostly for demo & discussion purposes. Some might actually be ok, but documenting here to be safe.
- /footway:/ should be
/^footway:/
- /^(...)/ instead of
/^(...)$/
- /\+.*/ ->
/^\+\d/
- /.../ ->
/^(...)$/
- Several tests use ["aaa"=*"bbb"] syntax, but the =* is not documented in MapCSS or in MapCSSImplementation
Attachments (0)
Note:
See TracTickets
for help on using tickets.
Replying to nyurik:
OK
This is to include the highway types with _link extension too. However we could add them explicit.
OK
OK with ^, but $ has the same _link problem
It is documentet at MapCSSImplementation, search for
[key1 = *key2]
on this page.