Changeset 15758 in josm
- Timestamp:
- 2020-01-25T16:21:19+01:00 (5 years ago)
- Location:
- trunk/data/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/validator/combinations.mapcss
r15722 r15758 660 660 /* #18203 */ 661 661 way[construction][construction!=yes][construction!=minor][highway][highway!=construction] { 662 throwWarning: tr("{0} together with {1}", "{ 2.tag}", "{0.tag}");662 throwWarning: tr("{0} together with {1}", "{3.tag}", "{0.tag}"); 663 663 group: tr("suspicious tag combination"); 664 664 } -
trunk/data/validator/deprecated.mapcss
r15722 r15758 1294 1294 } 1295 1295 1296 /* #17786 */ 1296 /* #17786, #18612 */ 1297 1297 *[building=abandoned], 1298 1298 *[building=address], … … 1304 1304 *[building=fixme], 1305 1305 *[building=occupied], 1306 *[building=razed] { 1307 throwWarning: tr("{0} is not a building type.", "{0.tag}"); 1308 group: tr("deprecated tagging"); 1309 } 1306 1310 *[building=other], 1307 *[building=razed],1308 1311 *[building=unclassified], 1309 1312 *[building=undefined], … … 1312 1315 throwWarning: tr("{0} is not a building type.", "{0.tag}"); 1313 1316 group: tr("deprecated tagging"); 1317 fixAdd: "building=yes"; 1314 1318 } 1315 1319 … … 1892 1896 throwWarning: tr("unusual value of {0}", "{0.key}"); 1893 1897 } 1898 1899 /* #18603 */ 1900 way[bicycle:oneway] { 1901 throwWarning: tr("{0} is deprecated", "{0.key}"); 1902 suggestAlternative: "oneway:bicycle"; 1903 fixChangeKey: "bicycle:oneway => oneway:bicycle"; 1904 group: tr("deprecated tagging"); 1905 } 1906 1907 /* #18605 */ 1908 *[building:height] { 1909 throwWarning: tr("{0} is deprecated", "{0.key}"); 1910 suggestAlternative: "height"; 1911 fixChangeKey: "building:height => height"; 1912 group: tr("deprecated tagging"); 1913 } 1914 *[building:min_height] { 1915 throwWarning: tr("{0} is deprecated", "{0.key}"); 1916 suggestAlternative: "min_height"; 1917 fixChangeKey: "building:min_height => min_height"; 1918 group: tr("deprecated tagging"); 1919 }
Note:
See TracChangeset
for help on using the changeset viewer.