2012-03-21 03:40:35 +04:00
|
|
|
<?php
|
|
|
|
|
2016-09-14 04:50:18 +03:00
|
|
|
// These settings control the import of special phrases from the wiki.
|
2012-03-21 03:40:35 +04:00
|
|
|
|
2016-09-14 04:50:18 +03:00
|
|
|
// class/type combinations to exclude
|
|
|
|
$aTagsBlacklist
|
|
|
|
= array(
|
2016-09-04 04:19:48 +03:00
|
|
|
'boundary' => array('administrative'),
|
|
|
|
'place' => array('house', 'houses'),
|
2016-09-14 04:50:18 +03:00
|
|
|
);
|
|
|
|
|
2018-03-27 02:43:02 +03:00
|
|
|
// If a class is in the white list then all types will
|
2016-09-14 04:50:18 +03:00
|
|
|
// be ignored except the ones given in the list.
|
|
|
|
// Also use this list to exclude an entire class from
|
|
|
|
// special phrases.
|
|
|
|
$aTagsWhitelist
|
|
|
|
= array(
|
2016-09-04 04:19:48 +03:00
|
|
|
'highway' => array('bus_stop', 'rest_area', 'raceway'),
|
|
|
|
'building' => array(),
|
2016-09-14 04:50:18 +03:00
|
|
|
);
|