aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2002-03-18 08:58:05 +0000
committerKeiron Liddle <keiron@apache.org>2002-03-18 08:58:05 +0000
commit68384a39b8517bcda2be21e1b663499966490aca (patch)
treeacfd13aaac2539e2651b526f022d817f99c80fcf /docs
parent3de2bfd03b153d0aa42e8e42c8a1ad55b04e1adb (diff)
downloadxmlgraphics-fop-68384a39b8517bcda2be21e1b663499966490aca.tar.gz
xmlgraphics-fop-68384a39b8517bcda2be21e1b663499966490aca.zip
updates to docs with build target for understanding and alt.design
Submitted by: "Peter B. West" <pbwest@powerup.com.au> Reviewed by: Keiron git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194707 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/design/book.xml5
-rw-r--r--docs/xml-docs/fop/output.xml7
2 files changed, 12 insertions, 0 deletions
diff --git a/docs/design/book.xml b/docs/design/book.xml
index cdb23444b..315ed9cac 100644
--- a/docs/design/book.xml
+++ b/docs/design/book.xml
@@ -3,6 +3,8 @@
<book title="FOP Design" copyright="1999-2002 The Apache Software Foundation">
<external href="http://xml.apache.org/fop/" label="About FOP"/>
<separator/>
+ <external href="understanding/index.html" label="Understanding" />
+ <separator/>
<page id="index" label="Design" source="intro.xml"/>
<page id="architecture" label="Architecture" source="architecture.xml" />
<page id="properties" label="Properties" source="properties.xml" />
@@ -19,4 +21,7 @@
<page id="extending" label="Extending" source="extending.xml" />
<separator/>
<page id="status" label="Status" source="status.xml" />
+ <separator/>
+ <external href="alt.design/index.html" label="ALT DESIGN" />
+ <separator/>
</book>
diff --git a/docs/xml-docs/fop/output.xml b/docs/xml-docs/fop/output.xml
index 3b7a4c45c..d58e5c1c9 100644
--- a/docs/xml-docs/fop/output.xml
+++ b/docs/xml-docs/fop/output.xml
@@ -54,6 +54,13 @@ able to send the output stream directly to a printer. If your printer
supports postscript you could send the postscript to the printer. If
you have a printer that supports PCL you could stream the PCL document
to your printer.
+On Windows:
+<source><![CDATA[fop ... -ps \\computername\printer or fop ... -pcl \\computername\printer]]></source>
+On UNIX:
+<source><![CDATA[proc = Runtime.getRuntime().exec("lp -d" + print_queue + " -o -dp -");
+out = proc.getOutputStream();]]></source>
+And give the OutputStream (out) to the PCLRenderer and it happily sends the
+PCL to the AIX print queue.
</p>
</s2>
<s2 title="PDF">