forked from omeka/Omeka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
64 lines (59 loc) · 2.63 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<project name="Omeka" basedir=".">
<property name="lang.dir" location="application/languages" />
<target name="changeme" description="Copy .changeme files to their proper locations.">
<copy todir=".">
<filelist dir=".">
<file name=".htaccess.changeme"/>
<file name="db.ini.changeme"/>
<file name="application/config/config.ini.changeme"/>
<file name="application/tests/config.ini.changeme"/>
</filelist>
<mapper type="glob" from="*.changeme" to="*"/>
</copy>
<copy file="application/logs/errors.log.empty" tofile="application/logs/errors.log"/>
</target>
<target name="test" description="Run automated tests.">
<exec executable="phpunit" dir="application/tests" failonerror="true"/>
</target>
<target name="test-plugins" description="Run automated tests for plugins.">
<apply executable="phpunit" failonerror="true">
<arg value="-c" />
<fileset dir="plugins" includes="*/tests/phpunit.xml" />
</apply>
</target>
<target name="test-all" depends="test,test-plugins" description="Run all automated tests." />
<target name="update-pot" description="Update the translation template.">
<property name="pot.file" location="${lang.dir}/Omeka.pot"/>
<property name="pot.base" location="${lang.dir}/Omeka.base.pot"/>
<tempfile property="pot.temp" suffix=".pot"/>
<apply executable="xgettext" relative="true" parallel="true" verbose="true">
<arg value="-L"/>
<arg value="php"/>
<arg value="--from-code=utf-8"/>
<arg value="-k__"/>
<arg value="--flag=__:1:pass-php-format"/>
<arg value="--omit-header"/>
<arg value="-F"/>
<arg value="-o"/>
<arg file="${pot.temp}"/>
<fileset dir="." includes="**/*.php **/*.phtml" excludes="themes/ plugins/"/>
</apply>
<exec executable="msgcat">
<arg value="-o"/>
<arg file="${pot.file}"/>
<arg file="${pot.base}"/>
<arg file="${pot.temp}"/>
</exec>
<delete file="${pot.temp}" quiet="true"/>
</target>
<target name="build-mo" description="Build the MO translation files.">
<apply executable="msgfmt" dest="${lang.dir}" verbose="true">
<arg value="-o"/>
<targetfile />
<srcfile />
<fileset dir="${lang.dir}" includes="*.po"/>
<mapper type="glob" from="*.po" to="*.mo"/>
</apply>
</target>
</project>