]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
adding truetype template / updating status
authorfotis <fotis@unknown>
Tue, 6 Feb 2001 10:24:59 +0000 (10:24 +0000)
committerfotis <fotis@unknown>
Tue, 6 Feb 2001 10:24:59 +0000 (10:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194026 13f79535-47bb-0310-9956-ffa450edef68

STATUS
build.xml

diff --git a/STATUS b/STATUS
index 1cb13dc4457dfe1ffd4656a81529b4fa0f8cab29..46d83780f728dc6b0d09a1dfa9466959599369c2 100644 (file)
--- 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]
index c286ab25889dc14b87c6f1430302cb3c127d5c43..4a3a1482db051e1b294f111e6347aa3640b96b42 100644 (file)
--- 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>