Index: trunk/extensions/GeoData/ApiQueryCoordinates.php |
— | — | @@ -125,6 +125,10 @@ |
126 | 126 | } |
127 | 127 | |
128 | 128 | |
| 129 | + public function getHelpUrls() { |
| 130 | + return 'https://www.mediawiki.org/wiki/Extension:GeoData#prop.3Dcoordinates'; |
| 131 | + } |
| 132 | + |
129 | 133 | public function getVersion() { |
130 | 134 | return __CLASS__ . ': $Id$'; |
131 | 135 | } |
Index: trunk/extensions/GeoData/ApiQueryGeoSearch.php |
— | — | @@ -165,7 +165,7 @@ |
166 | 166 | ApiBase::PARAM_ISMULTI => true, |
167 | 167 | ), |
168 | 168 | 'prop' => array( |
169 | | - ApiBase::PARAM_TYPE => array( 'type', 'name', 'country', 'region' ), |
| 169 | + ApiBase::PARAM_TYPE => array( 'type', 'name', 'dim', 'country', 'region' ), |
170 | 170 | ApiBase::PARAM_DFLT => '', |
171 | 171 | ApiBase::PARAM_ISMULTI => true, |
172 | 172 | ), |
— | — | @@ -211,6 +211,10 @@ |
212 | 212 | ); |
213 | 213 | } |
214 | 214 | |
| 215 | + public function getHelpUrls() { |
| 216 | + return 'https://www.mediawiki.org/wiki/Extension:GeoData#list.3Dgeosearch'; |
| 217 | + } |
| 218 | + |
215 | 219 | public function getVersion() { |
216 | 220 | return __CLASS__ . ': $Id$'; |
217 | 221 | } |