You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by fo...@apache.org on 2001/02/06 11:25:00 UTC

cvs commit: xml-fop build.xml STATUS

fotis       01/02/06 02:24:59

  Modified:    .        build.xml STATUS
  Log:
  adding truetype template / updating status
  
  Revision  Changes    Path
  1.19      +6 -1      xml-fop/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/build.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- build.xml	2001/02/06 07:34:45	1.18
  +++ build.xml	2001/02/06 10:24:59	1.19
  @@ -179,6 +179,7 @@
       <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,8 +406,12 @@
           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"/>
       -->
   
  
  
  
  1.43      +5 -1      xml-fop/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/xml-fop/STATUS,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- STATUS	2001/02/05 09:57:08	1.42
  +++ STATUS	2001/02/06 10:24:59	1.43
  @@ -1,4 +1,4 @@
  -$Id: STATUS,v 1.42 2001/02/05 09:57:08 fotis Exp $
  +$Id: STATUS,v 1.43 2001/02/06 10:24:59 fotis Exp $
   
   STATUS 
   
  @@ -29,6 +29,10 @@
   **** 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]