diff options
author | Kelly Campbell <kellyc@apache.org> | 2001-03-03 08:06:04 +0000 |
---|---|---|
committer | Kelly Campbell <kellyc@apache.org> | 2001-03-03 08:06:04 +0000 |
commit | 086a57abceaf85488656ba7c41ab0d03d84ab9e0 (patch) | |
tree | 0c36899adad00adbbb551476ca1a9991a0682325 /docs | |
parent | 030b665bc57ebe17ca27b34caa6aec9b24087d66 (diff) | |
download | xmlgraphics-fop-086a57abceaf85488656ba7c41ab0d03d84ab9e0.tar.gz xmlgraphics-fop-086a57abceaf85488656ba7c41ab0d03d84ab9e0.zip |
Fixed code example
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194116 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html-docs/extensions.html | 18 | ||||
-rw-r--r-- | docs/xml-docs/fop/extensions.xml | 18 |
2 files changed, 18 insertions, 18 deletions
diff --git a/docs/html-docs/extensions.html b/docs/html-docs/extensions.html index 4ffe06d43..ab60fe854 100644 --- a/docs/html-docs/extensions.html +++ b/docs/html-docs/extensions.html @@ -30,16 +30,16 @@ <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> <DIV align="right"><TABLE border="0" cellpadding="0" cellspacing="4" width="464"><TR><TD bgcolor="#0086b2" height="1" width="1"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="1"></TD><TD bgcolor="#0086b2" height="1" width="462"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="462"></TD><TD bgcolor="#0086b2" height="1" width="1"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="1"></TD></TR><TR><TD bgcolor="#0086b2" width="1"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="1"></TD><TD bgcolor="#ffffff" width="462"><FONT size="-1"><PRE> - <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" - &#160;&#160; xmlns:fox="http://xml.apache.org/fop/extensions"> - <fox:outline internal-destination="sec3"> - &#160;&#160; <fox:label>Running FOP</fox:label> +<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:fox="http://xml.apache.org/fop/extensions"> + <fox:outline internal-destination="sec3"> + <fox:label>Running FOP</fox:label> - &#160;&#160;<fox:outline internal-destination="sec3-1"> - &#160;&#160;&#160;&#160;<fox:label>Prerequisites</fox:label> - &#160;&#160;</fox:outline> - <fox:outline> - </fo:root> + <fox:outline internal-destination="sec3-1"> + <fox:label>Prerequisites</fox:label> + </fox:outline> + <fox:outline> +</fo:root> </PRE></FONT></TD><TD bgcolor="#0086b2" width="1"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="1"></TD></TR><TR><TD bgcolor="#0086b2" height="1" width="1"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="1"></TD><TD bgcolor="#0086b2" height="1" width="462"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="462"></TD><TD bgcolor="#0086b2" height="1" width="1"><IMG border="0" height="1" hspace="0" src="resources/void.gif" vspace="0" width="1"></TD></TR></TABLE></DIV> <P>It works similarly to a basic-link. There is also an external-destination property, but it isn't supported currently. See the pdfoutline.fo file in diff --git a/docs/xml-docs/fop/extensions.xml b/docs/xml-docs/fop/extensions.xml index d31ebae2a..388519e7b 100644 --- a/docs/xml-docs/fop/extensions.xml +++ b/docs/xml-docs/fop/extensions.xml @@ -10,16 +10,16 @@ <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> <source> - <![CDATA[<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" -    xmlns:fox="http://xml.apache.org/fop/extensions"> - <fox:outline internal-destination="sec3"> -    <fox:label>Running FOP</fox:label> +<![CDATA[<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:fox="http://xml.apache.org/fop/extensions"> + <fox:outline internal-destination="sec3"> + <fox:label>Running FOP</fox:label> -   <fox:outline internal-destination="sec3-1"> -     <fox:label>Prerequisites</fox:label> -   </fox:outline> - <fox:outline> - </fo:root> + <fox:outline internal-destination="sec3-1"> + <fox:label>Prerequisites</fox:label> + </fox:outline> + <fox:outline> +</fo:root> ]]></source> <p>It works similarly to a basic-link. There is also an external-destination property, but it isn't supported currently. See the pdfoutline.fo file in |