diff options
author | Adrian Cumiskey <acumiskey@apache.org> | 2008-06-10 09:52:27 +0000 |
---|---|---|
committer | Adrian Cumiskey <acumiskey@apache.org> | 2008-06-10 09:52:27 +0000 |
commit | f25d75a80cbb96a31e6d5b5a4da9d5e95d164cd8 (patch) | |
tree | 3fe2757c31e0f63f2004a0a5281b19f243a30ae4 /build.xml | |
parent | 07ee324b35a7a7bf5d7cb8f704a0a2b62a89df5d (diff) | |
download | xmlgraphics-fop-f25d75a80cbb96a31e6d5b5a4da9d5e95d164cd8.tar.gz xmlgraphics-fop-f25d75a80cbb96a31e6d5b5a4da9d5e95d164cd8.zip |
Merged revisions 665740,665793,665995 via svnmerge from
https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk
........
r665740 | adelmelle | 2008-06-09 17:20:08 +0100 (Mon, 09 Jun 2008) | 1 line
Minor update: make the codegen-unicode target create LineBreakUtils.java at the appropriate place in the source tree
........
r665793 | adelmelle | 2008-06-09 18:27:51 +0100 (Mon, 09 Jun 2008) | 9 lines
Some updates (improvements?) in the UAX#14-related files:
- LineBreakPairTable.txt: replace tabs with spaces to make the file a bit easier to read (constant column-width, instead of depending on an editor's settings for tabs)
- GenerateLineBreakUtils.java:
- generate a public final utility class
- add some spacing in the generated file, after commas and before/after '=' (same styling as manually created files)
- use Java 1.4 String.split() to tokenize lines, instead of StringTokenizer
- add javadoc comments for public constants and methods
- LineBreakUtils.java: regenerated after the above updates
........
r665995 | maxberger | 2008-06-10 08:52:36 +0100 (Tue, 10 Jun 2008) | 1 line
Replaced getLast() calls with calls to listUtil
........
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@666048 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1418,9 +1418,10 @@ NOTE: <!-- =================================================================== --> <!-- Helper task to generate source files that have already been --> - <!-- checked into CVS. For these files, CVS version is the official one --> - <!-- and may have updates that will *not* be generated by below. This --> - <!-- target should never be part of the normal build process. --> + <!-- checked into the repository. For these files, the version in the --> + <!-- in the repository is the official one and may have updates that will--> + <!-- *not* be generated by below. --> + <!-- This target should never be part of the normal build process. --> <!-- =================================================================== --> <target name="codegen-unicode" > <mkdir dir="${build.codegen-classes.dir}"/> @@ -1429,7 +1430,9 @@ NOTE: source="${javac.source}" target="${javac.target}"> <src path="${src.codegen.dir}/unicode/java"/> </javac> - <java classname="org.apache.fop.text.linebreak.GenerateLineBreakUtils" classpath="${build.codegen-classes.dir}" /> + <java classname="org.apache.fop.text.linebreak.GenerateLineBreakUtils" classpath="${build.codegen-classes.dir}"> + <arg line="-o ${src.dir}/java/org/apache/fop/text/linebreak/LineBreakUtils.java" /> + </java> </target> <!-- =================================================================== --> |