aboutsummaryrefslogtreecommitdiffstats
path: root/docs/xml-docs
diff options
context:
space:
mode:
authorfotis <fotis@unknown>2001-02-06 10:29:18 +0000
committerfotis <fotis@unknown>2001-02-06 10:29:18 +0000
commit466409074cd52f482bd1730ff825746dddd57d04 (patch)
tree81c2a07a068c31f46eadb1fe3a8c32978ce5816b /docs/xml-docs
parent5685e60c1789adc7a005ec2418463d5ea09a29d4 (diff)
downloadxmlgraphics-fop-466409074cd52f482bd1730ff825746dddd57d04.tar.gz
xmlgraphics-fop-466409074cd52f482bd1730ff825746dddd57d04.zip
adding description of extensions
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194027 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/xml-docs')
-rw-r--r--docs/xml-docs/fop.xml1
-rw-r--r--docs/xml-docs/fop/architecture.xml2
-rw-r--r--docs/xml-docs/fop/extensions.xml27
-rw-r--r--docs/xml-docs/fop/resources.xml2
-rw-r--r--docs/xml-docs/xml2xml.xsl1
5 files changed, 31 insertions, 2 deletions
diff --git a/docs/xml-docs/fop.xml b/docs/xml-docs/fop.xml
index b7af991f4..9399e0e83 100644
--- a/docs/xml-docs/fop.xml
+++ b/docs/xml-docs/fop.xml
@@ -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" />
diff --git a/docs/xml-docs/fop/architecture.xml b/docs/xml-docs/fop/architecture.xml
index 5d385281b..e25de21f1 100644
--- a/docs/xml-docs/fop/architecture.xml
+++ b/docs/xml-docs/fop/architecture.xml
@@ -265,7 +265,7 @@ discusses some issues applicable to rendering.
<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>
diff --git a/docs/xml-docs/fop/extensions.xml b/docs/xml-docs/fop/extensions.xml
new file mode 100644
index 000000000..8a8ae2b6c
--- /dev/null
+++ b/docs/xml-docs/fop/extensions.xml
@@ -0,0 +1,27 @@
+<?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>
+
diff --git a/docs/xml-docs/fop/resources.xml b/docs/xml-docs/fop/resources.xml
index 3906739ac..c072856eb 100644
--- a/docs/xml-docs/fop/resources.xml
+++ b/docs/xml-docs/fop/resources.xml
@@ -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>
diff --git a/docs/xml-docs/xml2xml.xsl b/docs/xml-docs/xml2xml.xsl
index a269c9fae..242f5f25e 100644
--- a/docs/xml-docs/xml2xml.xsl
+++ b/docs/xml-docs/xml2xml.xsl
@@ -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')"/>