1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-26 01:06:27 +00:00
Greg Ross 6e86c48486 Updated phone formatter (#241)
* Add locale and libphonenumber libraries.

* Update country code information

Updated existing country codes, fixed incorrect NANP codes for member countries (as well as several UK based ones).

Also added in Country Name to ISO country code mapping array for use with libphonenumber.

* Convert phone number formatting to use libphonenumber

libphonenumber parses phone number more consistantly than the old regex's that mismatched number on a regular basis.
2018-06-26 09:49:22 +02:00

68 lines
2.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="giggsey/locale" default="test">
<property name="build.script" value="build/build.php"/>
<property name="git.url" value="https://github.com/unicode-cldr/cldr-localenames-full.git"/>
<property name="git.path" value="cldr-localenames-full"/>
<loadfile property="metadata.version" file="CLDR-VERSION.txt">
<filterchain>
<striplinecomments>
<comment value="#"/>
</striplinecomments>
<striplinebreaks/>
</filterchain>
</loadfile>
<property name="data" value="data/"/>
<target name="test" description="Run unit tests" depends="compile">
<exec passthru="true" command="vendor/bin/phpunit"/>
</target>
<target name="compile" description="Build data"
depends="cleanup-data,build-data">
</target>
<target name="cleanup-data" description="Cleanup built data">
<delete dir="${data}"/>
<mkdir dir="${data}"/>
</target>
<target name="git-pull">
<available file="${git.path}" type="dir" property="git.path.exists"/>
<if>
<or>
<not>
<isset property="git.path.exists"/>
</not>
<isfalse value="${git.path.exists}"/>
</or>
<then>
<echo>Cloning repository</echo>
<gitclone
repository="${git.url}"
targetPath="${git.path}"/>
</then>
</if>
<gitfetch repository="${git.path}" all="true"/>
<echo message="Pulling Git project @ ${metadata.version}"/>
<gitcheckout
repository="${git.path}"
branchname="${metadata.version}" quiet="false" force="true"/>
</target>
<target name="build-data" depends="git-pull">
<exec executable="${build.script}" passthru="true">
<arg value="Build"/>
<arg value="${metadata.version}"/>
<arg value="${git.path}/main/"/>
<arg value="${data}"/>
</exec>
</target>
</project>