diff options
author | Jani Laakso <jani.laakso@itmill.com> | 2007-06-05 07:24:41 +0000 |
---|---|---|
committer | Jani Laakso <jani.laakso@itmill.com> | 2007-06-05 07:24:41 +0000 |
commit | 6d44f31ab56552e18c8ba1892bc4c4bde32df2a4 (patch) | |
tree | 476df13e736c38621c835871dcd3f209127e7c93 /build | |
parent | d40458697f38a2f2fa8d26f0060b0b84fd242f28 (diff) | |
download | vaadin-framework-6d44f31ab56552e18c8ba1892bc4c4bde32df2a4.tar.gz vaadin-framework-6d44f31ab56552e18c8ba1892bc4c4bde32df2a4.zip |
Fixed #743.
svn changeset:1573/svn branch:trunk
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/build/build.xml b/build/build.xml index e906cd7fbb..14a3c1e0f6 100644 --- a/build/build.xml +++ b/build/build.xml @@ -85,7 +85,10 @@ </fileset> </copy> - <fixcrlf srcdir="build/result/themes" includes="**/*.js **/*.css" eol="lf" eof="remove" /> + <fixcrlf srcdir="build/result/themes" includes="**/*.js **/*.css" eol="lf" eof="remove"> + <!-- ignore these because multiple character encodings are used --> + <exclude name="base/ext/jscalendar/lang/*.js" /> + </fixcrlf> <!-- Add unoptimized (not obfuscated) themes --> <copy todir="${output-dir}/lib/themes"> @@ -120,14 +123,14 @@ <path> <fileset dir="build/result/themes"> <include name="**/*.js" /> - <!-- ignore these because rhino brakes character encodings --> + <!-- ignore these because multiple character encodings are used --> <exclude name="base/ext/jscalendar/lang/*.js" /> </fileset> </path> <sequential> <echo>@{file}</echo> - <!-- TODO: ERROR: for some reason this does not work on Windows platform, please fix! --> <java dir="build/result/themes" jar="build/lib/custom_rhino.jar" fork="true" failonerror="true" maxmemory="64m" output="@{file}"> + <!-- note: you could set rhino's encoding with <jvmarg value="-Dfile.encoding=UTF-8" /> --> <arg value="-c" /> <arg value="@{file}" /> </java> |