]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/country_languages.php
replaced all shebangs in utility scripts with @PHP_BIN@, to be replaced with detected...
[nominatim.git] / utils / country_languages.php
index 8360ae6672c9bcafdb8c357f1859a0d9c9b876a8..b1a7ab1185336419f3659de49afeaf7a318cf3ae 100755 (executable)
@@ -1,34 +1,33 @@
-#!/usr/bin/php -Cq
+#!@PHP_BIN@ -Cq
 <?php
 
-        require_once(dirname(dirname(__FILE__)).'/lib/init-cmd.php');
-        ini_set('memory_limit', '800M');
-        ini_set('display_errors', 'stderr');
+require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
+require_once(CONST_BasePath.'/lib/init-cmd.php');
 
-        $aCMDOptions = array(
-                "Import country language data from osm wiki",
-                array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
-                array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
-                array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
-        );
-        getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
+ini_set('memory_limit', '800M');
+ini_set('display_errors', 'stderr');
 
-       include(CONST_BasePath.'/settings/phrase_settings.php');
+$aCMDOptions
+ = array(
+    'Import country language data from osm wiki',
+    array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
+    array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
+    array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
+   );
+getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
 
-       if (true)
-       {
-               $sURL = 'http://wiki.openstreetmap.org/wiki/Special:Export/Nominatim/Country_Codes';
-               $sWikiPageXML = file_get_contents($sURL);
-               if (preg_match_all('#\\| ([a-z]{2}) \\|\\| [^|]+\\|\\| ([a-z,]+)#', $sWikiPageXML, $aMatches, PREG_SET_ORDER))
-               {
-                       foreach($aMatches as $aMatch)
-                       {
-                               $aLanguages = explode(',', $aMatch[2]);
-                               foreach($aLanguages as $i => $s)
-                               {
-                                       $aLanguages[$i] = '"'.pg_escape_string($s).'"';
-                               }
-                               echo "UPDATE country_name set country_default_language_codes = '{".join(',',$aLanguages)."}' where country_code = '".pg_escape_string($aMatch[1])."';\n";
-                       }
-               }
-       }
+include(CONST_InstallPath.'/settings/phrase_settings.php');
+
+if (true) {
+    $sURL = 'https://wiki.openstreetmap.org/wiki/Special:Export/Nominatim/Country_Codes';
+    $sWikiPageXML = file_get_contents($sURL);
+    if (preg_match_all('#\\| ([a-z]{2}) \\|\\| [^|]+\\|\\| ([a-z,]+)#', $sWikiPageXML, $aMatches, PREG_SET_ORDER)) {
+        foreach ($aMatches as $aMatch) {
+            $aLanguages = explode(',', $aMatch[2]);
+            foreach ($aLanguages as $i => $s) {
+                $aLanguages[$i] = '"'.pg_escape_string($s).'"';
+            }
+            echo "UPDATE country_name set country_default_language_codes = '{".join(',', $aLanguages)."}' where country_code = '".pg_escape_string($aMatch[1])."';\n";
+        }
+    }
+}