aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--STATUS4
-rw-r--r--build.xml7
2 files changed, 10 insertions, 1 deletions
diff --git a/STATUS b/STATUS
index 1cb13dc44..46d83780f 100644
--- a/STATUS
+++ b/STATUS
@@ -29,6 +29,10 @@ Jon Smirl
**** HISTORY ****
Done since 0.16 release
+- added: support for PDF outlines (aka bookmarks). See the example in
+ docs/examples/fo/pdfoutline.fo [Kelly Campbell]
+- added: some text rendering optimizations for PDF [Kelly Campbell]
+- added: limited support for fo:wrapper [Kelly Campbell]
- added: support in pdfrenderer for using TrueType fonts, and embedding of TrueType
and Type1 fonts, and support for kerning [Tore Engvig]
- added: further support for complete font handling in pdf renderer [Alain Fagot]
diff --git a/build.xml b/build.xml
index c286ab258..4a3a1482d 100644
--- a/build.xml
+++ b/build.xml
@@ -179,6 +179,7 @@ Sometimes ant gives out this warnings, but the build is finished without any pro
<property name="charlist.xsl" value="${build.codegen}/code-point-mapping.xsl"/>
<property name="fontfile.xsl" value="${build.codegen}/font-file.xsl"/>
<property name="t1fontfile.xsl" value="${build.codegen}/t1font-file.xsl"/>
+ <property name="ttffontfile.xsl" value="${build.codegen}/ttffont-file.xsl"/>
<property name="Courier.xml" value="${build.codegen}/Courier.xml"/>
<property name="Courier-Oblique.xml" value="${build.codegen}/Courier-Oblique.xml"/>
<property name="Courier-Bold.xml" value="${build.codegen}/Courier-Bold.xml"/>
@@ -405,10 +406,14 @@ Sometimes ant gives out this warnings, but the build is finished without any pro
outfile="${build.src}/${replacestring}/render/pdf/fonts/Symbol.java" smart="yes"/>
<!-- custom fonts (Use t1fontfile.xsl instead of fontfile.xsl for Type 1 fonts!) step 2/2 -->
- <!-- use this as a template
+ <!-- use this as a template for type 1 fonts:
<xslt infile="${myfont.xml}" xsltfile="${t1fontfile.xsl}"
outfile="${build.src}/${replacestring}/render/pdf/fonts/myfont.java" smart="yes"/>
-->
+ <!-- use this as a template for truetype fonts
+ <xslt infile="${myfont.xml}" xsltfile="${ttffontfile.xsl}"
+ outfile="${build.src}/${replacestring}/render/pdf/fonts/myfont.java" smart="yes"/>
+ -->
</target>