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 ke...@apache.org on 2002/07/10 10:59:16 UTC

cvs commit: xml-fop/conf fop.xconf

keiron      2002/07/10 01:59:16

  Added:       conf     fop.xconf
  Log:
  start of example configuration file
  contains default values so that if used will have no effect
  by default no configuration is needed, only if values need to be changed
  
  Revision  Changes    Path
  1.1                  xml-fop/conf/fop.xconf
  
  Index: fop.xconf
  ===================================================================
  <?xml version="1.0"?>
  
  <!-- NOTE: This is the version of the configuration -->
  <fop version="1.0">
  
  <userAgent>
    <base url="./"/>
    <!-- pixel to millimeter to specify dpi, 72dpi -->
    <pixelToMillimeter value="0.35277777777777777778"/>
  </userAgent>
  
  <!-- Information for specific renderers -->
  <!-- Uses renderer mime type for renderers -->
  <renderers>
  <renderer mime="application/pdf">
    <filterList>
        <!-- provides compression using zlib flate (default is on)-->
        <value>flate</value>
  
        <!-- encodes binary data into printable ascii characters (default off)
             This provides about a 4:5 expansion of data size -->
        <!-- <value>ascii-85</value> -->
  
        <!-- encodes binary data with hex representation (default off)
             This filter is not recommended as it doubles the data size -->
        <!-- <value>ascii-hex</value> -->
    </filterList>
  
  <fonts>
        <!-- embedded fonts -->
      <!--
        this information must exactly match the font specified
        in the fo file otherwise it will use a default font.
        ie.
        <fo:inline font-family="Arial" font-weight="bold" font-style="normal">
            Arial-normal-normal font
        </fo:inline>
  
        for the font triplet specified by:
        <font-triplet name="Arial" style="normal" weight="bold"/>
       -->
  
  <!--
   <font metrics-url="arial.xml" kerning="yes" embed-url="arial.ttf">
      <font-triplet name="Arial" style="normal" weight="normal"/>
      <font-triplet name="ArialMT" style="normal" weight="normal"/>
   </font>
   <font metrics-url="arialb.xml" kerning="yes" embed-url="arialb.ttf">
      <font-triplet name="Arial" style="normal" weight="bold"/>
      <font-triplet name="ArialMT" style="normal" weight="bold"/>
   </font>
  -->
  </fonts>
  <xmlHandler mime="text/svg+xml">
  </xmlHandler>
  </renderer>
  <renderer mime="application/ps">
  <xmlHandler mime="image/svg+xml">
  </xmlHandler>
  </renderer>
  <renderer mime="pcl">
  
  </renderer>
  <renderer mime="mif">
  
  </renderer>
  <renderer mime="text/svg+xml">
  <format type="paginated"/>
  <link value="true"/>
  <strokeText value="false"/>
  </renderer>
  <renderer mime="awt">
  
  </renderer>
  <renderer mime="text/xml">
  
  </renderer>
  <renderer mime="application/rtf">
  
  </renderer>
  <renderer mime="text/text">
  <pageSize columns="80"/>
  </renderer>
  </renderers>
  
  <fop>
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org