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:26:20 UTC

cvs commit: xml-fop/docs/xml-docs/fop extensions.xml architecture.xml resources.xml

fotis       01/02/06 02:26:20

  Modified:    docs/xml-docs fop.xml xml2xml.xsl
               docs/xml-docs/fop architecture.xml resources.xml
  Added:       docs/xml-docs/fop extensions.xml
  Log:
  adding description of extensions
  
  Revision  Changes    Path
  1.5       +1 -0      xml-fop/docs/xml-docs/fop.xml
  
  Index: fop.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- fop.xml	2001/02/05 23:55:09	1.4
  +++ fop.xml	2001/02/06 10:26:20	1.5
  @@ -12,6 +12,7 @@
     <document id="examples"       label="Examples" source="fop/examples.xml"    />
     <document id="config"         label="Configuration" source="fop/configuration.xml"    />
     <document id="fonts"          label="Fonts" source="fop/fonts.xml"    />
  +  <document id="extensions"     label="Extensions" source="fop/extensions.xml"    />
     <separator/>
     <document id="compiling"      label="Compiling" source="fop/compiling.xml"    />
     <document id="embedding"      label="Embedding" source="fop/embedding.xml"    />
  
  
  
  1.5       +1 -0      xml-fop/docs/xml-docs/xml2xml.xsl
  
  Index: xml2xml.xsl
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/xml2xml.xsl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- xml2xml.xsl	2001/02/05 23:55:09	1.4
  +++ xml2xml.xsl	2001/02/06 10:26:20	1.5
  @@ -13,6 +13,7 @@
       <xsl:copy-of select="document('fop/examples.xml')"/>
       <xsl:copy-of select="document('fop/configuration.xml')"/>
       <xsl:copy-of select="document('fop/fonts.xml')"/>
  +    <xsl:copy-of select="document('fop/extensions.xml')"/>
       <xsl:copy-of select="document('fop/compiling.xml')"/>
       <xsl:copy-of select="document('fop/embedding.xml')"/>
       <xsl:copy-of select="document('fop/involved.xml')"/>
  
  
  
  1.8       +1 -1      xml-fop/docs/xml-docs/fop/architecture.xml
  
  Index: architecture.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop/architecture.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- architecture.xml	2001/02/05 23:55:10	1.7
  +++ architecture.xml	2001/02/06 10:26:20	1.8
  @@ -265,7 +265,7 @@
   
   <p>
   You can find UML diagramms for all Fop packages (latest release version) 
  -<jump href="http://xml.apache.org/dist/fop-uml.zip">here</jump>.</p>
  +<jump href="http://xml.apache.org/dist/fop/fop-uml.zip">here</jump>.</p>
   
   </s2>
   
  
  
  
  1.2       +1 -1      xml-fop/docs/xml-docs/fop/resources.xml
  
  Index: resources.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop/resources.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- resources.xml	2001/02/05 23:55:12	1.1
  +++ resources.xml	2001/02/06 10:26:20	1.2
  @@ -7,7 +7,7 @@
     <s2 title="Specifications">
     <ul>
       <li><jump href="http://www.w3.org/TR/2000/CR-xsl-20001121/">XSL-FO Candidate Recommendation (21 November 2000)</jump></li>
  -    <li><jump href="http://www.renderx.com/Tests/validator/fo2000.dtd.html">A dtd for the XSL-FO WD from October provided by N. Grigoriev from RenderX</jump></li>
  +    <li><jump href="http://www.renderx.com/Tests/validator/fo2000.dtd.html">A dtd for the XSL-FO CR from November provided by N. Grigoriev from RenderX</jump></li>
       <li><jump href="http://www.w3.org/TR/2000/CR-SVG-20001102/">Supported SVG Candidate Recommendation (02 November 2000)</jump></li>
       <li><jump href="http://www.w3.org/TR/REC-xml">XML Recommendation</jump></li>
       <li><jump href="http://www.w3.org/TR/xslt">XSLT Recommendation</jump></li>
  
  
  
  1.1                  xml-fop/docs/xml-docs/fop/extensions.xml
  
  Index: extensions.xml
  ===================================================================
  <?xml version="1.0" standalone="no"?>
  
  
  <s1 title="FOP extensions to xsl:fo">
    <p>Sometimes it is desirable to have extensions to xsl:fo in order to support some feature of the 
       output format which isn't covered by the xsl:fo specification. 
       To use the Fop extensions, you need to add a namespace entry for
       http://xml.apache.org/fop/extensions on the root element. </p>
    <s2 title="Bookmarks">
      <p>You can provide outlines inside the root object (but outside any page-sequences or
         other formatting objects). Here's an example of an outline entry:</p>
  
      <p><code>&lt;fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
               &#160;&#160; xmlns:fox="http://xml.apache.org/fop/extensions"></code></p> 
      <p><code>&lt;fox:outline internal-destination="sec3"></code></p>
      <p><code>&#160;&#160;  &lt;fox:label>Running FOP&lt;/fox:label></code></p>
  
      <p><code>&#160;&#160;&lt;fox:outline internal-destination="sec3-1"></code></p>
      <p><code>&#160;&#160;&#160;&#160;&lt;fox:label>Prerequisites&lt;/fox:label></code></p>
      <p><code>&#160;&#160;&lt;/fox:outline></code></p>
      <p><code>&lt;fox:outline></code></p>
      <p><code>&lt;/fo:root></code></p>
      <p>It works similarly to a basic-link. There is also an external-destination 
         property, but it isn't supported currently.</p>
    </s2>
  </s1>